1b6c326d8SGreg Roach<?php 2b6c326d8SGreg Roach 310e06497SGreg Roachdeclare(strict_types=1); 410e06497SGreg Roach 5*6232931fSGreg Roachuse Fisharebest\Webtrees\I18N; 6c2ed51d1SGreg Roachuse Fisharebest\Webtrees\Submitter; 7c8d78f19SGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\TomSelectSubmitter; 8b6c326d8SGreg Roachuse Fisharebest\Webtrees\Tree; 9b6c326d8SGreg Roach 10b6c326d8SGreg Roach/** 1167657255SGreg Roach * @var string $at "@" or "" (or unset). 12c2ed51d1SGreg Roach * @var Submitter|null $submitter 136bdf2178SGreg Roach * @var string|null $class 14b6c326d8SGreg Roach * @var string|null $id 15b6c326d8SGreg Roach * @var string $name 16b6c326d8SGreg Roach * @var Tree $tree 17b6c326d8SGreg Roach */ 18b6c326d8SGreg Roach 1967657255SGreg Roach$at = $at ?? ''; 2067657255SGreg Roach 21b6c326d8SGreg Roach?> 22b6c326d8SGreg Roach 23b6c326d8SGreg Roach<select 24b6c326d8SGreg Roach autocomplete="off" 25c8d78f19SGreg Roach class="form-select tom-select <?= $class ?? '' ?>" 26*6232931fSGreg Roach data-wt-url="<?= e(route(TomSelectSubmitter::class, ['tree' => $tree->name(), 'at' => $at])) ?>" 27*6232931fSGreg Roach data-wt-i18n-no-results="<?= I18N::translate('No results found') ?>" 28b6c326d8SGreg Roach id="<?= e($id ?? $name) ?>" 29b6c326d8SGreg Roach name="<?= e($name) ?>" 30c8d78f19SGreg Roach <?= ($disabled ?? false) ? 'disabled="disabled"' : '' ?> 31c8d78f19SGreg Roach <?= ($required ?? false) ? 'required="required"' : '' ?> 32b6c326d8SGreg Roach> 33c2ed51d1SGreg Roach <?php if (($submitter ?? null) instanceof Submitter) : ?> 3467657255SGreg Roach <option value="<?= e($at . $submitter->xref() . $at) ?>"> 35b6c326d8SGreg Roach <?= view('selects/submitter', ['submitter' => $submitter]) ?> 36b6c326d8SGreg Roach </option> 37b6c326d8SGreg Roach <?php else : ?> 38027478c2SGreg Roach <option value=""> </option> 39b6c326d8SGreg Roach <?php endif ?> 40b6c326d8SGreg Roach</select> 41