MediaWiki  1.28.1
ConfirmLinkAuthenticationRequest.php
Go to the documentation of this file.
1 <?php
22 namespace 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();
65  }, $this->linkRequests ) );
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 }
the array() calling protocol came about after MediaWiki 1.4rc1.
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:1936
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 unsetoffset-wrap String Wrap the message in html(usually something like"&lt
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Definition: hooks.txt:1046
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:12
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
static __set_state($data)
Implementing this mainly for use from the unit tests.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
this hook is for auditing only $req
Definition: hooks.txt:1007
string[] $confirmedLinkIDs
List of unique IDs of the confirmed accounts.
This is a value object for authentication requests.