xref: /webtrees/resources/views/modules/clippings/show.phtml (revision 81443e3cbe4eef5ccdcf8dae716a7e35f7417b60)
13cfcc809SGreg Roach<?php
23cfcc809SGreg Roach
37c2c99faSGreg Roachuse Fisharebest\Webtrees\GedcomRecord;
4d70512abSGreg Roachuse Fisharebest\Webtrees\I18N;
57c2c99faSGreg Roachuse Fisharebest\Webtrees\Tree;
67c2c99faSGreg Roach
77c2c99faSGreg Roach/**
87c2c99faSGreg Roach * @var string              $module
97c2c99faSGreg Roach * @var array<GedcomRecord> $records
107c2c99faSGreg Roach * @var string              $title
117c2c99faSGreg Roach * @var Tree $tree
127c2c99faSGreg Roach */
13d70512abSGreg Roach
14d70512abSGreg Roach?>
15dd6b2bfcSGreg Roach
16dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
17dd6b2bfcSGreg Roach
18dd6b2bfcSGreg Roach<p>
19dd6b2bfcSGreg Roach    <?= I18N::translate('The clippings cart allows you to take extracts from this family tree and download them as a GEDCOM file.') ?>
20dd6b2bfcSGreg Roach</p>
21dd6b2bfcSGreg Roach
22075d1a05SGreg Roach<?php if ($records === []) : ?>
23dd6b2bfcSGreg Roach<p>
24dd6b2bfcSGreg Roach    <?= I18N::translate('Your clippings cart is empty.') ?>
25dd6b2bfcSGreg Roach</p>
26dd6b2bfcSGreg Roach<?php else : ?>
27dd6b2bfcSGreg Roach    <table class="table wt-facts-table">
28dd6b2bfcSGreg Roach        <thead>
29dd6b2bfcSGreg Roach            <tr>
30dd6b2bfcSGreg Roach                <th><?= I18N::translate('Record') ?></th>
31dd6b2bfcSGreg Roach                <th><?= I18N::translate('Remove') ?></th>
32dd6b2bfcSGreg Roach            </tr>
33dd6b2bfcSGreg Roach        </thead>
34dd6b2bfcSGreg Roach        <tbody>
35dd6b2bfcSGreg Roach            <?php foreach ($records as $record) : ?>
36dd6b2bfcSGreg Roach                <tr>
37dd6b2bfcSGreg Roach                    <td>
3808362db4SGreg Roach                        <?= view('icons/record', ['record' => $record]) ?>
39dd6b2bfcSGreg Roach
40dd6b2bfcSGreg Roach                        <a href="<?= e($record->url()) ?>">
4139ca88baSGreg Roach                            <?= $record->fullName() ?>
42dd6b2bfcSGreg Roach                        </a>
43dd6b2bfcSGreg Roach                    </td>
44dd6b2bfcSGreg Roach                    <td>
4577b78a63SRichard Cissée                        <form method="post" action="<?= e(route('module', ['module' => $module, 'action' => 'Remove', 'tree' => $tree->name(), 'xref' => $record->xref()])) ?>">
46dd6b2bfcSGreg Roach                            <button type="submit" class="btn btn-link" title="<?= I18N::translate('Remove') ?>">
4708362db4SGreg Roach                                <?= view('icons/delete') ?>
48dd6b2bfcSGreg Roach                            </button>
49*81443e3cSGreg Roach
50*81443e3cSGreg Roach                            <?= csrf_field() ?>
51dd6b2bfcSGreg Roach                        </form>
52dd6b2bfcSGreg Roach                    </td>
53dd6b2bfcSGreg Roach                </tr>
54dd6b2bfcSGreg Roach            <?php endforeach ?>
55dd6b2bfcSGreg Roach        </tbody>
56dd6b2bfcSGreg Roach    </table>
57dd6b2bfcSGreg Roach<?php endif ?>
58