2013-11-25 00:02:07 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace FML\Controls\Labels;
|
|
|
|
|
|
|
|
use FML\Controls\Label;
|
|
|
|
|
|
|
|
/**
|
2014-06-21 03:18:21 +02:00
|
|
|
* Label class for button styles
|
2013-11-25 00:02:07 +01:00
|
|
|
*
|
2014-05-20 15:44:45 +02:00
|
|
|
* @author steeffeen <mail@steeffeen.com>
|
2014-04-13 18:21:40 +02:00
|
|
|
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
2014-05-18 19:45:50 +02:00
|
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
2013-11-25 00:02:07 +01:00
|
|
|
*/
|
|
|
|
class Label_Button extends Label {
|
2014-01-21 20:30:40 +01:00
|
|
|
/*
|
2013-11-25 00:02:07 +01:00
|
|
|
* Constants
|
|
|
|
*/
|
2014-05-18 19:45:50 +02:00
|
|
|
const STYLE_CardButtonMedium = 'CardButtonMedium';
|
|
|
|
const STYLE_CardButtonMediumL = 'CardButtonMediumL';
|
|
|
|
const STYLE_CardButtonMediumS = 'CardButtonMediumS';
|
2013-11-25 00:02:07 +01:00
|
|
|
const STYLE_CardButtonMediumWide = 'CardButtonMediumWide';
|
2014-05-18 19:45:50 +02:00
|
|
|
const STYLE_CardButtonMediumXL = 'CardButtonMediumXL';
|
|
|
|
const STYLE_CardButtonMediumXS = 'CardButtonMediumXS';
|
|
|
|
const STYLE_CardButtonMediumXXL = 'CardButtonMediumXXL';
|
2013-11-25 00:02:07 +01:00
|
|
|
const STYLE_CardButtonMediumXXXL = 'CardButtonMediumXXXL';
|
2014-05-18 19:45:50 +02:00
|
|
|
const STYLE_CardButtonSmall = 'CardButtonSmall';
|
|
|
|
const STYLE_CardButtonSmallL = 'CardButtonSmallL';
|
|
|
|
const STYLE_CardButtonSmallS = 'CardButtonSmallS';
|
|
|
|
const STYLE_CardButtonSmallWide = 'CardButtonSmallWide';
|
|
|
|
const STYLE_CardButtonSmallXL = 'CardButtonSmallXL';
|
|
|
|
const STYLE_CardButtonSmallXS = 'CardButtonSmallXS';
|
|
|
|
const STYLE_CardButtonSmallXXL = 'CardButtonSmallXXL';
|
|
|
|
const STYLE_CardButtonSmallXXXL = 'CardButtonSmallXXXL';
|
|
|
|
const STYLE_CardMain_Quit = 'CardMain_Quit';
|
|
|
|
const STYLE_CardMain_Tool = 'CardMain_Tool';
|
2014-07-04 23:50:43 +02:00
|
|
|
const STYLE_CardMain_Tool_NoBg = 'CardMain_Tool_NoBg';
|
|
|
|
const STYLE_CardMain_Tool_NoBg2 = 'CardMain_Tool_NoBg2';
|
2013-11-25 00:02:07 +01:00
|
|
|
}
|