xref: /webtrees/resources/views/modules/places/event-sidebar.phtml (revision 809f3a577a6d0ca1e22ef9a8d7db0b1a298c31c8)
1<?php
2
3use Fisharebest\Webtrees\Place;
4
5/**
6 * @var string $name
7 * @var Place $place
8 * @var string $tag
9 * @var string $url
10 * @var string $value
11 * @var string $date
12 */
13
14?>
15
16<div class="label">
17    <?= $tag ?>
18</div>
19
20<?php if ($date !== '') : ?>
21  <div>
22      <?= $date ?>
23  </div>
24<?php endif ?>
25
26<?php if ($url !== '') : ?>
27    <a href="<?= e($url) ?>">
28        <?= $name ?>
29    </a>
30<?php endif ?>
31
32<?php if ($value !== '') : ?>
33    <span>
34        <?= $value ?>
35    </span>
36<?php endif ?>
37
38<?php if ($place->gedcomName() !== '') : ?>
39    <div>
40        <?= $place->fullName(true) ?>
41    </div>
42<?php endif ?>
43