xref: /webtrees/resources/views/modules/fanchart/page.phtml (revision 0010d42b5dcc725e166945c3345a365d5aa115e3)
1<?php use Fisharebest\Webtrees\Bootstrap4; ?>
2<?php use Fisharebest\Webtrees\Functions\FunctionsEdit; ?>
3<?php use Fisharebest\Webtrees\I18N; ?>
4
5<h2 class="wt-page-title">
6    <?= $title ?>
7</h2>
8
9<form class="wt-page-options wt-page-options-fan-chart d-print-none">
10    <input type="hidden" name="route" value="module">
11    <input type="hidden" name="module" value="<?= e($module_name) ?>">
12    <input type="hidden" name="action" value="Chart">
13    <input type="hidden" name="ged" value="<?= e($tree->name()) ?>">
14
15    <div class="row form-group">
16        <label class="col-sm-3 col-form-label wt-page-options-label" for="xref">
17            <?= I18N::translate('Individual') ?>
18        </label>
19        <div class="col-sm-9 wt-page-options-value">
20            <?= FunctionsEdit::formControlIndividual($tree, $individual, ['id' => 'xref', 'name' => 'xref']) ?>
21        </div>
22    </div>
23
24    <div class="row form-group">
25        <label class="col-sm-3 col-form-label wt-page-options-label">
26            <?= I18N::translate('Layout') ?>
27        </label>
28        <div class="col-sm-9 wt-page-options-value">
29            <?= Bootstrap4::select($chart_styles, $chart_style, ['id' => 'chart_style', 'name' => 'chart_style']) ?>
30        </div>
31    </div>
32
33    <div class="row form-group">
34        <label class="col-sm-3 col-form-label wt-page-options-label" for="generations">
35            <?= I18N::translate('Generations') ?>
36        </label>
37        <div class="col-sm-9 wt-page-options-value">
38            <?= Bootstrap4::select(FunctionsEdit::numericOptions(range($minimum_generations, $maximum_generations)), $generations, ['id' => 'generations', 'name' => 'generations']) ?>
39        </div>
40    </div>
41
42    <div class="row form-group">
43        <label class="col-sm-3 col-form-label wt-page-options-label" for="fan_width">
44            <?= I18N::translate('Zoom') ?>
45        </label>
46        <div class="col-sm-9 wt-page-options-value">
47            <div class="input-group">
48                <input class="form-control" id="fan_width" max="<?= $maximum_width ?>" min="<?= $minimum_width ?>" name="fan_width" required type="number" value="<?= $fan_width ?>">
49                <div class="input-group-append">
50                    <span class="input-group-text">
51                        %
52                    </span>
53                </div>
54            </div>
55        </div>
56    </div>
57
58    <div class="row form-group">
59        <div class="col-form-label col-sm-3 wt-page-options-label"></div>
60        <div class="col-sm-9 wt-page-options-value">
61            <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */ I18N::translate('view') ?>">
62        </div>
63    </div>
64</form>
65
66<div class="wt-ajax-load wt-page-content wt-chart wt-fan-chart" data-ajax-url="<?= e($ajax_url) ?>"></div>
67