Manual:Hooks/PingLimiter
Appearance
PingLimiter | |
---|---|
Available from version 1.9.0 Allows extensions to override the results of User::pingLimiter() | |
Define function: | public static function onPingLimiter( &$user, $action, &$result ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"PingLimiter": "MediaWiki\\Extension\\MyExtension\\Hooks::onPingLimiter"
}
}
|
Called from: | File(s): user/User.php |
Interface: | PingLimiterHook.php |
For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:PingLimiter extensions.
Details
[edit]- &$user : User performing the action.
- $action : Action being performed.
- &$result : Whether or not the action should be prevented. Change $result and return false to give a definitive answer, otherwise the built-in rate limiting checks are used, if enabled.