1 | <?php |
||
23 | abstract class AbstractTypographyTwigExtension extends BaseTwigExtension { |
||
24 | |||
25 | /** |
||
26 | * Displays an AdminBSB bold text. |
||
27 | * |
||
28 | * @param string $content The content. |
||
29 | * @return string Returns the AdminBSB bold text. |
||
30 | */ |
||
31 | protected function adminBSBBold($content) { |
||
34 | |||
35 | /** |
||
36 | * Displays an AdminBSB italic text. |
||
37 | * |
||
38 | * @param string $content The content. |
||
39 | * @return string Returns the AdminBSB italic text. |
||
40 | */ |
||
41 | protected function adminBSBItalic($content) { |
||
44 | |||
45 | /** |
||
46 | * Displays an AdminBSB line through text. |
||
47 | * |
||
48 | * @param string $content The content. |
||
49 | * @return string Returns the AdminBSB line through text. |
||
50 | */ |
||
51 | protected function adminBSBLineThrough($content) { |
||
54 | |||
55 | /** |
||
56 | * Displays an AdminBSB overlined text. |
||
57 | * |
||
58 | * @param string $content The content. |
||
59 | * @return string Returns the AdminBSB overlined text. |
||
60 | */ |
||
61 | protected function adminBSBOverline($content) { |
||
64 | |||
65 | /** |
||
66 | * Displays an AdminBSB underlined text. |
||
67 | * |
||
68 | * @param string $content The content. |
||
69 | * @return string Returns the AdminBSB underlined text. |
||
70 | */ |
||
71 | protected function adminBSBUnderline($content) { |
||
74 | } |
||
75 |