1 | <?php |
||
25 | class ProgressBarTwigExtension extends BaseTwigExtension { |
||
26 | |||
27 | /** |
||
28 | * Service name. |
||
29 | * |
||
30 | * @var string |
||
31 | */ |
||
32 | const SERVICE_NAME = "webeweb.adminbsbbundle.twig.extension.ui.progressbar"; |
||
33 | |||
34 | /** |
||
35 | * Constructor. |
||
36 | */ |
||
37 | public function __construct() { |
||
40 | |||
41 | /** |
||
42 | * Displays an AdminBSB progress bar "Material design". |
||
43 | * |
||
44 | * @param array $args The arguments. |
||
45 | * @return string Returns the AdminBSB progress bar "Material design". |
||
46 | */ |
||
47 | public function adminBSBProgressBarMaterialDesignFunction(array $args = []) { |
||
50 | |||
51 | /** |
||
52 | * Get the Twig functions. |
||
53 | * |
||
54 | * @return array Returns the Twig functions. |
||
55 | */ |
||
56 | public function getFunctions() { |
||
61 | |||
62 | } |
||
63 |