| 1 | <?php |
||
| 23 | abstract class AbstractButtonGroupTwigExtension extends AbstractBootstrapTwigExtension { |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Constructor. |
||
| 27 | */ |
||
| 28 | protected function __construct() { |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Displays a Bootstrap button group. |
||
| 34 | * |
||
| 35 | * @param string $class The class. |
||
| 36 | * @param string $role The role. |
||
| 37 | * @param array $buttons The buttons. |
||
| 38 | * @return string Returns the Bootstrap button group. |
||
| 39 | */ |
||
| 40 | protected function bootstrapButtonGroup($class, $role, array $buttons) { |
||
| 54 | |||
| 55 | } |
||
| 56 |