Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | function displayHelp($text, $wizardStyle) { |
||
23 | if ($wizardStyle) { |
||
24 | $wizardClass = "wizard_visible"; |
||
25 | } else { |
||
26 | $wizardClass = "wizard_hidden"; |
||
27 | } |
||
28 | $content = "<img src='../resources/images/icons/Tabler/info-square-rounded-filled-blue.svg' class='wizard_icon'><div class='$wizardClass'>".$text."</div>"; |
||
29 | print $content; |
||
30 | } |
||
32 |