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

31 lines
514 B
PHP
Raw Normal View History

<?php
namespace FML\Controls\Quads;
use FML\Controls\Quad;
/**
* Quad class for style 'TitleLogos'
*
* @author steeffeen
*/
class Quad_TitleLogos extends Quad {
/**
* Constants
*/
const STYLE = 'TitleLogos';
2013-12-31 02:55:19 +01:00
const SUBSTYLE_Author = 'Author';
const SUBSTYLE_Collection = 'Collection';
const SUBSTYLE_Icon = 'Icon';
const SUBSTYLE_Title = 'Title';
/**
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);
}
}