blob: 7a3fc7d43f8a9dddb131b2adf4934681ec096cd2 (
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
|
<?php
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>
|