|
MediaWiki master
|
Returned from account creation to allow for logging into the created account. More...
Inherits MediaWiki\Auth\AuthenticationRequest.

Public Member Functions | |
| __construct ( $id, $name) | |
| getFieldInfo () | |
Fetch input field info.This will be used in the AuthManager APIs and web UIs to define API input parameters / form fields and to process the submitted data.The field info is an associative array mapping field names to info arrays. The info arrays have the following keys:
| |
Public Member Functions inherited from MediaWiki\Auth\AuthenticationRequest | |
| describeCredentials () | |
| Describe the credentials represented by this request. | |
| getMetadata () | |
| Returns metadata about this request. | |
| getUniqueId () | |
| Supply a unique key for deduplication. | |
| loadFromSubmission (array $data) | |
| Initialize form submitted form data. | |
Public Attributes | |
| int | $id |
| User id. | |
| $required = self::OPTIONAL | |
Public Attributes inherited from MediaWiki\Auth\AuthenticationRequest | |
| string null | $action = null |
| The AuthManager::ACTION_* constant this request was created to be used for. | |
| int | $required = self::REQUIRED |
| Whether the authentication request is required (for login, continue, and link actions). | |
| string null | $returnToUrl = null |
| Return-to URL, in case of a REDIRECT AuthenticationResponse. | |
| string null | $username = null |
| Username. | |
| const | OPTIONAL = 0 |
| Indicates that the request is not required for authentication to proceed. | |
| const | PRIMARY_REQUIRED = 2 |
| Indicates that the request is required by a primary authentication provider. | |
| const | REQUIRED = 1 |
| Indicates that the request is required for authentication to proceed. | |
Additional Inherited Members | |
Static Public Member Functions inherited from MediaWiki\Auth\AuthenticationRequest | |
| static | __set_state ( $data) |
| Implementing this mainly for use from the unit tests. | |
| static | getRequestByClass (array $reqs, $class, $allowSubclasses=false) |
| Select a request by class name. | |
| static | getUsernameFromRequests (array $reqs) |
| Get the username from the set of requests. | |
| static | loadRequestsFromSubmission (array $reqs, array $data) |
| Update a set of requests with form submit data, discarding ones that fail. | |
| static | mergeFieldInfo (array $reqs) |
| Merge the output of multiple AuthenticationRequest::getFieldInfo() calls. | |
Returned from account creation to allow for logging into the created account.
Definition at line 16 of file CreatedAccountAuthenticationRequest.php.
| MediaWiki\Auth\CreatedAccountAuthenticationRequest::__construct | ( | $id, | |
| $name ) |
| int | $id | User id |
| string | $name | Username |
Definition at line 37 of file CreatedAccountAuthenticationRequest.php.
References MediaWiki\Auth\CreatedAccountAuthenticationRequest\$id.
| MediaWiki\Auth\CreatedAccountAuthenticationRequest::getFieldInfo | ( | ) |
Fetch input field info.This will be used in the AuthManager APIs and web UIs to define API input parameters / form fields and to process the submitted data.The field info is an associative array mapping field names to info arrays. The info arrays have the following keys:
Reimplemented from MediaWiki\Auth\AuthenticationRequest.
Definition at line 28 of file CreatedAccountAuthenticationRequest.php.
| int MediaWiki\Auth\CreatedAccountAuthenticationRequest::$id |
User id.
Definition at line 22 of file CreatedAccountAuthenticationRequest.php.
Referenced by MediaWiki\Auth\CreatedAccountAuthenticationRequest\__construct().
| MediaWiki\Auth\CreatedAccountAuthenticationRequest::$required = self::OPTIONAL |
Definition at line 19 of file CreatedAccountAuthenticationRequest.php.