Manual:Hooks/SpecialPageBeforeExecute
Appearance
From mediawiki.org
| SpecialPageBeforeExecute | |
|---|---|
| Available from version 1.20.0 Called before SpecialPage::execute(). | |
| Define function: | public static function onSpecialPageBeforeExecute( SpecialPage $special, $subPage ) { ... } |
| Attach hook: | In extension.json:
{ "Hooks":{ "SpecialPageBeforeExecute":"MediaWiki\\Extension\\MyExtension\\Hooks::onSpecialPageBeforeExecute" } } |
| Called from: | File(s): specials/SpecialPage.php |
| Interface: | SpecialPageBeforeExecuteHook.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