xref: /webtrees/resources/views/modules/pedigree-chart/page.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
171378461SGreg Roach<?php
271378461SGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
571378461SGreg Roachuse Fisharebest\Webtrees\I18N;
6f91b18ebSGreg Roachuse Fisharebest\Webtrees\Individual;
7f91b18ebSGreg Roachuse Fisharebest\Webtrees\Tree;
8f91b18ebSGreg Roach
9f91b18ebSGreg Roach/**
10f91b18ebSGreg Roach * @var string               $ajax_url
11f91b18ebSGreg Roach * @var int                  $generations
12f91b18ebSGreg Roach * @var Individual           $individual
13f91b18ebSGreg Roach * @var int                  $max_generations
14f91b18ebSGreg Roach * @var int                  $min_generations
157c2c99faSGreg Roach * @var string               $style
162f955fcfSGreg Roach * @var array<string,string> $styles
17f91b18ebSGreg Roach * @var string               $title
18f91b18ebSGreg Roach * @var Tree                 $tree
19f91b18ebSGreg Roach */
2071378461SGreg Roach
2171378461SGreg Roach?>
229b5537c3SGreg Roach
239b5537c3SGreg Roach<h2 class="wt-page-title">
249b5537c3SGreg Roach    <?= $title ?>
259b5537c3SGreg Roach</h2>
269b5537c3SGreg Roach
2771378461SGreg Roach<form method="post" class="wt-page-options wt-page-options-pedigree-chart d-print-none">
289e3c2cf9SGreg Roach    <div class="row">
299b5537c3SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="xref">
309b5537c3SGreg Roach            <?= I18N::translate('Individual') ?>
319b5537c3SGreg Roach        </label>
329b5537c3SGreg Roach        <div class="col-sm-9 wt-page-options-value">
33b6c326d8SGreg Roach            <?= view('components/select-individual', ['name' => 'xref', 'individual' => $individual, 'tree' => $tree]) ?>
349b5537c3SGreg Roach        </div>
359b5537c3SGreg Roach    </div>
369b5537c3SGreg Roach
379e3c2cf9SGreg Roach    <div class="row">
389b5537c3SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="generations">
399b5537c3SGreg Roach            <?= I18N::translate('Generations') ?>
409b5537c3SGreg Roach        </label>
419b5537c3SGreg Roach        <div class="col-sm-9 wt-page-options-value">
42f91b18ebSGreg Roach            <?= view('components/select-number', ['name' => 'generations', 'selected' => $generations, 'options' => range($min_generations, $max_generations)]) ?>
439b5537c3SGreg Roach        </div>
449b5537c3SGreg Roach    </div>
459b5537c3SGreg Roach
469e3c2cf9SGreg Roach    <div class="row">
4771378461SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="style">
489b5537c3SGreg Roach            <?= I18N::translate('Layout') ?>
499b5537c3SGreg Roach        </label>
509b5537c3SGreg Roach        <div class="col-sm-9 wt-page-options-value">
512f955fcfSGreg Roach            <?= view('components/radios-inline', ['name' => 'style', 'options' => $styles, 'selected' => $style]) ?>
529b5537c3SGreg Roach        </div>
539b5537c3SGreg Roach    </div>
549b5537c3SGreg Roach
559e3c2cf9SGreg Roach    <div class="row mb-3">
569b5537c3SGreg Roach        <div class="col-sm-3 wt-page-options-label"></div>
579b5537c3SGreg Roach        <div class="col-sm-9 wt-page-options-value">
5871378461SGreg Roach            <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */
5971378461SGreg Roach            I18N::translate('view') ?>">
609b5537c3SGreg Roach        </div>
619b5537c3SGreg Roach    </div>
6281443e3cSGreg Roach
6381443e3cSGreg Roach    <?= csrf_field() ?>
649b5537c3SGreg Roach</form>
659b5537c3SGreg Roach
66d4786c66SGreg Roach<div class="wt-ajax-load wt-page-content wt-chart wt-chart-pedigree" data-wt-ajax-url="<?= e($ajax_url) ?>"></div>
67