1 | <?php |
||
23 | abstract class AbstractGridTwigExtension extends AbstractBootstrapTwigExtension { |
||
24 | |||
25 | /** |
||
26 | * Constructor. |
||
27 | */ |
||
28 | protected function __construct() { |
||
31 | |||
32 | /** |
||
33 | * Displays a Bootstrap column. |
||
34 | * |
||
35 | * @param string $lg The large column size. |
||
36 | * @param string $md The medium column size. |
||
37 | * @param string $sm The small column size. |
||
38 | * @param string $xs The extra-small column size. |
||
39 | * @param string $prefix The column prefix. |
||
40 | * @return string Returns the Bootstrap grid. |
||
41 | */ |
||
42 | final protected function bootstrapGrid($lg, $md, $sm, $xs, $prefix = "") { |
||
56 | |||
57 | } |
||
58 |