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