< Manual:Hooks
ActionBeforeFormDisplay
Available from version 1.18.0 (r86001, codereview)
Before executing the HTMLForm object
Define function:
public static function onActionBeforeFormDisplay( $name, &$form, $article ) { ... }
Attach hook: In extension.json:
{
	"Hooks": {
		"ActionBeforeFormDisplay": "MyExtensionHooks::onActionBeforeFormDisplay"
	}
}
Called from: File(s): actions/FormAction.php
Interface: ActionBeforeFormDisplayHook.php

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

Details

  • $name: name of the action
  • &$form: HTMLForm object
  • $article: Article object

See also

  • ActionModifyFormFields
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.