xref: /webtrees/resources/views/edit/reorder-media.phtml (revision 92044e0d3ee7691ad1433867c218bd41de68960e)
15229eadeSGreg Roach<?php
25229eadeSGreg Roach
35229eadeSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ReorderMediaAction;
45229eadeSGreg Roachuse Fisharebest\Webtrees\I18N;
55229eadeSGreg Roachuse Fisharebest\Webtrees\View;
65229eadeSGreg Roach
75229eadeSGreg Roach?>
8dd6b2bfcSGreg Roach
9dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
10dd6b2bfcSGreg Roach
11aabcb63cSGreg Roach<form method="post" action="<?= e(route(ReorderMediaAction::class, ['tree' => $tree->name(), 'xref' => $individual->xref()])) ?>" class="wt-page-content">
12dd6b2bfcSGreg Roach    <?= csrf_field() ?>
1383615acfSGreg Roach
14dd6b2bfcSGreg Roach    <div class="wt-sortable-list">
158d0ebef0SGreg Roach        <?php foreach ($individual->facts(['OBJE']) as $fact) : ?>
16*92044e0dSGreg Roach            <div class="card my-2 wt-sortable-item">
17905ab80aSGreg Roach                <input type="hidden" name="order[]" value="<?= $fact->id() ?>">
1875b444f7SGreg Roach                <div class="card-header">
19*92044e0dSGreg Roach                    <?= view('edit/reorder-card-header', ['title' => $fact->target()->fullName()]) ?>
2075b444f7SGreg Roach                </div>
21*92044e0dSGreg Roach
22dd6b2bfcSGreg Roach                <div class="card-body">
23b2c011d7SGreg Roach                    <?= $fact->target()->displayImage(100, 100, 'contain') ?>
24dd6b2bfcSGreg Roach                </div>
25dd6b2bfcSGreg Roach            </div>
26dd6b2bfcSGreg Roach        <?php endforeach ?>
27dd6b2bfcSGreg Roach    </div>
28dd6b2bfcSGreg Roach
29dd6b2bfcSGreg Roach    <p>
30dd6b2bfcSGreg Roach        <button class="btn btn-primary" type="submit">
31d993d560SGreg Roach            <?= view('icons/save') ?>
32dd6b2bfcSGreg Roach            <?= /* I18N: A button label. */ I18N::translate('save') ?>
33dd6b2bfcSGreg Roach        </button>
34dd6b2bfcSGreg Roach
35dd6b2bfcSGreg Roach        <a class="btn btn-secondary" href="<?= e($individual->url()) ?>">
36d993d560SGreg Roach            <?= view('icons/cancel') ?>
37dd6b2bfcSGreg Roach            <?= /* I18N: A button label. */ I18N::translate('cancel') ?>
38dd6b2bfcSGreg Roach        </a>
39dd6b2bfcSGreg Roach    </p>
40dd6b2bfcSGreg Roach</form>
41dd6b2bfcSGreg Roach
42dd6b2bfcSGreg Roach<?php View::push('javascript') ?>
43dd6b2bfcSGreg Roach<script>
4475b444f7SGreg Roach    new Sortable(document.querySelector(".wt-sortable-list"), {
45*92044e0dSGreg Roach        handle: ".card-header",
4675b444f7SGreg Roach    });
47dd6b2bfcSGreg Roach</script>
48dd6b2bfcSGreg Roach<?php View::endpush() ?>
49