Jump to content

Manual:Hooks/APIAfterExecute

From mediawiki.org
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
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": "MediaWiki\\Extension\\MyExtension\\Hooks::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.