Manual:Hooks/APIQueryAfterExecute

From MediaWiki.org

Jump to: navigation, search
APIQueryAfterExecute
Available from version 1.14.0
Use this hook to extend core query modules

*Define function:
function fnMyHook( &$module ) { ... }

*Attach hook:
$wgHooks['APIQueryAfterExecute'][] = 'fnMyHook';
Called from: ApiQuery.php

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


[edit] Details

  • $module: Module object

[edit] Notes

Called after calling the execute() method of an API query module.