1 | <?php |
||
24 | class CardTwigExtension extends AbstractCardTwigExtension { |
||
25 | |||
26 | /** |
||
27 | * Service name. |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | const SERVICE_NAME = "webeweb.adminbsbbundle.twig.extension.widget.card"; |
||
32 | |||
33 | /** |
||
34 | * Constructor. |
||
35 | */ |
||
36 | public function __construct() { |
||
39 | |||
40 | /** |
||
41 | * Displays an AdminBSB card header. |
||
42 | * |
||
43 | * @param array $args The arguments. |
||
44 | * @return string Returns the AdminBSB card header. |
||
45 | */ |
||
46 | public function adminBSBCardHeaderFunction(array $args = []) { |
||
49 | |||
50 | /** |
||
51 | * Get the Twig functions. |
||
52 | * |
||
53 | * @return array Returns the Twig functions. |
||
54 | */ |
||
55 | public function getFunctions() { |
||
60 | |||
61 | } |
||
62 |