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 string $ajax_url 117c2c99faSGreg Roach * @var int $generations 127c2c99faSGreg Roach * @var Individual $individual 137c2c99faSGreg Roach * @var int $maximum_generations 147c2c99faSGreg Roach * @var int $minimum_generations 157c2c99faSGreg Roach * @var bool $spouses 167c2c99faSGreg Roach * @var string $title 177c2c99faSGreg Roach * @var Tree $tree 187c2c99faSGreg Roach */ 1971378461SGreg Roach 2071378461SGreg Roach?> 219b5537c3SGreg Roach 229b5537c3SGreg Roach<h2 class="wt-page-title"> 239b5537c3SGreg Roach <?= $title ?> 249b5537c3SGreg Roach</h2> 259b5537c3SGreg Roach 2671378461SGreg Roach<form method="post" class="wt-page-options wt-page-options-hourglass-chart d-print-none"> 279e3c2cf9SGreg Roach <div class="row"> 289b5537c3SGreg Roach <label class="col-sm-3 col-form-label wt-page-options-label" for="xref"> 299b5537c3SGreg Roach <?= I18N::translate('Individual') ?> 309b5537c3SGreg Roach </label> 319b5537c3SGreg Roach <div class="col-sm-9 wt-page-options-value"> 3200efc03cSGreg Roach <?= view('components/select-individual', ['name' => 'xref', 'individual' => $individual, 'tree' => $tree, 'required' => true]) ?> 339b5537c3SGreg Roach </div> 349b5537c3SGreg Roach </div> 359b5537c3SGreg Roach 369e3c2cf9SGreg Roach <div class="row"> 379b5537c3SGreg Roach <label class="col-sm-3 col-form-label wt-page-options-label" for="generations"> 389b5537c3SGreg Roach <?= I18N::translate('Generations') ?> 399b5537c3SGreg Roach </label> 409b5537c3SGreg Roach <div class="col-sm-9 wt-page-options-value"> 41f91b18ebSGreg Roach <?= view('components/select-number', ['name' => 'generations', 'selected' => $generations, 'options' => range($minimum_generations, $maximum_generations)]) ?> 429b5537c3SGreg Roach </div> 439b5537c3SGreg Roach </div> 449b5537c3SGreg Roach 459e3c2cf9SGreg Roach <fieldset class="row mb-3"> 469b5537c3SGreg Roach <legend class="col-form-label col-sm-3 wt-page-options-label"> 479b5537c3SGreg Roach <?= I18N::translate('Layout') ?> 489b5537c3SGreg Roach </legend> 499b5537c3SGreg Roach <div class="col-sm-9 wt-page-options-value"> 5071378461SGreg Roach <?= view('components/checkbox', ['label' => I18N::translate('Show spouses'), 'name' => 'spouses', 'checked' => $spouses]) ?> 519b5537c3SGreg Roach </div> 529b5537c3SGreg Roach </fieldset> 539b5537c3SGreg Roach 549e3c2cf9SGreg Roach <div class="row mb-3"> 559b5537c3SGreg Roach <div class="col-sm-3 wt-page-options-label"></div> 569b5537c3SGreg Roach <div class="col-sm-9 wt-page-options-value"> 579b5537c3SGreg Roach <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */ I18N::translate('view') ?>"> 589b5537c3SGreg Roach </div> 599b5537c3SGreg Roach </div> 6081443e3cSGreg Roach 6181443e3cSGreg Roach <?= csrf_field() ?> 629b5537c3SGreg Roach</form> 639b5537c3SGreg Roach 64d4786c66SGreg Roach<div class="wt-ajax-load wt-page-content wt-chart wt-chart-hourglass" data-wt-ajax-url="<?= e($ajax_url) ?>"></div> 65