Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | protected function adminBSBIcon(?string $name, ?string $style, string $class = null): string { |
||
34 | |||
35 | $attributes = []; |
||
36 | |||
37 | $attributes["class"] = ["material-icons", $class]; |
||
38 | $attributes["style"] = $style; |
||
39 | |||
40 | $innerHTML = null !== $name ? $name : "home"; |
||
41 | |||
42 | return static::coreHTMLElement("i", $innerHTML, $attributes); |
||
43 | } |
||
44 | } |
||
45 |