Manual:Hooks/APIAfterExecute

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 edit

  • $module: Module object

Notes edit

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

Use this to extend core API modules.