MediaWiki
REL1_34
SpecialRemoveCredentials.php
Go to the documentation of this file.
1
<?php
2
3
use
MediaWiki\Auth\AuthManager
;
4
8
class
SpecialRemoveCredentials
extends
SpecialChangeCredentials
{
9
protected
static
$allowedActions
= [ AuthManager::ACTION_REMOVE ];
10
11
protected
static
$messagePrefix
=
'removecredentials'
;
12
13
protected
static
$loadUserData
=
false
;
14
15
public
function
__construct
() {
16
parent::__construct(
'RemoveCredentials'
);
17
}
18
19
protected
function
getDefaultAction
(
$subPage
) {
20
return
AuthManager::ACTION_REMOVE;
21
}
22
23
protected
function
getRequestBlacklist
() {
24
return
$this->
getConfig
()->get(
'RemoveCredentialsBlacklist'
);
25
}
26
}
AuthManagerSpecialPage\$subPage
string $subPage
Subpage of the special page.
Definition
AuthManagerSpecialPage.php:35
MediaWiki\Auth\AuthManager
This serves as the entry point to the authentication system.
Definition
AuthManager.php:85
SpecialChangeCredentials
Special change to change credentials (such as the password).
Definition
SpecialChangeCredentials.php:13
SpecialPage\getConfig
getConfig()
Shortcut to get main config object.
Definition
SpecialPage.php:758
SpecialRemoveCredentials
Special change to remove credentials (such as a two-factor token).
Definition
SpecialRemoveCredentials.php:8
SpecialRemoveCredentials\getDefaultAction
getDefaultAction( $subPage)
Get the default action for this special page, if none is given via URL/POST data.
Definition
SpecialRemoveCredentials.php:19
SpecialRemoveCredentials\getRequestBlacklist
getRequestBlacklist()
Allows blacklisting certain request types.
Definition
SpecialRemoveCredentials.php:23
SpecialRemoveCredentials\$allowedActions
static $allowedActions
Definition
SpecialRemoveCredentials.php:9
SpecialRemoveCredentials\$loadUserData
static $loadUserData
Definition
SpecialRemoveCredentials.php:13
SpecialRemoveCredentials\$messagePrefix
static $messagePrefix
Definition
SpecialRemoveCredentials.php:11
SpecialRemoveCredentials\__construct
__construct()
Definition
SpecialRemoveCredentials.php:15
includes
specials
SpecialRemoveCredentials.php
Generated on Mon Nov 25 2024 16:05:54 for MediaWiki by
1.10.0