15229eadeSGreg Roach<?php 25229eadeSGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 55229eadeSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ReorderMediaAction; 65229eadeSGreg Roachuse Fisharebest\Webtrees\I18N; 77c2c99faSGreg Roachuse Fisharebest\Webtrees\Individual; 85229eadeSGreg Roachuse Fisharebest\Webtrees\View; 95229eadeSGreg Roach 107c2c99faSGreg Roach/** 117c2c99faSGreg Roach * @var Individual $individual 127c2c99faSGreg Roach * @var string $title 137c2c99faSGreg Roach */ 147c2c99faSGreg Roach 155229eadeSGreg Roach?> 16dd6b2bfcSGreg Roach 17dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2> 18dd6b2bfcSGreg Roach 197c2c99faSGreg Roach<form method="post" action="<?= e(route(ReorderMediaAction::class, ['tree' => $individual->tree()->name(), 'xref' => $individual->xref()])) ?>" class="wt-page-content"> 20dd6b2bfcSGreg Roach <div class="wt-sortable-list"> 218d0ebef0SGreg Roach <?php foreach ($individual->facts(['OBJE']) as $fact) : ?> 2292044e0dSGreg Roach <div class="card my-2 wt-sortable-item"> 23905ab80aSGreg Roach <input type="hidden" name="order[]" value="<?= $fact->id() ?>"> 2475b444f7SGreg Roach <div class="card-header"> 2592044e0dSGreg Roach <?= view('edit/reorder-card-header', ['title' => $fact->target()->fullName()]) ?> 2675b444f7SGreg Roach </div> 2792044e0dSGreg Roach 28dd6b2bfcSGreg Roach <div class="card-body"> 297b0d562eSGreg Roach <?= $fact->target()->displayImage(100, 100, 'contain', []) ?> 30dd6b2bfcSGreg Roach </div> 31dd6b2bfcSGreg Roach </div> 32dd6b2bfcSGreg Roach <?php endforeach ?> 33dd6b2bfcSGreg Roach </div> 34dd6b2bfcSGreg Roach 35dd6b2bfcSGreg Roach <p> 36dd6b2bfcSGreg Roach <button class="btn btn-primary" type="submit"> 37d993d560SGreg Roach <?= view('icons/save') ?> 38dd6b2bfcSGreg Roach <?= /* I18N: A button label. */ I18N::translate('save') ?> 39dd6b2bfcSGreg Roach </button> 40dd6b2bfcSGreg Roach 41dd6b2bfcSGreg Roach <a class="btn btn-secondary" href="<?= e($individual->url()) ?>"> 42d993d560SGreg Roach <?= view('icons/cancel') ?> 43dd6b2bfcSGreg Roach <?= /* I18N: A button label. */ I18N::translate('cancel') ?> 44dd6b2bfcSGreg Roach </a> 45dd6b2bfcSGreg Roach </p> 4681443e3cSGreg Roach 4781443e3cSGreg Roach <?= csrf_field() ?> 48dd6b2bfcSGreg Roach</form> 49dd6b2bfcSGreg Roach 50dd6b2bfcSGreg Roach<?php View::push('javascript') ?> 51dd6b2bfcSGreg Roach<script> 5275b444f7SGreg Roach new Sortable(document.querySelector(".wt-sortable-list"), { 5392044e0dSGreg Roach handle: ".card-header", 5475b444f7SGreg Roach }); 55dd6b2bfcSGreg Roach</script> 56dd6b2bfcSGreg Roach<?php View::endpush() ?> 57