1 | <?php |
||
25 | abstract class AbstractBootstrapTwigExtension extends Twig_Extension { |
||
26 | |||
27 | /** |
||
28 | * Default content. |
||
29 | * |
||
30 | * @var string |
||
31 | */ |
||
32 | const DEFAULT_CONTENT = " "; |
||
33 | |||
34 | /** |
||
35 | * Default href. |
||
36 | * |
||
37 | * @var string |
||
38 | */ |
||
39 | const DEFAULT_HREF = NavigationInterface::DEFAULT_HREF; |
||
40 | |||
41 | /** |
||
42 | * Constructor. |
||
43 | */ |
||
44 | protected function __construct() { |
||
47 | |||
48 | /** |
||
49 | * Displays a Bootstrap simple tag. |
||
50 | * |
||
51 | * @param string $name The tag name. |
||
52 | * @param string $content The tag content |
||
53 | * @return string Returns the Bootstrap tag. |
||
54 | */ |
||
55 | final protected function bootstrapSimpleTag($name, $content) { |
||
66 | |||
67 | } |
||
68 |