Skip to content
Snippets Groups Projects
Select Git revision
  • 7b26c82c50d1a4cfb6bd0675a99d9066a7de6e7a
  • master default protected
  • v1.0
  • v0.1
4 results

plugin.manifest

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    tooltip.php 349 B
    <?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>