xref: /webtrees/resources/views/components/select-place.phtml (revision ca1e6d47754d1d3667ac160664ddb033e3d5755e)
1a60f9d1cSGreg Roach<?php
2a60f9d1cSGreg Roach
310e06497SGreg Roachdeclare(strict_types=1);
410e06497SGreg Roach
5c8d78f19SGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\TomSelectPlace;
6a60f9d1cSGreg Roachuse Fisharebest\Webtrees\Place;
7a60f9d1cSGreg Roachuse Fisharebest\Webtrees\Tree;
8a60f9d1cSGreg Roach
9a60f9d1cSGreg Roach/**
10a60f9d1cSGreg Roach * @var Place|null  $place
11a60f9d1cSGreg Roach * @var string|null $class
12a60f9d1cSGreg Roach * @var string|null $id
13a60f9d1cSGreg Roach * @var string      $name
14a60f9d1cSGreg Roach * @var Tree        $tree
15a60f9d1cSGreg Roach */
16a60f9d1cSGreg Roach
17a60f9d1cSGreg Roach?>
18a60f9d1cSGreg Roach
19a60f9d1cSGreg Roach<select
20a60f9d1cSGreg Roach    autocomplete="off"
21c8d78f19SGreg Roach    class="form-select tom-select <?= $class ?? '' ?>"
2251b993abSGreg Roach    data-url="<?= e(route(TomSelectPlace::class, ['tree' => $tree->name(), 'at' => ''])) ?>"
23a60f9d1cSGreg Roach    id="<?= e($id ?? $name) ?>"
24a60f9d1cSGreg Roach    name="<?= e($name) ?>"
25c8d78f19SGreg Roach    <?= ($disabled ?? false) ? 'disabled="disabled"' : '' ?>
26c8d78f19SGreg Roach    <?= ($required ?? false) ? 'required="required"' : '' ?>
27a60f9d1cSGreg Roach>
28*ca1e6d47SGreg Roach    <?php if (($place ?? null) instanceof Place && $place->id() !== 0) : ?>
29*ca1e6d47SGreg Roach        <option value="<?= $place->id() ?>">
30a60f9d1cSGreg Roach            <?= view('selects/place', ['place' => $place]) ?>
31a60f9d1cSGreg Roach        </option>
32a60f9d1cSGreg Roach    <?php else : ?>
33027478c2SGreg Roach        <option value="">&nbsp;</option>
34a60f9d1cSGreg Roach    <?php endif ?>
35a60f9d1cSGreg Roach</select>
36