TrackManiaControl/application/core/FML/Controls/Quads/Quad_BgsChallengeMedals.php

33 lines
630 B
PHP
Raw Normal View History

<?php
namespace FML\Controls\Quads;
use FML\Controls\Quad;
/**
2014-01-12 00:51:46 +01:00
* Quad Class for 'BgsChallengeMedals' Style
*
* @author steeffeen
*/
class Quad_BgsChallengeMedals extends Quad {
/**
* Constants
*/
const STYLE = 'BgsChallengeMedals';
2013-12-31 02:55:19 +01:00
const SUBSTYLE_BgBronze = 'BgBronze';
const SUBSTYLE_BgGold = 'BgGold';
const SUBSTYLE_BgNadeo = 'BgNadeo';
const SUBSTYLE_BgNotPlayed = 'BgNotPlayed';
const SUBSTYLE_BgPlayed = 'BgPlayed';
const SUBSTYLE_BgSilver = 'BgSilver';
/**
2013-12-31 02:55:19 +01:00
*
* @see \FML\Controls\Quad
*/
2013-12-31 02:55:19 +01:00
public function __construct($id = null) {
parent::__construct($id);
$this->setStyle(self::STYLE);
}
}