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