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