1 | <?php |
||
23 | class TypographyTwigExtension extends AbstractTypographyTwigExtension { |
||
24 | |||
25 | /** |
||
26 | * Service name. |
||
27 | * |
||
28 | * @var string |
||
29 | */ |
||
30 | const SERVICE_NAME = "webeweb.adminbsbbundle.twig.extension.typography"; |
||
31 | |||
32 | /** |
||
33 | * Constructor. |
||
34 | */ |
||
35 | public function __construct() { |
||
38 | |||
39 | /** |
||
40 | * Displays an AdminBSB bold text. |
||
41 | * |
||
42 | * @param array $args The arguments. |
||
43 | * @return string Returns the AdminBSB bold text. |
||
44 | */ |
||
45 | public function adminBSBBoldFunction(array $args = []) { |
||
48 | |||
49 | /** |
||
50 | * Displays an AdminBSB italic text. |
||
51 | * |
||
52 | * @param array $args The arguments. |
||
53 | * @return string Returns the AdminBSB italic text. |
||
54 | */ |
||
55 | public function adminBSBItalicFunction(array $args = []) { |
||
58 | |||
59 | /** |
||
60 | * Displays an AdminBSB overlined text. |
||
61 | * |
||
62 | * @param array $args The arguments. |
||
63 | * @return string Returns the AdminBSB overlined text. |
||
64 | */ |
||
65 | public function adminBSBOverlineFunction(array $args = []) { |
||
68 | |||
69 | /** |
||
70 | * Displays an AdminBSB line through text. |
||
71 | * |
||
72 | * @param array $args The arguments. |
||
73 | * @return string Returns the AdminBSB line through text. |
||
74 | */ |
||
75 | public function adminBSBLineThroughFunction(array $args = []) { |
||
78 | |||
79 | /** |
||
80 | * Displays an AdminBSB underline text. |
||
81 | * |
||
82 | * @param array $args The arguments. |
||
83 | * @return string Returns the AdminBSB underline text. |
||
84 | */ |
||
85 | public function adminBSBUnderlineFunction(array $args = []) { |
||
88 | |||
89 | /** |
||
90 | * Get the Twig functions. |
||
91 | * |
||
92 | * @return array Returns the Twig functions. |
||
93 | */ |
||
94 | public function getFunctions() { |
||
103 | |||
104 | } |
||
105 |