createRequest = $createRequest; $this->maybeLink = $maybeLink; $this->username = $createRequest ? $createRequest->username : null; } public function getFieldInfo() { return []; } public function loadFromSubmission( array $data ) { return true; } /** * Indicate whether this request contains any state for the specified * action. * @param string $action One of the AuthManager::ACTION_* constants * @return bool */ public function hasStateForAction( $action ) { switch ( $action ) { case AuthManager::ACTION_LOGIN: return (bool)$this->maybeLink; case AuthManager::ACTION_CREATE: return $this->maybeLink || $this->createRequest; default: return false; } } /** * Indicate whether this request contains state for the specified * action sufficient to replace other primary-required requests. * @param string $action One of the AuthManager::ACTION_* constants * @return bool */ public function hasPrimaryStateForAction( $action ) { switch ( $action ) { case AuthManager::ACTION_CREATE: return (bool)$this->createRequest; default: return false; } } }