Manual:Hooks/PingLimiter
From MediaWiki.org
| PingLimiter | |
|---|---|
| Available from version 1.9.0 Allows extensions to override the results of User::pingLimiter() |
|
*Define function: |
function fnMyHook( &$user, $action, &$result ) { ... }
|
*Attach hook: |
$wgHooks['PingLimiter'][] = 'MyExtensionHooks::someExample'; |
| Called from: | User.php |
*For more information about attaching hooks, see Manual:Hooks.
*For examples of extensions using this hook, see Category:PingLimiter extensions.
[edit] Details
- &$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.
