Current File : /home/jvzmxxx/wiki1/extensions/MobileFrontend/includes/skins/ICustomizableSkin.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 );
}