Manual:Hooks/ApiBeforeMain
ApiBeforeMain | |
---|---|
Available from version 1.23.0 (Gerrit change 100996) Occurs before ApiMain's execute is called to process the request. | |
Define function: | public static function onApiBeforeMain( &$main ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"ApiBeforeMain": "MediaWiki\\Extension\\MyExtension\\Hooks::onApiBeforeMain"
}
}
|
Called from: | File(s): ../api.php |
Interface: | ApiBeforeMainHook.php |
For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:ApiBeforeMain extensions.
Details
edit- &$main: ApiMain being used for request
See also
edit- Manual:Hooks/BeforeInitialize: A roughly-equivalent hook for requests to index.php