32 lines
676 B
PHP
32 lines
676 B
PHP
<?php
|
|
|
|
namespace FML\Controls\Quads;
|
|
|
|
use FML\Controls\Quad;
|
|
|
|
/**
|
|
* Quad class for 'TitleLogos' styles
|
|
*
|
|
* @author steeffeen <mail@steeffeen.com>
|
|
* @copyright FancyManiaLinks Copyright © 2017 Steffen Schröder
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
|
*/
|
|
class Quad_TitleLogos extends Quad
|
|
{
|
|
|
|
/*
|
|
* Constants
|
|
*/
|
|
const STYLE = 'TitleLogos';
|
|
const SUBSTYLE_Author = 'Author';
|
|
const SUBSTYLE_Collection = 'Collection';
|
|
const SUBSTYLE_Icon = 'Icon';
|
|
const SUBSTYLE_Title = 'Title';
|
|
|
|
/**
|
|
* @var string $style Style
|
|
*/
|
|
protected $style = self::STYLE;
|
|
|
|
}
|