Manual:Hooks/SpecialPageBeforeExecute
From MediaWiki.org
| SpecialPageBeforeExecute | |
|---|---|
| Available from version 1.20.0 Called before SpecialPage::execute(). |
|
Define function: |
public static function onSpecialPageBeforeExecute( $special, $subPage ) { ... }
|
Attach hook: |
$wgHooks['SpecialPageBeforeExecute'][] = 'MyExtensionHooks::onSpecialPageBeforeExecute'; |
| Called from: | SpecialPage.php |
For more information about attaching hooks, see Manual:Hooks.
For examples of extensions using this hook, see Category:SpecialPageBeforeExecute extensions.
Details [edit]
- $special: the SpecialPage object
- $subPage: the subpage string or null if no subpage was specified