Manual:Hooks/AlternateEdit
From MediaWiki.org
| AlternateEdit | |
|---|---|
| Available from version 1.6.0 Occurs whenever action=edit is called |
|
Define function: |
public static function onAlternateEdit( $editpage ) { ... }
|
Attach hook: |
$wgHooks['AlternateEdit'][] = 'MyExtensionHooks::onAlternateEdit'; |
| Called from: | EditPage.php |
For more information about attaching hooks, see Manual:Hooks.
For examples of extensions using this hook, see Category:AlternateEdit extensions.
Details [edit]
- $editpage: the editpage (object) being called
Notes [edit]
This hook gets called at the beginning of &action=edit, before any user permissions are checked or any edit checking is performed.
Can be used to override the standard MediaWiki edit screen with a customized edit screen.
Return "true" to proceed with EditPage::edit method, or "false" to exit the EditPage::edit method.
