39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace FML\Controls\Quads;
 | |
| 
 | |
| use FML\Controls\Quad;
 | |
| 
 | |
| /**
 | |
|  * Quad class for 'BgsPlayerCard' styles
 | |
|  *
 | |
|  * @author    steeffeen
 | |
|  * @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
 | |
|  * @license   http://www.gnu.org/licenses/ GNU General Public License, Version 3
 | |
|  */
 | |
| class Quad_BgsPlayerCard extends Quad {
 | |
| 	/*
 | |
| 	 * Constants
 | |
| 	 */
 | |
| 	const STYLE                        = 'BgsPlayerCard';
 | |
| 	const SUBSTYLE_BgActivePlayerCard  = 'BgActivePlayerCard';
 | |
| 	const SUBSTYLE_BgActivePlayerName  = 'BgActivePlayerName';
 | |
| 	const SUBSTYLE_BgActivePlayerScore = 'BgActivePlayerScore';
 | |
| 	const SUBSTYLE_BgCard              = 'BgCard';
 | |
| 	const SUBSTYLE_BgCardSystem        = 'BgCardSystem';
 | |
| 	const SUBSTYLE_BgMediaTracker      = 'BgMediaTracker';
 | |
| 	const SUBSTYLE_BgPlayerCard        = 'BgPlayerCard';
 | |
| 	const SUBSTYLE_BgPlayerCardBig     = 'BgPlayerCardBig';
 | |
| 	const SUBSTYLE_BgPlayerCardSmall   = 'BgPlayerCardSmall';
 | |
| 	const SUBSTYLE_BgPlayerName        = 'BgPlayerName';
 | |
| 	const SUBSTYLE_BgPlayerScore       = 'BgPlayerScore';
 | |
| 	const SUBSTYLE_BgRacePlayerLine    = 'BgRacePlayerLine';
 | |
| 	const SUBSTYLE_BgRacePlayerName    = 'BgRacePlayerName';
 | |
| 	const SUBSTYLE_ProgressBar         = 'ProgressBar';
 | |
| 
 | |
| 	/*
 | |
| 	 * Protected properties
 | |
| 	 */
 | |
| 	protected $style = self::STYLE;
 | |
| }
 |