1 | <?php |
||
23 | abstract class AbstractTypographyTwigExtension extends AbstractTwigExtension { |
||
24 | |||
25 | /** |
||
26 | * Displays a Bootstrap bold text. |
||
27 | * |
||
28 | * @param string $content The content. |
||
29 | * @return string Returns the Bootstrap bold text. |
||
30 | */ |
||
31 | protected function bootstrapBold($content) { |
||
34 | |||
35 | /** |
||
36 | * Displays a Bootstrap deleted text. |
||
37 | * |
||
38 | * @param string $content The content. |
||
39 | * @return string Returns the Bootstrap deleted text. |
||
40 | */ |
||
41 | protected function bootstrapDeleted($content) { |
||
44 | |||
45 | /** |
||
46 | * Displays a Bootstrap heading. |
||
47 | * |
||
48 | * @param int $size The size. |
||
49 | * @param string $content The content. |
||
50 | * @param string $description The description. |
||
51 | * @param string $class The class. |
||
52 | * @return string Returns the Bootstrap heading. |
||
53 | */ |
||
54 | protected function bootstrapHeading($size, $content, $description, $class) { |
||
68 | |||
69 | /** |
||
70 | * Displays a Bootstrap inserted text. |
||
71 | * |
||
72 | * @param string $content The content. |
||
73 | * @return string Returns the Bootstrap inserted text. |
||
74 | */ |
||
75 | protected function bootstrapInserted($content) { |
||
78 | |||
79 | /** |
||
80 | * Displays a Bootstrap italic text. |
||
81 | * |
||
82 | * @param string $content The content. |
||
83 | * @return string Returns the Bootstrap italic text. |
||
84 | */ |
||
85 | protected function bootstrapItalic($content) { |
||
88 | |||
89 | /** |
||
90 | * Displays a Bootstrap marked text. |
||
91 | * |
||
92 | * @param string $content The content. |
||
93 | * @return string Returns the Bootstrap marked text. |
||
94 | */ |
||
95 | protected function bootstrapMarked($content) { |
||
98 | |||
99 | /** |
||
100 | * Displays a Bootstrap small text. |
||
101 | * |
||
102 | * @param string $content The content. |
||
103 | * @return string Returns the Bootstrap small text. |
||
104 | */ |
||
105 | protected function bootstrapSmall($content) { |
||
108 | |||
109 | /** |
||
110 | * Displays a Bootstrap strike through text. |
||
111 | * |
||
112 | * @param string $content The content. |
||
113 | * @return string Returns the Bootstrap strike through text. |
||
114 | */ |
||
115 | protected function bootstrapStrikeThrough($content) { |
||
118 | |||
119 | /** |
||
120 | * Displays a Bootstrap underlined text. |
||
121 | * |
||
122 | * @param string $content The content. |
||
123 | * @return string Returns the Bootstrap underlined text. |
||
124 | */ |
||
125 | protected function bootstrapUnderlined($content) { |
||
128 | } |
||
129 |