| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | protected function bootstrapButtonGroup($class, $role, array $buttons) { |
||
| 41 | |||
| 42 | // Initialize the attributes. |
||
| 43 | $attributes = []; |
||
| 44 | |||
| 45 | $attributes["class"] = $class; |
||
| 46 | $attributes["role"] = $role; |
||
| 47 | |||
| 48 | // Initialize the parameters. |
||
| 49 | $innerHTML = "\n" . implode("\n", $buttons) . "\n"; |
||
| 50 | |||
| 51 | // Return the HTML. |
||
| 52 | return self::bootstrapHTMLElement("div", $innerHTML, $attributes); |
||
| 53 | } |
||
| 54 | |||
| 56 |