MediaWiki REL1_34
SpecialRemoveCredentials.php
Go to the documentation of this file.
1<?php
2
4
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}
string $subPage
Subpage of the special page.
This serves as the entry point to the authentication system.
Special change to change credentials (such as the password).
getConfig()
Shortcut to get main config object.
Special change to remove credentials (such as a two-factor token).
getDefaultAction( $subPage)
Get the default action for this special page, if none is given via URL/POST data.
getRequestBlacklist()
Allows blacklisting certain request types.