mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 10:50:52 +00:00
17 lines
316 B
PHP
17 lines
316 B
PHP
|
<?php
|
||
|
|
||
|
interface ICustomizableSkin {
|
||
|
/**
|
||
|
* override an existing option or options with new values
|
||
|
* @param array $options
|
||
|
*/
|
||
|
public function setSkinOptions( $options );
|
||
|
|
||
|
/**
|
||
|
* Return whether a skin option is truthy
|
||
|
* @param string $key
|
||
|
* @return boolean
|
||
|
*/
|
||
|
public function getSkinOption( $key );
|
||
|
}
|