xref: /webtrees/resources/views/components/select-location.phtml (revision 83c91e47e8062fedee3ea4cf18b5828ff8995aac)
1<?php
2
3use Fisharebest\Webtrees\Http\RequestHandlers\AbstractSelect2Handler;
4use Fisharebest\Webtrees\Http\RequestHandlers\Select2Location;
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 select2 <?= $class ?? '' ?>"
24        data-ajax--delay="<?= e(AbstractSelect2Handler::AJAX_DELAY) ?>"
25        data-minimum-input-length="<?= e(AbstractSelect2Handler::MINIMUM_INPUT_LENGTH) ?>"
26        data-ajax--type="POST"
27        data-ajax--url="<?= e(route(Select2Location::class, ['tree' => $tree->name(), 'at' => $at])) ?>"
28        data-allow-clear="true"
29        data-placeholder=""
30        id="<?= e($id ?? $name) ?>"
31        name="<?= e($name) ?>"
32    <?= ($disabled ?? false) ? 'disabled' : '' ?>
33    <?= ($required ?? false) ? 'required' : '' ?>
34        style="width:100%"
35>
36    <?php if (($location ?? null) instanceof Location) : ?>
37        <option value="<?= e($at . $location->xref() . $at) ?>">
38            <?= view('selects/location', ['location' => $location]) ?>
39        </option>
40    <?php else : ?>
41        <option value="">&nbsp;</option>
42    <?php endif ?>
43</select>
44