domainList = $domainList; } public function getFieldInfo() { $ret = parent::getFieldInfo(); // Only add a domain field if we have the username field included if ( isset( $ret['username'] ) ) { $ret['domain'] = [ 'type' => 'select', 'options' => [], 'label' => wfMessage( 'yourdomainname' ), 'help' => wfMessage( 'authmanager-domain-help' ), ]; foreach ( $this->domainList as $domain ) { $ret['domain']['options'][$domain] = new \RawMessage( '$1', [ $domain ] ); } } return $ret; } public function describeCredentials() { return [ 'provider' => wfMessage( 'authmanager-provider-password-domain' ), 'account' => wfMessage( 'authmanager-account-password-domain', [ $this->username, $this->domain ] ), ]; } /** * @codeCoverageIgnore * @param array $data * @return AuthenticationRequest|static */ public static function __set_state( $data ) { $ret = new static( $data['domainList'] ); foreach ( $data as $k => $v ) { if ( $k !== 'domainList' ) { $ret->$k = $v; } } return $ret; } }