Manual:Hooks/SpecialPageAfterExecute

From MediaWiki.org
Jump to: navigation, search
SpecialPageAfterExecute
Available from version 1.20.0
Called after SpecialPage::execute().

Define function:
public static function onSpecialPageAfterExecute( $special, $subPage ) { ... }

Attach hook:
$wgHooks['SpecialPageAfterExecute'][] = 'MyExtensionHooks::onSpecialPageAfterExecute';
Called from: SpecialPage.php

For more information about attaching hooks, see Manual:Hooks.
For examples of extensions using this hook, see Category:SpecialPageAfterExecute extensions.


Details [edit]

  • $special: the SpecialPage object
  • $subPage: the subpage string or null if no subpage was specified