Files
tsv08kulmbach-website/app/components/person-grid.php

47 lines
1.5 KiB
PHP
Raw Normal View History

<?php
declare(strict_types=1);
/**
* Ansprechpartner-Grid aus data/ansprechpartner.json (Single Source of Truth).
* Alle Props optional:
* $departments array nur diese Abteilungen zeigen (z. B. ['Herrenfußball','Damenfußball']).
* $title string Überschrift überschreiben (Default aus JSON).
* $intro string Intro-Text überschreiben (Default aus JSON; '' = ausblenden).
* $anchor string Sektions-ID (Default 'ansprechpartner').
* $tinted bool aufgehelltes Vollbreite-Band (Default true).
*/
$data = json_load('ansprechpartner');
$anchor = $anchor ?? 'ansprechpartner';
$tinted = $tinted ?? true;
$title = $title ?? $data['title'];
$intro = $intro ?? ($data['intro'] ?? '');
$persons = $data['persons'] ?? [];
if (!empty($departments)) {
$persons = array_values(array_filter(
$persons,
static fn (array $p): bool => in_array($p['department'] ?? '', $departments, true)
));
}
if ($persons === []) {
return;
}
?>
<section class="section persons<?= $tinted ? ' section--tinted' : '' ?>" id="<?= e($anchor) ?>">
<div class="container">
<h2><?= e($title) ?></h2>
<?php if ($intro !== ''): ?>
<p class="persons__intro"><?= e($intro) ?></p>
<?php endif; ?>
<ul class="persons__grid">
<?php foreach ($persons as $person): ?>
<li>
<?php component('person-card', ['person' => $person]); ?>
</li>
<?php endforeach; ?>
</ul>
</div>
</section>