Go to the documentation of this file.
31 [
'apiwarn-deprecation-withreplacement',
'action=tokens',
'action=query&meta=tokens' ],
41 foreach ( $params[
'type'] as
$type ) {
42 $val = call_user_func( $types[
$type],
null,
null );
44 if ( $val ===
false ) {
45 $this->
addWarning( [
'apiwarn-tokennotallowed', $type ] );
65 $types = [
'patrol' => [ ApiQueryRecentChanges::class,
'getPatrolToken' ] ];
66 $names = [
'edit',
'delete',
'protect',
'move',
'block',
'unblock',
67 'email',
'import',
'watch',
'options' ];
68 foreach ( $names as $name ) {
69 $types[$name] = [ ApiQueryInfo::class,
'get' . ucfirst( $name ) .
'Token' ];
71 Hooks::run(
'ApiTokensGetTokenTypes', [ &$types ] );
78 if ( !isset( $types[$name] ) ) {
79 $types[$name] =
function () use ( $salt, $user, $request ) {
107 =>
'apihelp-tokens-example-edit',
108 'action=tokens&type=email|move'
109 =>
'apihelp-tokens-example-emailmove',
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
const META_TYPE
Key for the 'type' metadata item.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
getResult()
Get the result object.
lacksSameOriginSecurity()
Returns true if the current request breaks the same-origin policy.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
This abstract class implements many basic API functions, and is the base of all API classes.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
static getTokenTypeSalts()
Get the salts for known token types.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
getExamplesMessages()
Returns usage examples for this module.
addDeprecation( $msg, $feature, $data=[])
Add a deprecation warning for this module.
static getToken(User $user, MediaWiki\Session\Session $session, $salt)
Get a token from a salt.
isDeprecated()
Indicates whether this module is deprecated.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
getModuleName()
Get the name of the module being executed by this instance.
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.