xref: /webtrees/resources/views/modules/family-book-chart/parents.phtml (revision 81bf322104708dae4d3f2c78f87fb3e6027946a3)
17c2c99faSGreg Roach<?php
27c2c99faSGreg Roach
310e06497SGreg Roachdeclare(strict_types=1);
410e06497SGreg Roach
57c2c99faSGreg Roachuse Fisharebest\Webtrees\Family;
67c2c99faSGreg Roach
77c2c99faSGreg Roach/**
87c2c99faSGreg Roach * @var Family|null $family
97c2c99faSGreg Roach * @var int         $generations
107c2c99faSGreg Roach */
117c2c99faSGreg Roach
127c2c99faSGreg Roach?>
13b7765f6bSGreg Roach<div class="d-flex">
14b7765f6bSGreg Roach    <div class="align-self-center">
15b7765f6bSGreg Roach        <div class="d-flex">
16b7765f6bSGreg Roach            <div class="wt-chart-horizontal-spacer">
17b7765f6bSGreg Roach                <div class="wt-chart-horizontal-first-parent"></div>
18b7765f6bSGreg Roach            </div>
19b7765f6bSGreg Roach
20b7765f6bSGreg Roach            <div class="align-self-center">
21*81bf3221SGreg Roach                <?= view('chart-box', ['individual' => $family?->husband()]) ?>
22b7765f6bSGreg Roach            </div>
23b7765f6bSGreg Roach
24b7765f6bSGreg Roach            <?php if ($generations > 1) : ?>
25b7765f6bSGreg Roach                <div class="wt-chart-horizontal-spacer">
26b7765f6bSGreg Roach                    <div class="wt-chart-horizontal-line"></div>
27b7765f6bSGreg Roach                </div>
28b7765f6bSGreg Roach
29*81bf3221SGreg Roach                <?= view('modules/family-book-chart/parents', ['family' => $family?->husband()?->childFamilies()->first(), 'generations' => $generations - 1]) ?>
30b7765f6bSGreg Roach            <?php endif ?>
31b7765f6bSGreg Roach        </div>
32b7765f6bSGreg Roach
33b7765f6bSGreg Roach        <div class="d-flex">
34b7765f6bSGreg Roach            <div class="wt-chart-horizontal-spacer">
35b7765f6bSGreg Roach                <div class="wt-chart-horizontal-last-parent"></div>
36b7765f6bSGreg Roach            </div>
37b7765f6bSGreg Roach
38b7765f6bSGreg Roach            <div class="align-self-center">
39*81bf3221SGreg Roach                <?= view('chart-box', ['individual' => $family?->wife()]) ?>
40b7765f6bSGreg Roach            </div>
41b7765f6bSGreg Roach
42b7765f6bSGreg Roach            <?php if ($generations > 1) : ?>
43b7765f6bSGreg Roach                <div class="wt-chart-horizontal-spacer">
44b7765f6bSGreg Roach                    <div class="wt-chart-horizontal-line"></div>
45b7765f6bSGreg Roach                </div>
46b7765f6bSGreg Roach
47*81bf3221SGreg Roach                <?= view('modules/family-book-chart/parents', ['family' => $family?->wife()?->childFamilies()->first(), 'generations' => $generations - 1]) ?>
48b7765f6bSGreg Roach            <?php endif ?>
49b7765f6bSGreg Roach        </div>
50b7765f6bSGreg Roach    </div>
51b7765f6bSGreg Roach</div>
52b7765f6bSGreg Roach
53