35 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace FML\Controls\Quads;
 | 
						|
 | 
						|
use FML\Controls\Quad;
 | 
						|
 | 
						|
/**
 | 
						|
 * Quad class for 'ManiaPlanetLogos' 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_ManiaPlanetLogos extends Quad
 | 
						|
{
 | 
						|
 | 
						|
    /*
 | 
						|
     * Constants
 | 
						|
     */
 | 
						|
    const STYLE                              = 'ManiaPlanetLogos';
 | 
						|
    const SUBSTYLE_IconPlanets               = 'IconPlanets';
 | 
						|
    const SUBSTYLE_IconPlanetsPerspective    = 'IconPlanetsPerspective';
 | 
						|
    const SUBSTYLE_IconPlanetsSmall          = 'IconPlanetsSmall';
 | 
						|
    const SUBSTYLE_ManiaPlanetLogoBlack      = 'ManiaPlanetLogoBlack';
 | 
						|
    const SUBSTYLE_ManiaPlanetLogoBlackSmall = 'ManiaPlanetLogoBlackSmall';
 | 
						|
    const SUBSTYLE_ManiaPlanetLogoWhite      = 'ManiaPlanetLogoWhite';
 | 
						|
    const SUBSTYLE_ManiaPlanetLogoWhiteSmall = 'ManiaPlanetLogoWhiteSmall';
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var string $style Style
 | 
						|
     */
 | 
						|
    protected $style = self::STYLE;
 | 
						|
 | 
						|
}
 |