1 | <?php |
||
24 | final class CheckboxFormTwigExtension extends AbstractFormTwigExtension { |
||
25 | |||
26 | /** |
||
27 | * Service name. |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | const SERVICE_NAME = "webeweb.bundle.adminbsbmaterialdesignbundle.twig.extension.form.checkbox"; |
||
32 | |||
33 | /** |
||
34 | * Displays an AdminBSB basic checkbox. |
||
35 | * |
||
36 | * @param array $args The arguments. |
||
37 | * @return string Returns the basic checkbox. |
||
38 | */ |
||
39 | public function absbmdBasicCheckboxFunction(array $args = []) { |
||
42 | |||
43 | /** |
||
44 | * Get the Twig functions. |
||
45 | * |
||
46 | * @return array Returns the Twig functions. |
||
47 | */ |
||
48 | public function getFunctions() { |
||
54 | |||
55 | /** |
||
56 | * Displays an AdminBSB material design checkbox. |
||
57 | * |
||
58 | * @param array $args The arguments. |
||
59 | * @return string Returns the material design checkbox. |
||
60 | */ |
||
61 | public function absbmdMaterialDesignCheckboxFunction(array $args = []) { |
||
64 | |||
65 | } |
||
66 |