1 | <?php |
||
23 | abstract class AbstractCodeTwigExtension extends AbstractTwigExtension { |
||
24 | |||
25 | /** |
||
26 | * Displays a Bootstrap basic block. |
||
27 | * |
||
28 | * @param string $content The content. |
||
29 | * @return string Returns the Bootstrap basic block. |
||
30 | */ |
||
31 | protected function bootstrapBasicBlock($content) { |
||
34 | |||
35 | /** |
||
36 | * Displays a Bootstrap inline. |
||
37 | * |
||
38 | * @param string $content The inline content. |
||
39 | * @return string Returns the Bootstrap inline. |
||
40 | */ |
||
41 | protected function bootstrapInline($content) { |
||
44 | |||
45 | /** |
||
46 | * Displays a Bootstrap sample output. |
||
47 | * |
||
48 | * @param string $content The content. |
||
49 | * @return string Returns the Bootstrap sample output. |
||
50 | */ |
||
51 | protected function bootstrapSampleOutput($content) { |
||
54 | |||
55 | /** |
||
56 | * Displays a Bootstrap user input. |
||
57 | * |
||
58 | * @param string $content The content. |
||
59 | * @return string Returns the Bootstrap user input. |
||
60 | */ |
||
61 | protected function bootstrapUserInput($content) { |
||
64 | |||
65 | /** |
||
66 | * Displays a Bootstrap variable. |
||
67 | * |
||
68 | * @param string $content The content. |
||
69 | * @return string Returns the Bootstrap variable. |
||
70 | */ |
||
71 | protected function bootstrapVariable($content) { |
||
74 | } |
||
75 |