xref: /webtrees/resources/views/modules/pedigree-map/page.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
171378461SGreg Roach<?php
271378461SGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
571378461SGreg Roachuse Fisharebest\Webtrees\I18N;
67c2c99faSGreg Roachuse Fisharebest\Webtrees\Individual;
77c2c99faSGreg Roachuse Fisharebest\Webtrees\Tree;
87c2c99faSGreg Roach
97c2c99faSGreg Roach/**
107c2c99faSGreg Roach * @var int        $generations
117c2c99faSGreg Roach * @var Individual $individual
127c2c99faSGreg Roach * @var string     $map
137c2c99faSGreg Roach * @var int        $maxgenerations
147c2c99faSGreg Roach * @var string     $title
157c2c99faSGreg Roach * @var Tree       $tree
167c2c99faSGreg Roach */
1771378461SGreg Roach
1871378461SGreg Roach?>
193dcc812bSGreg Roach
203dcc812bSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
213dcc812bSGreg Roach
2271378461SGreg Roach<form method="post" class="wt-page-options wt-page-options-pedigreemap-chart d-print-none">
239e3c2cf9SGreg Roach    <div class="row">
243dcc812bSGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="xref">
253dcc812bSGreg Roach            <?= I18N::translate('Individual') ?>
263dcc812bSGreg Roach        </label>
273dcc812bSGreg Roach        <div class="col-sm-9 wt-page-options-value">
2800efc03cSGreg Roach            <?= view('components/select-individual', ['name' => 'xref', 'individual' => $individual, 'tree' => $tree, 'required' => true]) ?>
293dcc812bSGreg Roach        </div>
303dcc812bSGreg Roach    </div>
313dcc812bSGreg Roach
329e3c2cf9SGreg Roach    <div class="row">
333dcc812bSGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="generations">
343dcc812bSGreg Roach            <?= I18N::translate('Generations') ?>
353dcc812bSGreg Roach        </label>
363dcc812bSGreg Roach        <div class="col-sm-9 wt-page-options-value">
37f91b18ebSGreg Roach            <?= view('components/select-number', ['name' => 'generations', 'selected' => $generations, 'options' => range(2, $maxgenerations)]) ?>
383dcc812bSGreg Roach        </div>
393dcc812bSGreg Roach    </div>
403dcc812bSGreg Roach
419e3c2cf9SGreg Roach    <div class="row">
423dcc812bSGreg Roach        <div class="col-sm-3 wt-page-options-label"></div>
433dcc812bSGreg Roach        <div class="col-sm-9 wt-page-options-value">
443dcc812bSGreg Roach            <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */
453dcc812bSGreg Roach            I18N::translate('view')
463dcc812bSGreg Roach            ?>">
473dcc812bSGreg Roach        </div>
483dcc812bSGreg Roach    </div>
4981443e3cSGreg Roach
5081443e3cSGreg Roach    <?= csrf_field() ?>
513dcc812bSGreg Roach</form>
523dcc812bSGreg Roach
533dcc812bSGreg Roach
543dcc812bSGreg Roach<div class="wt-ajax-load wt-page-content">
553dcc812bSGreg Roach    <?= $map ?>
563dcc812bSGreg Roach</div>
573dcc812bSGreg Roach
58