Edited doc comments for hook interfaces to improve consistency and add type hints. Bug: T246855 Change-Id: I38fa802463cd6f39bf5946dbbeb1b3ebaea604b2
26 lines
704 B
PHP
26 lines
704 B
PHP
<?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 array &$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
|
|
);
|
|
}
|