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