xref: /webtrees/resources/views/modules/clippings/show.phtml (revision 71378461661e7642e52abe7d41c9cfffb3e5369b)
1*71378461SGreg Roach<?php use Fisharebest\Webtrees\Http\RequestHandlers\ModuleAction;
2*71378461SGreg Roachuse Fisharebest\Webtrees\I18N; ?>
3dd6b2bfcSGreg Roach
4dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
5dd6b2bfcSGreg Roach
6dd6b2bfcSGreg Roach<p>
7dd6b2bfcSGreg Roach    <?= I18N::translate('The clippings cart allows you to take extracts from this family tree and download them as a GEDCOM file.') ?>
8dd6b2bfcSGreg Roach</p>
9dd6b2bfcSGreg Roach
10dd6b2bfcSGreg Roach<?php if (empty($records)) : ?>
11dd6b2bfcSGreg Roach<p>
12dd6b2bfcSGreg Roach    <?= I18N::translate('Your clippings cart is empty.') ?>
13dd6b2bfcSGreg Roach</p>
14dd6b2bfcSGreg Roach<?php else : ?>
15dd6b2bfcSGreg Roach    <table class="table wt-facts-table">
16dd6b2bfcSGreg Roach        <thead>
17dd6b2bfcSGreg Roach            <tr>
18dd6b2bfcSGreg Roach                <th><?= I18N::translate('Record') ?></th>
19dd6b2bfcSGreg Roach                <th><?= I18N::translate('Remove') ?></th>
20dd6b2bfcSGreg Roach            </tr>
21dd6b2bfcSGreg Roach        </thead>
22dd6b2bfcSGreg Roach        <tbody>
23dd6b2bfcSGreg Roach            <?php foreach ($records as $record) : ?>
24dd6b2bfcSGreg Roach                <tr>
25dd6b2bfcSGreg Roach                    <td>
26dd6b2bfcSGreg Roach                        <?php if ($record::RECORD_TYPE === 'INDI') : ?>
27dd6b2bfcSGreg Roach                        <i class="icon-indis"></i>
28dd6b2bfcSGreg Roach                        <?php elseif ($record::RECORD_TYPE === 'FAM') : ?>
29dd6b2bfcSGreg Roach                        <i class="icon-sfamily"></i>
30dd6b2bfcSGreg Roach                        <?php elseif ($record::RECORD_TYPE === 'SOUR') : ?>
31dd6b2bfcSGreg Roach                        <i class="icon-source"></i>
32dd6b2bfcSGreg Roach                        <?php elseif ($record::RECORD_TYPE === 'REPO') : ?>
33dd6b2bfcSGreg Roach                        <i class="icon-repository"></i>
34dd6b2bfcSGreg Roach                        <?php elseif ($record::RECORD_TYPE === 'NOTE') : ?>
35dd6b2bfcSGreg Roach                        <i class="icon-note"></i>
36dd6b2bfcSGreg Roach                        <?php elseif ($record::RECORD_TYPE === 'OBJE') : ?>
37dd6b2bfcSGreg Roach                        <i class="icon-media"></i>
38dd6b2bfcSGreg Roach                        <?php else : ?>
39dd6b2bfcSGreg Roach                        <i class="icon-clippings"></i>
40dd6b2bfcSGreg Roach                        <?php endif ?>
41dd6b2bfcSGreg Roach
42dd6b2bfcSGreg Roach                        <a href="<?= e($record->url()) ?>">
4339ca88baSGreg Roach                            <?= $record->fullName() ?>
44dd6b2bfcSGreg Roach                        </a>
45dd6b2bfcSGreg Roach                    </td>
46dd6b2bfcSGreg Roach                    <td>
47c0935879SGreg Roach                        <form method="post" action="<?= e(route('module', ['module' => 'clippings', 'action' => 'Remove', 'ged' => $tree->name(), 'xref' => $record->xref()])) ?>">
48dd6b2bfcSGreg Roach                            <?= csrf_field() ?>
49dd6b2bfcSGreg Roach                            <button type="submit" class="btn btn-link" title="<?= I18N::translate('Remove') ?>">
50dd6b2bfcSGreg Roach                                <i class="icon-remove"></i>
51dd6b2bfcSGreg Roach                            </button>
52dd6b2bfcSGreg Roach                        </form>
53dd6b2bfcSGreg Roach                    </td>
54dd6b2bfcSGreg Roach                </tr>
55dd6b2bfcSGreg Roach            <?php endforeach ?>
56dd6b2bfcSGreg Roach        </tbody>
57dd6b2bfcSGreg Roach    </table>
58dd6b2bfcSGreg Roach<?php endif ?>
59