< Manual:Hooks
APIGetParamDescription
Available from version 1.14.0
Removed in version 1.33.0
Use this hook to modify a module's parameter descriptions
Define function:
public static function onAPIGetParamDescription( ApiBase &$module, array &$desc ) { ... }
Attach hook: In extension.json:
{
	"Hooks": {
		"APIGetParamDescription": "MyExtensionHooks::onAPIGetParamDescription"
	}
}
Called from: File(s): api/ApiBase.php
Interface: APIGetParamDescriptionHook.php

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

Details

  • &$module: ApiBase object
  • $desc: Array of parameter descriptions
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.