wiki.techinc.nl/includes/resourceloader/Hook/ResourceLoaderJqueryMsgModuleMagicWordsHook.php

27 lines
707 B
PHP
Raw Normal View History

<?php
namespace MediaWiki\Hook;
use ResourceLoaderContext;
/**
* @stable for implementation
* @ingroup Hooks
*/
interface ResourceLoaderJqueryMsgModuleMagicWordsHook {
/**
* This hook is called in ResourceLoaderJqueryMsgModule to allow
* adding magic words for jQueryMsg. The value should be a string,
* and they can depend only on the ResourceLoaderContext.
*
* @since 1.35
*
* @param ResourceLoaderContext $context
* @param string[] &$magicWords Associative array mapping all-caps magic word to a string value
* @return bool|void True or no return value to continue or false to abort
*/
public function onResourceLoaderJqueryMsgModuleMagicWords( $context,
&$magicWords
);
}