summaryrefslogtreecommitdiff
path: root/resources/views/edit/input-addon-calendar.phtml
blob: 77b752f6ae21cb26baf1178d33395dc85ef5077e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

declare(strict_types=1);

use Fisharebest\Webtrees\I18N;

/**
 * @var string $id
 */

?>

<span class="input-group-text">
    <a href="#" onclick="return webtrees.calendarWidget('caldiv<?= e($id) ?>', '<?= e($id) ?>');" title="<?= I18N::translate('Select a date') ?>">
        <?= view('icons/calendar') ?>
        <span class="visually-hidden">
            <?= I18N::translate('Select a date') ?>
        </span>
    </a>
</span>