Manual:Hooks/APIQueryGeneratorAfterExecute
APIQueryGeneratorAfterExecute | |
---|---|
Available from version 1.14.0 Use this hook to extend core query modules | |
Define function: | public static function onAPIQueryGeneratorAfterExecute( &$module ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"APIQueryGeneratorAfterExecute": "MediaWiki\\Extension\\MyExtension\\Hooks::onAPIQueryGeneratorAfterExecute"
}
}
|
Called from: | File(s): api/ApiQuery.php |
Interface: | APIQueryGeneratorAfterExecuteHook.php |
For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:APIQueryGeneratorAfterExecute extensions.
Details
edit- $module: Module object
Notes
editCalled after calling the executeGenerator() method of an API query module.