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