| 1 | <?php |
||
| 24 | abstract class AbstractABSBMDTwigExtension 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 | * Get a color. |
||
| 42 | * |
||
| 43 | * @param string $name The color name. |
||
| 44 | * @param string $prefix The color prefix. |
||
| 45 | * @return string Returns the color in case of success, "" otherwise. |
||
| 46 | */ |
||
| 47 | final protected function getColor($name, $prefix = "") { |
||
| 53 | |||
| 54 | } |
||
| 55 |