1 | <?php |
||
24 | abstract class AbstractAdminBSBTwigExtension extends Twig_Extension { |
||
25 | |||
26 | /** |
||
27 | * Default content. |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | const DEFAULT_CONTENT = " "; |
||
32 | |||
33 | /** |
||
34 | * Constructor. |
||
35 | */ |
||
36 | protected function __construct() { |
||
39 | |||
40 | /** |
||
41 | * Fix a color. |
||
42 | * |
||
43 | * @param string $name The color name. |
||
44 | * @param string $prefix The color prefix. |
||
45 | * @return string Returns the prefix color in case of success, default color otherwise. |
||
46 | */ |
||
47 | public static function fixColor($name, $prefix = "") { |
||
53 | |||
54 | } |
||
55 |