summaryrefslogtreecommitdiff
path: root/app/Template/board/tooltip_external_links.php
blob: 65331864ff672fe5ea3bcb6df482e038e3621cbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="tooltip-large">
    <table>
        <tr>
            <th class="column-20"><?= t('Type') ?></th>
            <th class="column-70"><?= t('Title') ?></th>
            <th class="column-10"><?= t('Dependency') ?></th>
        </tr>
        <?php foreach ($links as $link): ?>
            <tr>
                <td>
                    <?= $link['type'] ?>
                </td>
                <td>
                    <a href="<?= $link['url'] ?>" target="_blank"><?= $this->text->e($link['title']) ?></a>
                </td>
                <td>
                    <?= $this->text->e($link['dependency_label']) ?>
                </td>
            </tr>
        <?php endforeach ?>
    </table>
</div>