TrackManiaControl/libs/FML/Controls/Quads/Quad_BgsChallengeMedals.php

31 lines
732 B
PHP
Raw Normal View History

<?php
namespace FML\Controls\Quads;
use FML\Controls\Quad;
/**
2014-06-21 03:18:21 +02:00
* Quad class for 'BgsChallengeMedals' styles
*
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
*/
class Quad_BgsChallengeMedals extends Quad {
2014-01-21 20:30:40 +01:00
/*
* Constants
*/
2014-06-21 03:18:21 +02:00
const STYLE = 'BgsChallengeMedals';
const SUBSTYLE_BgBronze = 'BgBronze';
const SUBSTYLE_BgGold = 'BgGold';
const SUBSTYLE_BgNadeo = 'BgNadeo';
2013-12-31 02:55:19 +01:00
const SUBSTYLE_BgNotPlayed = 'BgNotPlayed';
2014-06-21 03:18:21 +02:00
const SUBSTYLE_BgPlayed = 'BgPlayed';
const SUBSTYLE_BgSilver = 'BgSilver';
2014-06-21 03:18:21 +02:00
/*
* Protected properties
*/
2014-06-21 03:18:21 +02:00
protected $style = self::STYLE;
}