mediawiki-extensions-CodeEd.../includes/Hooks/CodeEditorGetPageLanguageHook.php
Umherirrender 4d6a470aae Create HookRunner class and the hook handler interface
Bug: T271013
Change-Id: Ie8e152530599d11da12cb9272a3b757da1cca1ab
2023-06-04 21:23:14 +02:00

26 lines
825 B
PHP

<?php
namespace MediaWiki\Extension\CodeEditor\Hooks;
use MediaWiki\Title\Title;
/**
* This is a hook handler interface, see docs/Hooks.md in core.
* Use the hook name "CodeEditorGetPageLanguage" to register handlers implementing this interface.
*
* @stable to implement
* @ingroup Hooks
*/
interface CodeEditorGetPageLanguageHook {
/**
* Allows to set a code language for extensions content models
*
* @param Title $title The title the language is for
* @param string|null &$lang The language to use
* @param string $model The content model of the title
* @param string $format The content format of the title
* @return bool|void True or no return value to continue or false to abort
*/
public function onCodeEditorGetPageLanguage( Title $title, ?string &$lang, string $model, string $format );
}