1ce42304aSGreg Roach<?php 2ce42304aSGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 5ce42304aSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel; 6ce42304aSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\DataFixSelect; 76fd01894SGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ManageTrees; 8ce42304aSGreg Roachuse Fisharebest\Webtrees\I18N; 9ce42304aSGreg Roachuse Fisharebest\Webtrees\Module\ModuleDataFixInterface; 10ce42304aSGreg Roachuse Fisharebest\Webtrees\Tree; 11ce42304aSGreg Roachuse Illuminate\Support\Collection; 12ce42304aSGreg Roach 13ce42304aSGreg Roach/** 1436779af1SGreg Roach * @var Collection<int,ModuleDataFixInterface> $data_fixes 15ce42304aSGreg Roach * @var string $latest_version 16ce42304aSGreg Roach * @var string $title 17ce42304aSGreg Roach * @var Tree $tree 18ce42304aSGreg Roach */ 19ce42304aSGreg Roach 20ce42304aSGreg Roach?> 21ce42304aSGreg Roach 226fd01894SGreg Roach<?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), route(ManageTrees::class, ['tree' => $tree->name()]) => I18N::translate('Manage family trees'), $title]]) ?> 23ce42304aSGreg Roach 24ce42304aSGreg Roach<h1><?= $title ?></h1> 25ce42304aSGreg Roach 26ce42304aSGreg Roach<form method="post" action="<?= e(route(DataFixSelect::class, ['tree' => $tree->name()])) ?>"> 279e3c2cf9SGreg Roach <div class="row mb-3"> 28ce42304aSGreg Roach <label class="col-sm-3 col-form-label" for="data_fix"> 29ce42304aSGreg Roach <?= I18N::translate('Data fix') ?> 30ce42304aSGreg Roach </label> 31ce42304aSGreg Roach <div class="col-sm-9"> 324b9213b3SGreg Roach <select class="form-select" id="data_fix" name="data_fix" type="text" required="required"> 33154f55eeSGreg Roach <option value=""><?= I18N::translate('<select>') ?></option> 34ce42304aSGreg Roach <?php foreach ($data_fixes as $data_fix) : ?> 35ce42304aSGreg Roach <option value="<?= $data_fix->name() ?>"> 36ce42304aSGreg Roach <?= $data_fix->title() ?> 37ce42304aSGreg Roach </option> 38ce42304aSGreg Roach <?php endforeach ?> 39ce42304aSGreg Roach </select> 40ce42304aSGreg Roach </div> 41ce42304aSGreg Roach </div> 42ce42304aSGreg Roach 439e3c2cf9SGreg Roach <div class="row mb-3"> 44ce42304aSGreg Roach <div class="col-sm-3"> 45ce42304aSGreg Roach </div> 46ce42304aSGreg Roach 47ce42304aSGreg Roach <div class="col-sm-9"> 48ce42304aSGreg Roach <button class="btn btn-primary" type="submit"> 49ce42304aSGreg Roach <?= view('icons/save') ?> 50ce42304aSGreg Roach <?= I18N::translate('next') ?> 51ce42304aSGreg Roach </button> 52ce42304aSGreg Roach </div> 53ce42304aSGreg Roach </div> 5481443e3cSGreg Roach 5581443e3cSGreg Roach <?= csrf_field() ?> 56ce42304aSGreg Roach</form> 57