MediaWiki REL1_31
ConfirmLinkAuthenticationRequest.php
Go to the documentation of this file.
1<?php
22namespace MediaWiki\Auth;
23
26 protected $linkRequests;
27
29 public $confirmedLinkIDs = [];
30
35 public function __construct( array $linkRequests ) {
36 if ( !$linkRequests ) {
37 throw new \InvalidArgumentException( '$linkRequests must not be empty' );
38 }
39 $this->linkRequests = $linkRequests;
40 }
41
42 public function getFieldInfo() {
43 $options = [];
44 foreach ( $this->linkRequests as $req ) {
45 $description = $req->describeCredentials();
46 $options[$req->getUniqueId()] = wfMessage(
47 'authprovider-confirmlink-option',
48 $description['provider']->text(), $description['account']->text()
49 );
50 }
51 return [
52 'confirmedLinkIDs' => [
53 'type' => 'multiselect',
54 'options' => $options,
55 'label' => wfMessage( 'authprovider-confirmlink-request-label' ),
56 'help' => wfMessage( 'authprovider-confirmlink-request-help' ),
57 'optional' => true,
58 ]
59 ];
60 }
61
62 public function getUniqueId() {
63 return parent::getUniqueId() . ':' . implode( '|', array_map( function ( $req ) {
64 return $req->getUniqueId();
66 }
67
73 public static function __set_state( $data ) {
74 $ret = new static( $data['linkRequests'] );
75 foreach ( $data as $k => $v ) {
76 $ret->$k = $v;
77 }
78 return $ret;
79 }
80}
This is a value object for authentication requests.
static __set_state( $data)
Implementing this mainly for use from the unit tests.
string[] $confirmedLinkIDs
List of unique IDs of the confirmed accounts.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition design.txt:18
this hook is for auditing only $req
Definition hooks.txt:990
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition hooks.txt:2001
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition hooks.txt:2005