mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 11:13:34 +00:00
903034de23
Bug: T315823 Change-Id: I09c45ed939e103e6edb3a76623687574dcf0206f
23 lines
570 B
PHP
23 lines
570 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Minerva\Hooks;
|
|
|
|
use MediaWiki\Minerva\SkinOptions;
|
|
use Skin;
|
|
|
|
/**
|
|
* This is a hook handler interface, see docs/Hooks.md in core.
|
|
* Use the hook name "SkinMinervaOptionsInit" to register handlers implementing this interface.
|
|
*
|
|
* @stable to implement
|
|
* @ingroup Hooks
|
|
*/
|
|
interface SkinMinervaOptionsInitHook {
|
|
/**
|
|
* @param Skin $skin
|
|
* @param SkinOptions $skinOptions
|
|
* @return bool|void True or no return value to continue or false to abort
|
|
*/
|
|
public function onSkinMinervaOptionsInit( Skin $skin, SkinOptions $skinOptions );
|
|
}
|