TrackManiaControl/libs/FML/Types/SubStyleable.php

31 lines
634 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
2014-06-21 03:18:21 +02:00
* Interface for Elements with substyle attribute
*
2014-05-20 15:44:45 +02:00
* @author steeffeen <mail@steeffeen.com>
2014-04-13 18:21:40 +02:00
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
2014-05-18 19:45:50 +02:00
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
interface SubStyleable {
/**
2014-06-21 03:18:21 +02:00
* Set sub style
*
2014-06-21 03:18:21 +02:00
* @param string $subStyle SubStyle name
2014-07-03 22:34:47 +02:00
* @return static
*/
public function setSubStyle($subStyle);
/**
2014-06-21 03:18:21 +02:00
* Set style and sub style
2013-12-31 02:55:19 +01:00
*
2014-06-21 03:18:21 +02:00
* @param string $style Style name
* @param string $subStyle SubStyle name
2014-07-03 22:34:47 +02:00
* @return static
*/
public function setStyles($style, $subStyle);
}