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