xref: /webtrees/resources/views/admin/custom-module-info.phtml (revision 1bfef740b3b1a79bb9cd8df9d26bc6c9da617d5a)
1<?php
2
3use Fisharebest\Webtrees\I18N;
4
5?>
6
7<div class="wt-custom-module-info">
8    <?= view('icons/warning') ?>
9    <?= I18N::translate('Custom module') ?>
10    <?php if ($module::CUSTOM_VERSION) : ?>
11        - <?= I18N::translate('Version') ?> <?= $module::CUSTOM_VERSION ?>
12    <?php endif ?>
13    <?php if ($module::CUSTOM_WEBSITE) : ?>
14        -
15        <a href="<?= $module::CUSTOM_WEBSITE ?>">
16            <?= $module::CUSTOM_WEBSITE ?>
17        </a>
18    <?php endif ?>
19</div>
20