MediaWiki REL1_31
RememberMeAuthenticationRequest.php
Go to the documentation of this file.
1<?php
22namespace MediaWiki\Auth;
23
26
34
36
38 protected $expiration = null;
39
41 public $rememberMe = false;
42
43 public function __construct() {
45 $provider = SessionManager::getGlobalSession()->getProvider();
46 $this->expiration = $provider->getRememberUserDuration();
47 }
48
49 public function getFieldInfo() {
50 if ( !$this->expiration ) {
51 return [];
52 }
53
54 $expirationDays = ceil( $this->expiration / ( 3600 * 24 ) );
55 return [
56 'rememberMe' => [
57 'type' => 'checkbox',
58 'label' => wfMessage( 'userlogin-remembermypassword' )->numParams( $expirationDays ),
59 'help' => wfMessage( 'authmanager-userlogin-remembermypassword-help' ),
60 'optional' => true,
61 'skippable' => true,
62 ]
63 ];
64 }
65}
This is a value object for authentication requests.
const OPTIONAL
Indicates that the request is not required for authentication to proceed.
This is an authentication request added by AuthManager to show a "remember me" checkbox.
int $expiration
How long the user will be remembered, in seconds.
This serves as the entry point to the MediaWiki session handling system.
A SessionProvider provides SessionInfo and support for Session.
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