< Manual:Hooks
APIAfterExecute | |
---|---|
Available from version 1.14.0 Use this hook to extend core API modules | |
Define function: | public static function onAPIAfterExecute( ApiBase $module ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"APIAfterExecute": "MyExtensionHooks::onAPIAfterExecute"
}
}
|
Called from: | File(s): api/ApiMain.php |
Interface: | APIAfterExecuteHook.php |
For more information about attaching hooks, see Manual:Hooks
For examples of extensions using this hook, see Category:APIAfterExecute extensions.
Details
$module
: Module object
Notes
Called after calling the execute()
method of an API module.
Use this to extend core API modules.
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.