xref: /webtrees/resources/views/record-page.phtml (revision 0f5fd22fb1857ad87285e5357592434d47b1f3bf)
1*0f5fd22fSGreg Roach<?php
2*0f5fd22fSGreg Roach
3*0f5fd22fSGreg Roachuse Fisharebest\Webtrees\Fact;
4*0f5fd22fSGreg Roachuse Fisharebest\Webtrees\Family;
5*0f5fd22fSGreg Roachuse Fisharebest\Webtrees\GedcomRecord;
6*0f5fd22fSGreg Roachuse Fisharebest\Webtrees\Individual;
7*0f5fd22fSGreg Roachuse Fisharebest\Webtrees\Media;
8*0f5fd22fSGreg Roachuse Fisharebest\Webtrees\Note;
9*0f5fd22fSGreg Roachuse Fisharebest\Webtrees\Source;
10*0f5fd22fSGreg Roachuse Fisharebest\Webtrees\Tree;
11*0f5fd22fSGreg Roachuse Illuminate\Support\Collection;
12*0f5fd22fSGreg Roach
13*0f5fd22fSGreg Roach/**
14*0f5fd22fSGreg Roach * @var Collection<Fact>       $clipboard_facts
15*0f5fd22fSGreg Roach * @var Collection<Family>     $linked_families
16*0f5fd22fSGreg Roach * @var Collection<Individual> $linked_individuals
17*0f5fd22fSGreg Roach * @var Collection<Media>      $linked_media_objects
18*0f5fd22fSGreg Roach * @var Collection<Note>       $linked_notes
19*0f5fd22fSGreg Roach * @var Collection<Source>     $linked_sources
20*0f5fd22fSGreg Roach * @var GedcomRecord           $record
21*0f5fd22fSGreg Roach * @var Tree                   $tree
22*0f5fd22fSGreg Roach */
23*0f5fd22fSGreg Roach
24*0f5fd22fSGreg Roach?>
25*0f5fd22fSGreg Roach
26*0f5fd22fSGreg Roach<?= view('record-page-pending', ['record' => $record]) ?>
27*0f5fd22fSGreg Roach
28*0f5fd22fSGreg Roach<div class="d-flex mb-4">
29*0f5fd22fSGreg Roach    <h2 class="wt-page-title mx-auto">
30*0f5fd22fSGreg Roach        <?= $record->fullName() ?>
31*0f5fd22fSGreg Roach    </h2>
32*0f5fd22fSGreg Roach    <?php if ($record->canEdit()) : ?>
33*0f5fd22fSGreg Roach        <?= view('record-page-menu', ['clipboard_facts' => $clipboard_facts, 'record' => $record]) ?>
34*0f5fd22fSGreg Roach    <?php endif ?>
35*0f5fd22fSGreg Roach</div>
36*0f5fd22fSGreg Roach
37*0f5fd22fSGreg Roach<div class="wt-page-content">
38*0f5fd22fSGreg Roach    <?php if ($linked_families instanceof Collection || $linked_individuals instanceof Collection || $linked_media_objects instanceof Collection || $linked_notes instanceof Collection || $linked_sources instanceof Collection) : ?>
39*0f5fd22fSGreg Roach        <?= view('record-page-links', [
40*0f5fd22fSGreg Roach            'details'              => view('record-page-details', ['record' => $record]),
41*0f5fd22fSGreg Roach            'linked_families'      => $linked_families,
42*0f5fd22fSGreg Roach            'linked_individuals'   => $linked_individuals,
43*0f5fd22fSGreg Roach            'linked_media_objects' => $linked_media_objects,
44*0f5fd22fSGreg Roach            'linked_notes'         => $linked_notes,
45*0f5fd22fSGreg Roach            'linked_sources'       => $linked_sources,
46*0f5fd22fSGreg Roach            'tree'                 => $tree,
47*0f5fd22fSGreg Roach        ]) ?>
48*0f5fd22fSGreg Roach    <?php else : ?>
49*0f5fd22fSGreg Roach        <?= view('record-page-details', ['clipboard_facts' => $clipboard_facts, 'record' => $record]) ?>
50*0f5fd22fSGreg Roach    <?php endif ?>
51*0f5fd22fSGreg Roach</div>
52*0f5fd22fSGreg Roach
53*0f5fd22fSGreg Roach<?= view('modals/ajax') ?>
54