TrackManiaControl/application/core/Libs/FML/Controls/Quads/Quad_ManiaPlanetMainMenu.php

36 lines
979 B
PHP
Raw Normal View History

2014-04-13 18:21:40 +02:00
<?php
namespace FML\Controls\Quads;
use FML\Controls\Quad;
/**
2014-06-21 03:18:21 +02:00
* Quad class for 'ManiaPlanetMainMenu' styles
2014-04-13 18:21:40 +02:00
*
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
2014-04-13 18:21:40 +02:00
*/
class Quad_ManiaPlanetMainMenu extends Quad {
/*
* Constants
*/
2014-05-18 19:45:50 +02:00
const STYLE = 'ManiaPlanetMainMenu';
const SUBSTYLE_BottomBar = 'BottomBar';
const SUBSTYLE_Highlight = 'Highlight';
const SUBSTYLE_IconAdd = 'IconAdd';
const SUBSTYLE_IconHome = 'IconHome';
const SUBSTYLE_IconPlay = 'IconPlay';
const SUBSTYLE_IconQuit = 'IconQuit';
2014-04-13 18:21:40 +02:00
const SUBSTYLE_IconSettings = 'IconSettings';
2014-05-18 19:45:50 +02:00
const SUBSTYLE_IconStore = 'IconStore';
const SUBSTYLE_MainBg = 'MainBg';
const SUBSTYLE_TitleBg = 'TitleBg';
const SUBSTYLE_TopBar = 'TopBar';
2014-04-13 18:21:40 +02:00
2014-06-21 03:18:21 +02:00
/*
* Protected properties
2014-04-13 18:21:40 +02:00
*/
2014-06-21 03:18:21 +02:00
protected $style = self::STYLE;
2014-04-13 18:21:40 +02:00
}