xref: /webtrees/resources/views/modules/place-hierarchy/page.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
1a634ddebSGreg Roach<?php
2a634ddebSGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
5a634ddebSGreg Roachuse Fisharebest\Webtrees\I18N;
67bed239cSGreg Roachuse Fisharebest\Webtrees\Place;
7a634ddebSGreg Roachuse Fisharebest\Webtrees\Tree;
8a634ddebSGreg Roach
9a634ddebSGreg Roach/**
104b2f1dbbSGreg Roach * @var string       $alt_link
114b2f1dbbSGreg Roach * @var string       $alt_url
12fc26b4f6SGreg Roach * @var array<Place> $breadcrumbs
13a634ddebSGreg Roach * @var string       $content
144b2f1dbbSGreg Roach * @var Place|null   $current
154b2f1dbbSGreg Roach * @var string       $events_link
167bed239cSGreg Roach * @var Place        $place
174b2f1dbbSGreg Roach * @var string       $title
184b2f1dbbSGreg Roach * @var Tree         $tree
194b2f1dbbSGreg Roach * @var string       $world_url
20a634ddebSGreg Roach */
21a634ddebSGreg Roach
22a634ddebSGreg Roach?>
23a634ddebSGreg Roach
24a634ddebSGreg Roach<div id="place-hierarchy">
25a634ddebSGreg Roach    <div class="container">
26a634ddebSGreg Roach        <h4><?= $title ?></h4>
27a634ddebSGreg Roach        <h5 class="text-center">
284b2f1dbbSGreg Roach            <?php if ($current !== null) : ?>
294b2f1dbbSGreg Roach                <a href="<?= e($world_url) ?>">
30a634ddebSGreg Roach                    <?= I18N::translate('World') ?>
31a634ddebSGreg Roach                </a>
32a634ddebSGreg Roach            <?php else : ?>
33a634ddebSGreg Roach                <?= I18N::translate('World') ?>
34a634ddebSGreg Roach            <?php endif ?>
35a634ddebSGreg Roach
36a634ddebSGreg Roach            <?php foreach ($breadcrumbs as $item) : ?>
37a634ddebSGreg Roach                -
38a634ddebSGreg Roach                <a href="<?= e($item->url()) ?>" dir="auto"><?= $item->placeName() ?></a>
39a634ddebSGreg Roach            <?php endforeach ?>
40a634ddebSGreg Roach
414b2f1dbbSGreg Roach            <?php if ($current !== null) : ?>
42a634ddebSGreg Roach                - <?= $current->placeName() ?>
43a634ddebSGreg Roach            <?php endif ?>
44a634ddebSGreg Roach        </h5>
45f4be870dSGreg Roach
46a634ddebSGreg Roach        <?= $content ?>
47f4be870dSGreg Roach
48a634ddebSGreg Roach        <div class="text-center">
494b2f1dbbSGreg Roach            <?php if ($events_link !== '') : ?>
504b2f1dbbSGreg Roach                <a class="formField" href= <?= e($events_link) ?>>
517bed239cSGreg Roach                    <?= I18N::translate('View table of events occurring in %s', $place->fullName()) ?>
52a634ddebSGreg Roach                </a>
53a634ddebSGreg Roach                |
54a634ddebSGreg Roach            <?php endif ?>
55a634ddebSGreg Roach
564b2f1dbbSGreg Roach            <a href="<?= e($alt_url) ?>">
574b2f1dbbSGreg Roach                <?= $alt_link ?>
58a634ddebSGreg Roach            </a>
59a634ddebSGreg Roach        </div>
60a634ddebSGreg Roach    </div>
61a634ddebSGreg Roach</div>
62a634ddebSGreg Roach
63