Manual:Hooks/AlternateEdit
From MediaWiki.org
| AlternateEdit | |
|---|---|
| Available from version 1.6.0 Occurs whenever action=edit is called |
|
*Define function: |
function fnMyHook( &$editpage ) { ... }
|
*Attach hook: |
$wgHooks['AlternateEdit'][] = 'fnMyHook'; |
| Called from: | EditPage.php |
*For more information about attaching hooks, see Manual:Hooks.
*For examples of extensions using this hook, see Category:AlternateEdit extensions.
[edit] Details
- $editpage: the editpage (object) being called
[edit] Notes
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.