Manual:Hooks/EditPage::showEditForm:fields

From MediaWiki.org
Jump to: navigation, search
EditPage::showEditForm:fields
Available from version 1.6.0
Allows injection of form field into edit form.

Define function:
public static function onEditPage::showEditForm:fields( EditPage $editpage, OutputPage $output ) { ... }

Attach hook:
$wgHooks['EditPage::showEditForm:fields'][] = 'MyExtensionHooks::onEditPage::showEditForm:fields';
Called from: EditPage.php

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


Details[edit | edit source]

This hook is called before edit box and the toolbar are published.

  • $editpage - The EditPage object.
  • $output - the OutputPage object (added in version 1.12.0)

return value is ignored (should always return true)