89 lines
3.4 KiB
PHP
89 lines
3.4 KiB
PHP
<?php
|
|
|
|
namespace FML\Controls\Quads;
|
|
|
|
use FML\Controls\Quad;
|
|
|
|
/**
|
|
* Quad class for 'Icons128x128_1' styles
|
|
*
|
|
* @author steeffeen <mail@steeffeen.com>
|
|
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
|
*/
|
|
class Quad_Icons128x128_1 extends Quad {
|
|
/*
|
|
* Constants
|
|
*/
|
|
const STYLE = 'Icons128x128_1';
|
|
const SUBSTYLE_Advanced = 'Advanced';
|
|
const SUBSTYLE_Back = 'Back';
|
|
const SUBSTYLE_BackFocusable = 'BackFocusable';
|
|
const SUBSTYLE_Beginner = 'Beginner';
|
|
const SUBSTYLE_Browse = 'Browse';
|
|
const SUBSTYLE_Buddies = 'Buddies';
|
|
const SUBSTYLE_Challenge = 'Challenge';
|
|
const SUBSTYLE_ChallengeAuthor = 'ChallengeAuthor';
|
|
const SUBSTYLE_Coppers = 'Coppers';
|
|
const SUBSTYLE_Create = 'Create';
|
|
const SUBSTYLE_Credits = 'Credits';
|
|
const SUBSTYLE_Custom = 'Custom';
|
|
const SUBSTYLE_CustomStars = 'CustomStars';
|
|
const SUBSTYLE_Default = 'Default';
|
|
const SUBSTYLE_Download = 'Download';
|
|
const SUBSTYLE_Easy = 'Easy';
|
|
const SUBSTYLE_Editor = 'Editor';
|
|
const SUBSTYLE_Event = 'Event';
|
|
const SUBSTYLE_Extreme = 'Extreme';
|
|
const SUBSTYLE_Forever = 'Forever';
|
|
const SUBSTYLE_GhostEditor = 'GhostEditor';
|
|
const SUBSTYLE_Hard = 'Hard';
|
|
const SUBSTYLE_Hotseat = 'Hotseat';
|
|
const SUBSTYLE_Inputs = 'Inputs';
|
|
const SUBSTYLE_Invite = 'Invite';
|
|
const SUBSTYLE_LadderPoints = 'LadderPoints';
|
|
const SUBSTYLE_Lan = 'Lan';
|
|
const SUBSTYLE_Launch = 'Launch';
|
|
const SUBSTYLE_Load = 'Load';
|
|
const SUBSTYLE_LoadTrack = 'LoadTrack';
|
|
const SUBSTYLE_Manialink = 'Manialink';
|
|
const SUBSTYLE_ManiaZones = 'ManiaZones';
|
|
const SUBSTYLE_MedalCount = 'MedalCount';
|
|
const SUBSTYLE_MediaTracker = 'MediaTracker';
|
|
const SUBSTYLE_Medium = 'Medium';
|
|
const SUBSTYLE_Multiplayer = 'Multiplayer';
|
|
const SUBSTYLE_Nations = 'Nations';
|
|
const SUBSTYLE_NewTrack = 'NewTrack';
|
|
const SUBSTYLE_Options = 'Options';
|
|
const SUBSTYLE_Padlock = 'Padlock';
|
|
const SUBSTYLE_Paint = 'Paint';
|
|
const SUBSTYLE_Platform = 'Platform';
|
|
const SUBSTYLE_PlayerPage = 'PlayerPage';
|
|
const SUBSTYLE_Profile = 'Profile';
|
|
const SUBSTYLE_ProfileAdvanced = 'ProfileAdvanced';
|
|
const SUBSTYLE_ProfileVehicle = 'ProfileVehicle';
|
|
const SUBSTYLE_Puzzle = 'Puzzle';
|
|
const SUBSTYLE_Quit = 'Quit';
|
|
const SUBSTYLE_Race = 'Race';
|
|
const SUBSTYLE_Rankings = 'Rankings';
|
|
const SUBSTYLE_Replay = 'Replay';
|
|
const SUBSTYLE_Save = 'Save';
|
|
const SUBSTYLE_ServersAll = 'ServersAll';
|
|
const SUBSTYLE_ServersFavorites = 'ServersFavorites';
|
|
const SUBSTYLE_ServersSuggested = 'ServersSuggested';
|
|
const SUBSTYLE_Share = 'Share';
|
|
const SUBSTYLE_ShareBlink = 'ShareBlink';
|
|
const SUBSTYLE_SkillPoints = 'SkillPoints';
|
|
const SUBSTYLE_Solo = 'Solo';
|
|
const SUBSTYLE_Statistics = 'Statistics';
|
|
const SUBSTYLE_Stunts = 'Stunts';
|
|
const SUBSTYLE_United = 'United';
|
|
const SUBSTYLE_Upload = 'Upload';
|
|
const SUBSTYLE_Vehicles = 'Vehicles';
|
|
|
|
/*
|
|
* Protected properties
|
|
*/
|
|
protected $style = self::STYLE;
|
|
}
|