summaryrefslogtreecommitdiff
path: root/resources/views/place-hierarchy.phtml
blob: 8e036516c50451ae02f7a0c5f93bc3638ac72ac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php

declare(strict_types=1);

use Fisharebest\Webtrees\I18N;
use Fisharebest\Webtrees\Place;

/**
 * @var string              $col_class
 * @var array<array<Place>> $columns
 */

?>

<div class="<?= $col_class ?> list_table">
    <div class="row">
        <span class="col wt-page-options-label me-1">
            <?= I18N::translate('Place hierarchy') ?>
        </span>
    </div>
    <div class="row">
        <?php foreach ($columns as $column) : ?>
            <ul class="col wt-page-options-value me-1 list-unstyled">
                <?php foreach ($column as $item) : ?>
                    <li>
                        <a href="<?= e($item->url()) ?>"><?= $item->placeName() ?></a>
                    </li>
                <?php endforeach ?>
            </ul>
        <?php endforeach ?>
    </div>
</div>