1 | <?php |
||
23 | class ColorTwigExtension extends AbstractColorTwigExtension { |
||
24 | |||
25 | /** |
||
26 | * Service name. |
||
27 | * |
||
28 | * @var string |
||
29 | */ |
||
30 | const SERVICE_NAME = "webeweb.adminbsbbundle.twig.extension.ui.color"; |
||
31 | |||
32 | /** |
||
33 | * Constructor. |
||
34 | */ |
||
35 | public function __construct() { |
||
38 | |||
39 | /** |
||
40 | * Displays an AdminBSB color "Material design". |
||
41 | * |
||
42 | * @param array $args The arguments. |
||
43 | * @return string Returns the AdminBSB color "Material design". |
||
44 | */ |
||
45 | public function adminBSBColorMaterialDesignFunction(array $args = []) { |
||
48 | |||
49 | /** |
||
50 | * Get the Twig functions. |
||
51 | * |
||
52 | * @return array Returns the Twig functions. |
||
53 | */ |
||
54 | public function getFunctions() { |
||
59 | |||
60 | } |
||
61 |