Page MenuHomeWickedGov Phorge

CodeMirrorGetModeHook.php
No OneTemporary

Size
745 B
Referenced Files
None
Subscribers
None

CodeMirrorGetModeHook.php

<?php
declare( strict_types = 1 );
namespace MediaWiki\Extension\CodeMirror\Hooks;
use MediaWiki\Title\Title;
/**
* This is a hook handler interface, see docs/Hooks.md in core.
* Use the hook name "CodeMirrorGetMode" to register handlers implementing this interface.
*
* @stable to implement
* @ingroup Hooks
*/
interface CodeMirrorGetModeHook {
/**
* Allows to set a code language for extensions content models
*
* @param Title $title The title the language is for
* @param string|null &$mode The CodeMirror mode to use
* @param string $model The content model of the title
* @return bool True to continue or false to abort
*/
public function onCodeMirrorGetMode( Title $title, ?string &$mode, string $model ): bool;
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 12:17 (18 h, 1 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
7a/5e/cf407130130d78aba84deb020c76
Default Alt Text
CodeMirrorGetModeHook.php (745 B)

Event Timeline