2013-11-25 00:02:07 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace FML\Controls\Quads;
|
|
|
|
|
|
|
|
use FML\Controls\Quad;
|
|
|
|
|
|
|
|
/**
|
2014-06-21 03:18:21 +02:00
|
|
|
* Quad class for 'Icons64x64_2' styles
|
2013-11-25 00:02:07 +01:00
|
|
|
*
|
2014-06-21 03:18:21 +02:00
|
|
|
* @author steeffeen
|
2014-04-13 18:21:40 +02:00
|
|
|
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
2014-06-21 03:18:21 +02:00
|
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
2013-11-25 00:02:07 +01:00
|
|
|
*/
|
|
|
|
class Quad_Icons64x64_2 extends Quad {
|
2014-01-21 20:30:40 +01:00
|
|
|
/*
|
2013-11-25 00:02:07 +01:00
|
|
|
* Constants
|
|
|
|
*/
|
2014-06-21 03:18:21 +02:00
|
|
|
const STYLE = 'Icons64x64_2';
|
|
|
|
const SUBSTYLE_ArrowElimination = 'ArrowElimination';
|
|
|
|
const SUBSTYLE_ArrowHit = 'ArrowHit';
|
2014-08-11 23:15:53 +02:00
|
|
|
const SUBSTYLE_Calendar = 'Calendar';
|
2014-06-21 03:18:21 +02:00
|
|
|
const SUBSTYLE_Disconnected = 'Disconnected';
|
|
|
|
const SUBSTYLE_DisconnectedLight = 'DisconnectedLight';
|
|
|
|
const SUBSTYLE_LaserElimination = 'LaserElimination';
|
|
|
|
const SUBSTYLE_LaserHit = 'LaserHit';
|
2013-12-31 02:55:19 +01:00
|
|
|
const SUBSTYLE_NucleusElimination = 'NucleusElimination';
|
2014-06-21 03:18:21 +02:00
|
|
|
const SUBSTYLE_NucleusHit = 'NucleusHit';
|
|
|
|
const SUBSTYLE_RocketElimination = 'RocketElimination';
|
|
|
|
const SUBSTYLE_RocketHit = 'RocketHit';
|
|
|
|
const SUBSTYLE_ServerNotice = 'ServerNotice';
|
|
|
|
const SUBSTYLE_SortBy = 'SortBy';
|
2013-12-31 02:55:19 +01:00
|
|
|
const SUBSTYLE_UnknownElimination = 'UnknownElimination';
|
2014-06-21 03:18:21 +02:00
|
|
|
const SUBSTYLE_UnknownHit = 'UnknownHit';
|
2013-11-25 00:02:07 +01:00
|
|
|
|
2014-06-21 03:18:21 +02:00
|
|
|
/*
|
|
|
|
* Protected properties
|
2013-11-25 00:02:07 +01:00
|
|
|
*/
|
2014-06-21 03:18:21 +02:00
|
|
|
protected $style = self::STYLE;
|
2013-11-25 00:02:07 +01:00
|
|
|
}
|