xref: /webtrees/resources/views/modules/pedigree-chart/page.phtml (revision 5bfc689774bb9a6401271c4ed15a6d50652c991b)
1<?php
2
3use Fisharebest\Webtrees\I18N;
4use Fisharebest\Webtrees\Individual;
5use Fisharebest\Webtrees\Tree;
6
7/**
8 * @var string               $ajax_url
9 * @var int                  $generations
10 * @var Individual           $individual
11 * @var int                  $max_generations
12 * @var int                  $min_generations
13 * @var string               $style
14 * @var array<string,string> $styles
15 * @var string               $title
16 * @var Tree                 $tree
17 */
18
19?>
20
21<h2 class="wt-page-title">
22    <?= $title ?>
23</h2>
24
25<form method="post" class="wt-page-options wt-page-options-pedigree-chart d-print-none">
26    <?= csrf_field() ?>
27
28    <div class="row form-group">
29        <label class="col-sm-3 col-form-label wt-page-options-label" for="xref">
30            <?= I18N::translate('Individual') ?>
31        </label>
32        <div class="col-sm-9 wt-page-options-value">
33            <?= view('components/select-individual', ['name' => 'xref', 'individual' => $individual, 'tree' => $tree]) ?>
34        </div>
35    </div>
36
37    <div class="row form-group">
38        <label class="col-sm-3 col-form-label wt-page-options-label" for="generations">
39            <?= I18N::translate('Generations') ?>
40        </label>
41        <div class="col-sm-9 wt-page-options-value">
42            <?= view('components/select-number', ['name' => 'generations', 'selected' => $generations, 'options' => range($min_generations, $max_generations)]) ?>
43        </div>
44    </div>
45
46    <div class="row form-group">
47        <label class="col-sm-3 col-form-label wt-page-options-label" for="style">
48            <?= I18N::translate('Layout') ?>
49        </label>
50        <div class="col-sm-9 wt-page-options-value">
51            <?= view('components/radios-inline', ['name' => 'style', 'options' => $styles, 'selected' => $style]) ?>
52        </div>
53    </div>
54
55    <div class="row form-group mb-3">
56        <div class="col-sm-3 wt-page-options-label"></div>
57        <div class="col-sm-9 wt-page-options-value">
58            <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */
59            I18N::translate('view') ?>">
60        </div>
61    </div>
62</form>
63
64<div class="wt-ajax-load wt-page-content wt-chart wt-chart-pedigree" data-wt-ajax-url="<?= e($ajax_url) ?>"></div>
65