1 | <?php |
||
24 | abstract class AbstractTypographyTwigExtension extends AbstractBootstrapTwigExtension { |
||
25 | |||
26 | /** |
||
27 | * Displays a Bootstrap deleted text. |
||
28 | * |
||
29 | * @param string $content The mark content. |
||
30 | * @return string Returns the Bootstrap deleted text. |
||
31 | */ |
||
32 | final protected function bootstrapDeleted($content) { |
||
43 | |||
44 | /** |
||
45 | * Displays a Bootstrap heading. |
||
46 | * |
||
47 | * @param integer $size The heading size. |
||
48 | * @param string $content The heading content. |
||
49 | * @param string $description The heading description. |
||
50 | * @param string $class The heading class. |
||
51 | * @return string Returns the Bootstrap heading. |
||
52 | */ |
||
53 | final protected function bootstrapHeading($size, $content, $description, $class) { |
||
71 | |||
72 | /** |
||
73 | * Displays a Bootstrap inserted text. |
||
74 | * |
||
75 | * @param string $content The mark content. |
||
76 | * @return string Returns the Bootstrap inserted text. |
||
77 | */ |
||
78 | final protected function bootstrapInserted($content) { |
||
89 | |||
90 | /** |
||
91 | /** |
||
92 | * Displays a Bootstrap italic text. |
||
93 | * |
||
94 | * @param string $content The mark content. |
||
95 | * @return string Returns the Bootstrap italic text. |
||
96 | */ |
||
97 | final protected function bootstrapItalic($content) { |
||
108 | |||
109 | /** |
||
110 | /** |
||
111 | * Displays a Bootstrap marked text. |
||
112 | * |
||
113 | * @param string $content The mark content. |
||
114 | * @return string Returns the Bootstrap marked text. |
||
115 | */ |
||
116 | final protected function bootstrapMarked($content) { |
||
127 | |||
128 | /** |
||
129 | * Displays a Bootstrap strike through text. |
||
130 | * |
||
131 | * @param string $content The mark content. |
||
132 | * @return string Returns the Bootstrap strike through text. |
||
133 | */ |
||
134 | final protected function bootstrapStrikeThrough($content) { |
||
145 | |||
146 | /** |
||
147 | * Displays a Bootstrap small text. |
||
148 | * |
||
149 | * @param string $content The mark content. |
||
150 | * @return string Returns the Bootstrap small text. |
||
151 | */ |
||
152 | final protected function bootstrapSmall($content) { |
||
163 | |||
164 | /** |
||
165 | * Displays a Bootstrap bold text. |
||
166 | * |
||
167 | * @param string $content The mark content. |
||
168 | * @return string Returns the Bootstrap bold text. |
||
169 | */ |
||
170 | final protected function bootstrapStrong($content) { |
||
181 | |||
182 | /** |
||
183 | * Displays a Bootstrap underlined text. |
||
184 | * |
||
185 | * @param string $content The mark content. |
||
186 | * @return string Returns the Bootstrap underlined text. |
||
187 | */ |
||
188 | final protected function bootstrapUnderlined($content) { |
||
199 | |||
200 | } |
||
201 |