1f91b18ebSGreg Roach<?php 2f91b18ebSGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 536779af1SGreg Roachuse Fisharebest\Webtrees\I18N; 636779af1SGreg Roach 7f91b18ebSGreg Roach/** 8f91b18ebSGreg Roach * @var string|null $class 9f91b18ebSGreg Roach * @var string|null $id 10f91b18ebSGreg Roach * @var string $name 11f91b18ebSGreg Roach * @var mixed $selected 1209482a55SGreg Roach * @var array<string> $options 13f91b18ebSGreg Roach */ 14f91b18ebSGreg Roach 15f91b18ebSGreg Roach?> 16f91b18ebSGreg Roach 17f91b18ebSGreg Roach<select 1861275c55SJonathan Jaubart class="form-select <?= $class ?? '' ?>" 19f91b18ebSGreg Roach name="<?= e($name) ?>" 20f91b18ebSGreg Roach id="<?= e($id ?? $name) ?>" 21f91b18ebSGreg Roach> 22f91b18ebSGreg Roach <?php foreach ($options as $n) : ?> 23f91b18ebSGreg Roach <option value="<?= (int) $n ?>" <?= (int) $n === (int) $selected ? 'selected' : '' ?>> 24f91b18ebSGreg Roach <?= I18N::number($n) ?> 25f91b18ebSGreg Roach </option> 26f91b18ebSGreg Roach <?php endforeach ?> 27f91b18ebSGreg Roach</select> 28