1<?php 2 3use Fisharebest\Webtrees\Http\RequestHandlers\AbstractTomSelectHandler; 4use Fisharebest\Webtrees\Http\RequestHandlers\TomSelectLocation; 5use Fisharebest\Webtrees\Location; 6use Fisharebest\Webtrees\Tree; 7 8/** 9 * @var string $at "@" or "" (or unset). 10 * @var Location|null $location 11 * @var string|null $class 12 * @var string|null $id 13 * @var string $name 14 * @var Tree $tree 15 */ 16 17$at = $at ?? ''; 18 19?> 20 21<select 22 autocomplete="off" 23 class="form-select tom-select <?= $class ?? '' ?>" 24 data-url="<?= e(route(TomSelectLocation::class, ['tree' => $tree->name(), 'at' => $at])) ?>" 25 id="<?= e($id ?? $name) ?>" 26 name="<?= e($name) ?>" 27 <?= ($disabled ?? false) ? 'disabled="disabled"' : '' ?> 28 <?= ($required ?? false) ? 'required="required"' : '' ?> 29> 30 <?php if (($location ?? null) instanceof Location) : ?> 31 <option value="<?= e($at . $location->xref() . $at) ?>"> 32 <?= view('selects/location', ['location' => $location]) ?> 33 </option> 34 <?php else : ?> 35 <option value=""> </option> 36 <?php endif ?> 37</select> 38