< Manual:Hooks
SpecialPageAfterExecute | |
---|---|
Available from version 1.20.0 Called after SpecialPage::execute() . | |
Define function: | public static function onSpecialPageAfterExecute( $special, $subPage ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"SpecialPageAfterExecute": "MyExtensionHooks::onSpecialPageAfterExecute"
}
}
|
Called from: | File(s): SpecialPage.php |
Interface: | SpecialPageAfterExecuteHook.php |
For more information about attaching hooks, see Manual:Hooks
For examples of extensions using this hook, see Category:SpecialPageAfterExecute extensions.
Details
$special
: the SpecialPage object.$subPage
: the subpage string or null if no subpage was specified.
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.