Manual:Hooks/ActionBeforeFormDisplay

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": "MediaWiki\\Extension\\MyExtension\\Hooks::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 edit

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

See also edit