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|null $individual 11 * @var int $maximum_generations 12 * @var int $minimum_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-ancestors-chart d-print-none"> 26 <div class="row"> 27 <label class="col-sm-3 col-form-label wt-page-options-label" for="xref"> 28 <?= I18N::translate('Individual') ?> 29 </label> 30 <div class="col-sm-9 wt-page-options-value"> 31 <?= view('components/select-individual', ['name' => 'xref', 'individual' => $individual, 'tree' => $tree, 'required' => true]) ?> 32 </div> 33 </div> 34 35 <div class="row"> 36 <label class="col-sm-3 col-form-label wt-page-options-label" for="generations"> 37 <?= I18N::translate('Generations') ?> 38 </label> 39 <div class="col-sm-9 wt-page-options-value"> 40 <input class="form-control" id="generations" name="generations" type="number" min="<?= e($minimum_generations) ?>" max="<?= e($maximum_generations) ?>" value="<?= e($generations) ?>" required="required"> 41 </div> 42 </div> 43 44 <fieldset class="row mb-3"> 45 <legend class="col-form-label col-sm-3 wt-page-options-label"> 46 <?= I18N::translate('Layout') ?> 47 </legend> 48 <div class="col-sm-9 wt-page-options-value"> 49 <?= view('components/radios-inline', ['name' => 'style', 'options' => $styles, 'selected' => $style]) ?> 50 </div> 51 </fieldset> 52 53 <div class="row mb-3"> 54 <div class="col-form-label col-sm-3 wt-page-options-label"></div> 55 <div class="col-sm-9 wt-page-options-value"> 56 <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */ I18N::translate('view') ?>"> 57 </div> 58 </div> 59 60 <?= csrf_field() ?> 61</form> 62 63<div class="wt-ajax-load wt-page-content wt-chart wt-chart-ancestors" data-wt-ajax-url="<?= e($ajax_url) ?>"></div> 64