1d70512abSGreg Roach<?php 2d70512abSGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 5d70512abSGreg Roachuse Fisharebest\Webtrees\I18N; 6e24053e5SGreg Roachuse Fisharebest\Webtrees\View; 7e24053e5SGreg Roachuse Illuminate\Support\Collection; 8e24053e5SGreg Roach 9e24053e5SGreg Roach/** 10dc270d8cSGreg Roach * @var int $id 1101221f27SGreg Roach * @var int $limit_low 1201221f27SGreg Roach * @var int $limit_high 1336779af1SGreg Roach * @var Collection<int,object> $yahrzeits 14e24053e5SGreg Roach */ 15d70512abSGreg Roach 16d70512abSGreg Roach?> 17dd6b2bfcSGreg Roach 18e24053e5SGreg Roach<?php foreach ($yahrzeits as $n => $yahrzeit) : ?> 1901221f27SGreg Roach <?php if ($n === $limit_low && $yahrzeits->count() > $limit_high) : ?> 20e24053e5SGreg Roach <div> 21e24053e5SGreg Roach <button class="btn btn-sm btn-secondary" id="show-more-<?= e($id) ?>"> 22e24053e5SGreg Roach <?= view('icons/add') ?> 23e24053e5SGreg Roach <?= /* I18N: button label */ I18N::translate('show more') ?> 24e24053e5SGreg Roach </button> 25e24053e5SGreg Roach </div> 26cb867caaSGreg Roach 27cb867caaSGreg Roach <?php View::push('javascript') ?> 28cb867caaSGreg Roach <script> 29cb867caaSGreg Roach document.getElementById("show-more-<?= e($id) ?>").addEventListener("click", function (ev) { 30cb867caaSGreg Roach document.querySelectorAll("#block-<?= e($id) ?> .d-none").forEach(function (el) { 31cb867caaSGreg Roach el.classList.remove("d-none"); 32cb867caaSGreg Roach }); 33cb867caaSGreg Roach ev.target.parentNode.removeChild(ev.target); 34cb867caaSGreg Roach }); 35cb867caaSGreg Roach </script> 36b4c5c807SGreg Roach <?php View::endpush() ?> 37e24053e5SGreg Roach <?php endif ?> 38e24053e5SGreg Roach 3901221f27SGreg Roach <div class="<?= $n >= $limit_low && $yahrzeits->count() > $limit_high ? 'd-none' : '' ?>"> 407a821518SGreg Roach <a href="<?= e($yahrzeit->individual->url()) ?>" class="list_item"> 4139ca88baSGreg Roach <?= $yahrzeit->individual->fullName() ?> 42dd6b2bfcSGreg Roach </a> 4308362db4SGreg Roach <small><?= view('icons/sex', ['sex' => $yahrzeit->individual->sex()]) ?></small> 44dd6b2bfcSGreg Roach <div class="indent"> 4566ecd017SGreg Roach <?= $yahrzeit->fact->date()->display($yahrzeit->individual->tree()) ?>, 4666ecd017SGreg Roach <?= $yahrzeit->yahrzeit_date->display($yahrzeit->individual->tree()) ?>, 47dd6b2bfcSGreg Roach <?= I18N::translate('%s year anniversary', $yahrzeit->fact->anniv) ?> 48dd6b2bfcSGreg Roach </div> 49e24053e5SGreg Roach </div> 50dd6b2bfcSGreg Roach<?php endforeach ?> 51