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