Manual:Hooks/CustomEditor

From Linux Web Expert

The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
CustomEditor
<translate> Available from <tvar name=1><translate> version <tvar </tvar></translate>
When invoking the page editor. Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc.
<translate> Define function:</translate>
public static function onCustomEditor( Page $page, User $user ) { ... }
<translate> Attach hook:</translate> <translate> In <tvar name=1>extension.json</tvar>:</translate>
{
	"Hooks": {
		"CustomEditor": "MediaWiki\\Extension\\MyExtension\\Hooks::onCustomEditor"
	}
}
<translate> Called from:</translate> <translate> File(s):</translate> actions/EditAction.php
<translate> Interface:</translate> CustomEditorHook.php

<translate> For more information about attaching hooks, see <tvar name=1>Manual:Hooks </tvar>.</translate>
<translate> For examples of extensions using this hook, see <tvar name=cat>Category:CustomEditor extensions</tvar>.</translate>

Details

  • $page - Page being edited
  • $user - User performing the edit