blob: 513700f6f20cc9c77c66e5ba89e09f84f0164baa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
/**
* @var bool $important
* @var bool $html
* @var string $text
*/
?>
<span class="tooltip tooltip-icon <? if ($important) echo 'tooltip-important'; ?>"
tabindex="0" aria-label="<?= $html ? htmlReady(strip_tags($text)) : htmlReady($text) ?>">
<span class="tooltip-content"><?= $html ? $text : htmlReady($text) ?></span>
</span>
|