blob: 4c850a117b1000bf6c5884cee475cd9028c47682 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<?php
declare(strict_types=1);
use Fisharebest\Webtrees\Fact;
use Fisharebest\Webtrees\I18N;
use Fisharebest\Webtrees\Individual;
use Fisharebest\Webtrees\Registry;
use Fisharebest\Webtrees\View;
use Illuminate\Support\Collection;
/**
* @var Collection<int,Fact> $facts
* @var int $id
* @var int $limit_low
* @var int $limit_high
*/
?>
<?php foreach ($facts as $n => $fact) : ?>
<?php if ($n === $limit_low && $facts->count() > $limit_high) : ?>
<div>
<button class="btn btn-sm btn-secondary" id="show-more-<?= e($id) ?>">
<?= view('icons/add') ?>
<?= /* I18N: button label */ I18N::translate('show more') ?>
</button>
</div>
<?php View::push('javascript') ?>
<script>
document.getElementById("show-more-<?= e($id) ?>").addEventListener("click", function (ev) {
document.querySelectorAll("#block-<?= e($id) ?> .d-none").forEach(function (el) {
el.classList.remove("d-none");
});
ev.target.parentNode.removeChild(ev.target);
});
</script>
<?php View::endpush() ?>
<?php endif ?>
<div class="<?= $n >= $limit_low && $facts->count() > $limit_high ? 'd-none' : '' ?>">
<?php $record = $fact->record(); ?>
<a href="<?= e($record->url()) ?>" class="list_item">
<?= $record->fullName() ?>
</a>
<?php if ($record instanceof Individual) : ?>
<?= view('icons/sex', ['sex' => $record->sex()]) ?>
<?php endif ?>
<div class="indent">
<?= $fact->label() . ' — ' . $fact->date()->display($record->tree(), null, true) ?>
<?php if (PHP_INT_SIZE >= 8 || $fact->date()->gregorianYear() > 1901) : ?>
(<?= Registry::timestampFactory()->now()->subtractYears($fact->anniv)->diffForHumans() ?>)
<?php else : ?>
(<?= I18N::plural('%s year', '%s years', $fact->anniv, I18N::number($fact->anniv)) ?>)
<?php endif ?>
<?php if ($fact->place()->gedcomName() !== '') : ?>
— <?= $fact->place()->shortName(true) ?>
<?php endif ?>
</div>
</div>
<?php endforeach ?>
|