xref: /webtrees/resources/views/modules/pedigree-map/page.phtml (revision 81443e3cbe4eef5ccdcf8dae716a7e35f7417b60)
171378461SGreg Roach<?php
271378461SGreg Roach
371378461SGreg Roachuse Fisharebest\Webtrees\I18N;
47c2c99faSGreg Roachuse Fisharebest\Webtrees\Individual;
57c2c99faSGreg Roachuse Fisharebest\Webtrees\Tree;
67c2c99faSGreg Roach
77c2c99faSGreg Roach/**
87c2c99faSGreg Roach * @var int        $generations
97c2c99faSGreg Roach * @var Individual $individual
107c2c99faSGreg Roach * @var string     $map
117c2c99faSGreg Roach * @var int        $maxgenerations
127c2c99faSGreg Roach * @var string     $title
137c2c99faSGreg Roach * @var Tree       $tree
147c2c99faSGreg Roach */
1571378461SGreg Roach
1671378461SGreg Roach?>
173dcc812bSGreg Roach
183dcc812bSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
193dcc812bSGreg Roach
2071378461SGreg Roach<form method="post" class="wt-page-options wt-page-options-pedigreemap-chart d-print-none">
219e3c2cf9SGreg Roach    <div class="row">
223dcc812bSGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="xref">
233dcc812bSGreg Roach            <?= I18N::translate('Individual') ?>
243dcc812bSGreg Roach        </label>
253dcc812bSGreg Roach        <div class="col-sm-9 wt-page-options-value">
2600efc03cSGreg Roach            <?= view('components/select-individual', ['name' => 'xref', 'individual' => $individual, 'tree' => $tree, 'required' => true]) ?>
273dcc812bSGreg Roach        </div>
283dcc812bSGreg Roach    </div>
293dcc812bSGreg Roach
309e3c2cf9SGreg Roach    <div class="row">
313dcc812bSGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="generations">
323dcc812bSGreg Roach            <?= I18N::translate('Generations') ?>
333dcc812bSGreg Roach        </label>
343dcc812bSGreg Roach        <div class="col-sm-9 wt-page-options-value">
35f91b18ebSGreg Roach            <?= view('components/select-number', ['name' => 'generations', 'selected' => $generations, 'options' => range(2, $maxgenerations)]) ?>
363dcc812bSGreg Roach        </div>
373dcc812bSGreg Roach    </div>
383dcc812bSGreg Roach
399e3c2cf9SGreg Roach    <div class="row">
403dcc812bSGreg Roach        <div class="col-sm-3 wt-page-options-label"></div>
413dcc812bSGreg Roach        <div class="col-sm-9 wt-page-options-value">
423dcc812bSGreg Roach            <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */
433dcc812bSGreg Roach            I18N::translate('view')
443dcc812bSGreg Roach            ?>">
453dcc812bSGreg Roach        </div>
463dcc812bSGreg Roach    </div>
47*81443e3cSGreg Roach
48*81443e3cSGreg Roach    <?= csrf_field() ?>
493dcc812bSGreg Roach</form>
503dcc812bSGreg Roach
513dcc812bSGreg Roach
523dcc812bSGreg Roach<div class="wt-ajax-load wt-page-content">
533dcc812bSGreg Roach    <?= $map ?>
543dcc812bSGreg Roach</div>
553dcc812bSGreg Roach
56