1 | <?php |
||
24 | class PreloaderTwigExtension extends AbstractPreloaderTwigExtension { |
||
25 | |||
26 | /** |
||
27 | * Service name. |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | const SERVICE_NAME = "webeweb.adminbsbbundle.twig.extension.ui.preloader"; |
||
32 | |||
33 | /** |
||
34 | * Constructor. |
||
35 | */ |
||
36 | public function __construct() { |
||
39 | |||
40 | /** |
||
41 | * Displays an AdminBSB preloader "Material design" L. |
||
42 | * |
||
43 | * @param array $args The arguments. |
||
44 | * @return string Retruns the AdminBSB preloader "Material design" L. |
||
45 | */ |
||
46 | public function adminBSBPreloaderMaterialDesignLFunction(array $args = []) { |
||
49 | |||
50 | /** |
||
51 | * Displays an AdminBSB preloader "Material design" S. |
||
52 | * |
||
53 | * @param array $args The arguments. |
||
54 | * @return string Retruns the AdminBSB preloader "Material design" S. |
||
55 | */ |
||
56 | public function adminBSBPreloaderMaterialDesignSFunction(array $args = []) { |
||
59 | |||
60 | /** |
||
61 | * Displays an AdminBSB preloader "Material design" SM. |
||
62 | * |
||
63 | * @param array $args The arguments. |
||
64 | * @return string Retruns the AdminBSB preloader "Material design" SM. |
||
65 | */ |
||
66 | public function adminBSBPreloaderMaterialDesignSMFunction(array $args = []) { |
||
69 | |||
70 | /** |
||
71 | * Displays an AdminBSB preloader "Material design" XL. |
||
72 | * |
||
73 | * @param array $args The arguments. |
||
74 | * @return string Retruns the AdminBSB preloader "Material design" XL. |
||
75 | */ |
||
76 | public function adminBSBPreloaderMaterialDesignXLFunction(array $args = []) { |
||
79 | |||
80 | /** |
||
81 | * Displays an AdminBSB preloader "Material design" XS. |
||
82 | * |
||
83 | * @param array $args The arguments. |
||
84 | * @return string Retruns the AdminBSB preloader "Material design" XS. |
||
85 | */ |
||
86 | public function adminBSBPreloaderMaterialDesignXSFunction(array $args = []) { |
||
89 | |||
90 | /** |
||
91 | * Get the Twig functions. |
||
92 | * |
||
93 | * @return array Returns the Twig functions. |
||
94 | */ |
||
95 | public function getFunctions() { |
||
104 | |||
105 | } |
||
106 |