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