1 | <?php |
||
23 | class PreloaderTwigExtension extends AbstractPreloaderTwigExtension { |
||
24 | |||
25 | /** |
||
26 | * Service name. |
||
27 | * |
||
28 | * @var string |
||
29 | */ |
||
30 | const SERVICE_NAME = "wbw.adminbsb.twig.extension.ui.preloader"; |
||
31 | |||
32 | /** |
||
33 | * Displays an AdminBSB preloader "Material design" L. |
||
34 | * |
||
35 | * @param array $args The arguments. |
||
36 | * @return string Returns the AdminBSB preloader "Material design" L. |
||
37 | */ |
||
38 | public function adminBSBPreloaderMaterialDesignLFunction(array $args = []): string { |
||
41 | |||
42 | /** |
||
43 | * Displays an AdminBSB preloader "Material design" S. |
||
44 | * |
||
45 | * @param array $args The arguments. |
||
46 | * @return string Returns the AdminBSB preloader "Material design" S. |
||
47 | */ |
||
48 | public function adminBSBPreloaderMaterialDesignSFunction(array $args = []): string { |
||
51 | |||
52 | /** |
||
53 | * Displays an AdminBSB preloader "Material design" SM. |
||
54 | * |
||
55 | * @param array $args The arguments. |
||
56 | * @return string Returns the AdminBSB preloader "Material design" SM. |
||
57 | */ |
||
58 | public function adminBSBPreloaderMaterialDesignSMFunction(array $args = []): string { |
||
61 | |||
62 | /** |
||
63 | * Displays an AdminBSB preloader "Material design" XL. |
||
64 | * |
||
65 | * @param array $args The arguments. |
||
66 | * @return string Returns the AdminBSB preloader "Material design" XL. |
||
67 | */ |
||
68 | public function adminBSBPreloaderMaterialDesignXLFunction(array $args = []): string { |
||
71 | |||
72 | /** |
||
73 | * Displays an AdminBSB preloader "Material design" XS. |
||
74 | * |
||
75 | * @param array $args The arguments. |
||
76 | * @return string Returns the AdminBSB preloader "Material design" XS. |
||
77 | */ |
||
78 | public function adminBSBPreloaderMaterialDesignXSFunction(array $args = []): string { |
||
81 | |||
82 | /** |
||
83 | * Get the Twig functions. |
||
84 | * |
||
85 | * @return TwigFunction[] Returns the Twig functions. |
||
86 | */ |
||
87 | public function getFunctions(): array { |
||
96 | } |
||
97 |