| Conditions | 3 |
| Paths | 4 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | final protected function adminBSBColor($name, $code, $output) { |
||
| 35 | |||
| 36 | // Initialize the parameters. |
||
| 37 | $_name = self::fixColor($name, ""); |
||
| 38 | $_code = null !== $code ? $code : "500"; |
||
| 39 | |||
| 40 | // Return the HTML. |
||
| 41 | return "hex" === $output ? DefaultColorProvider::getColors()[$_name][$_code] : "col-" . $_name; |
||
| 42 | } |
||
| 43 | } |
||
| 44 |