xref: /webtrees/resources/views/modules/hourglass-chart/parents.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
1cb0eb4a9SGreg Roach<?php
2cb0eb4a9SGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
5cb0eb4a9SGreg Roachuse Fisharebest\Webtrees\Family;
67c2c99faSGreg Roachuse Fisharebest\Webtrees\Individual;
7cb0eb4a9SGreg Roach
8cb0eb4a9SGreg Roach/**
9cb0eb4a9SGreg Roach * @var Family $family
10cb0eb4a9SGreg Roach * @var int    $generations
11cb0eb4a9SGreg Roach */
12cb0eb4a9SGreg Roach
13cb0eb4a9SGreg Roach?>
14cb0eb4a9SGreg Roach
15cb0eb4a9SGreg Roach<div class="d-flex">
1680d2d63aSGreg Roach    <div class="wt-chart-horizontal-spacer">
1780d2d63aSGreg Roach        <div class="wt-chart-horizontal-line"></div>
1880d2d63aSGreg Roach    </div>
19cb0eb4a9SGreg Roach    <div class="align-self-center">
20cb0eb4a9SGreg Roach        <div class="d-flex">
21cb0eb4a9SGreg Roach            <div class="wt-chart-horizontal-spacer">
22cb0eb4a9SGreg Roach                <div class="wt-chart-horizontal-first-parent"></div>
23cb0eb4a9SGreg Roach            </div>
24cb0eb4a9SGreg Roach
25cb0eb4a9SGreg Roach            <div class="align-self-center">
26cb0eb4a9SGreg Roach                <?= view('chart-box', ['individual' => $family->husband()]) ?>
27cb0eb4a9SGreg Roach            </div>
28cb0eb4a9SGreg Roach
297c2c99faSGreg Roach            <?php if ($family->husband() instanceof Individual && $family->husband()->childFamilies()->first() instanceof Family) : ?>
30cb0eb4a9SGreg Roach                <?php if ($generations > 1) : ?>
311afbbc50SGreg Roach                    <?= view('modules/hourglass-chart/parents', ['family' => $family->husband()->childFamilies()->first(), 'generations' => $generations - 1]) ?>
32cb0eb4a9SGreg Roach                <?php else : ?>
33cb0eb4a9SGreg Roach                    <div class="align-self-center">
34d4786c66SGreg Roach                        <div class="hourglass-arrow" data-wt-chart-xref="<?= route('module', ['module' => 'hourglass_chart', 'action' => 'Ancestors', 'xref' => $family->husband()->childFamilies()->first()->xref(), 'tree' => $family->husband()->childFamilies()->first()->tree()->name()]) ?>">
35cb0eb4a9SGreg Roach                            <?= view('icons/arrow-right') ?>
36cb0eb4a9SGreg Roach                        </div>
37cb0eb4a9SGreg Roach                    </div>
38cb0eb4a9SGreg Roach                <?php endif ?>
39cb0eb4a9SGreg Roach            <?php endif ?>
40cb0eb4a9SGreg Roach        </div>
41cb0eb4a9SGreg Roach
42cb0eb4a9SGreg Roach        <div class="d-flex">
43cb0eb4a9SGreg Roach            <div class="wt-chart-horizontal-spacer">
44cb0eb4a9SGreg Roach                <div class="wt-chart-horizontal-last-parent"></div>
45cb0eb4a9SGreg Roach            </div>
46cb0eb4a9SGreg Roach
47cb0eb4a9SGreg Roach            <div class="align-self-center">
48cb0eb4a9SGreg Roach                <?= view('chart-box', ['individual' => $family->wife()]) ?>
49cb0eb4a9SGreg Roach            </div>
50cb0eb4a9SGreg Roach
517c2c99faSGreg Roach            <?php if ($family->wife() instanceof Individual && $family->wife()->childFamilies()->first() instanceof Family) : ?>
52cb0eb4a9SGreg Roach                <?php if ($generations > 1) : ?>
531afbbc50SGreg Roach                    <?= view('modules/hourglass-chart/parents', ['family' => $family->wife()->childFamilies()->first(), 'generations' => $generations - 1]) ?>
54cb0eb4a9SGreg Roach                <?php else : ?>
55cb0eb4a9SGreg Roach                    <div class="align-self-center">
56cb0eb4a9SGreg Roach                        <div class="align-self-center">
57d4786c66SGreg Roach                            <div class="hourglass-arrow" data-wt-chart-xref="<?= route('module', ['module' => 'hourglass_chart', 'action' => 'Ancestors', 'xref' => $family->wife()->childFamilies()->first()->xref(), 'tree' => $family->wife()->childFamilies()->first()->tree()->name()]) ?>">
58cb0eb4a9SGreg Roach                                <?= view('icons/arrow-right') ?>
59cb0eb4a9SGreg Roach                            </div>
60cb0eb4a9SGreg Roach                        </div>
61cb0eb4a9SGreg Roach                    </div>
62cb0eb4a9SGreg Roach                <?php endif ?>
63cb0eb4a9SGreg Roach            <?php endif ?>
64cb0eb4a9SGreg Roach        </div>
65cb0eb4a9SGreg Roach    </div>
66cb0eb4a9SGreg Roach</div>
67