xref: /webtrees/resources/views/admin/fix-level-0-media.phtml (revision 71d313c576f7a846533c6ef1a010063a6c9ecafc)
1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
2dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\View; ?>
3dd6b2bfcSGreg Roach
4dd6b2bfcSGreg Roach<?= view('components/breadcrumbs', ['links' => [route('admin-control-panel') => I18N::translate('Control panel'), $title]]) ?>
5dd6b2bfcSGreg Roach
6dd6b2bfcSGreg Roach<h1><?= $title ?></h1>
7dd6b2bfcSGreg Roach
8dd6b2bfcSGreg Roach<p>
9dd6b2bfcSGreg Roach    <?= I18N::translate('If a media object is linked to an individual, when it should be linked to a fact or event, then you can move it to the correct location.') ?>
10dd6b2bfcSGreg Roach</p>
11dd6b2bfcSGreg Roach
12*71d313c5SGreg Roach<table
13*71d313c5SGreg Roach    class="table table-bordered table-sm table-hover datatables wt-fix-table"
14*71d313c5SGreg Roach    <?= view('lists/datatables-attributes') ?>
15*71d313c5SGreg Roach    data-ajax="<?= e(json_encode(['url' => route('admin-fix-level-0-media-data')])) ?>"
16*71d313c5SGreg Roach    data-server-side="true"
17*71d313c5SGreg Roach>
18dd6b2bfcSGreg Roach    <caption class="sr-only">
19dd6b2bfcSGreg Roach        <?= I18N::translate('Media objects') ?>
20dd6b2bfcSGreg Roach    </caption>
21dd6b2bfcSGreg Roach    <thead class="thead-dark">
22dd6b2bfcSGreg Roach        <tr>
23dd6b2bfcSGreg Roach            <th data-sortable="false"><?= I18N::translate('Family tree') ?></th>
24dd6b2bfcSGreg Roach            <th data-sortable="false"><?= I18N::translate('Media object') ?></th>
25dd6b2bfcSGreg Roach            <th data-sortable="false"><?= I18N::translate('Title') ?></th>
26dd6b2bfcSGreg Roach            <th data-sortable="false"><?= I18N::translate('Individual') ?></th>
27dd6b2bfcSGreg Roach            <th data-sortable="false"><?= I18N::translate('Facts and events') ?></th>
28dd6b2bfcSGreg Roach        </tr>
29dd6b2bfcSGreg Roach    </thead>
30dd6b2bfcSGreg Roach</table>
31dd6b2bfcSGreg Roach
32dd6b2bfcSGreg Roach<?php View::push('javascript') ?>
33dd6b2bfcSGreg Roach<script>
34dd6b2bfcSGreg Roach  'use strict';
35dd6b2bfcSGreg Roach
36dd6b2bfcSGreg Roach  // If we click on a button, post the request and reload the table
37dd6b2bfcSGreg Roach  document.querySelector(".wt-fix-table").onclick = function (event) {
38dd6b2bfcSGreg Roach    let element = event.target;
39dd6b2bfcSGreg Roach    if (element.classList.contains("wt-fix-button")) {
40dd6b2bfcSGreg Roach      event.stopPropagation();
41dd6b2bfcSGreg Roach      if (confirm(element.dataset.confirm)) {
42dd6b2bfcSGreg Roach        $.ajax({
43dd6b2bfcSGreg Roach          data: {
44dd6b2bfcSGreg Roach            "fact_id":   element.dataset.factId,
45dd6b2bfcSGreg Roach            "indi_xref": element.dataset.individualXref,
46dd6b2bfcSGreg Roach            "obje_xref": element.dataset.mediaXref,
47dd6b2bfcSGreg Roach            "tree_id":   element.dataset.treeId
48dd6b2bfcSGreg Roach          },
49dd6b2bfcSGreg Roach          method: "POST",
50dd6b2bfcSGreg Roach          url: <?= json_encode(route('admin-fix-level-0-media-action')) ?>
51dd6b2bfcSGreg Roach        }).done(function () {
52dd6b2bfcSGreg Roach          $(".wt-fix-table").DataTable().ajax.reload(null, false);
53dd6b2bfcSGreg Roach        });
54dd6b2bfcSGreg Roach      }
55dd6b2bfcSGreg Roach    }
56dd6b2bfcSGreg Roach  };
57dd6b2bfcSGreg Roach</script>
58dd6b2bfcSGreg Roach<?php View::endpush() ?>
59