xref: /webtrees/resources/views/modules/fanchart/page.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
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                  $maximum_width
157c2c99faSGreg Roach * @var int                  $minimum_generations
167c2c99faSGreg Roach * @var int                  $minimum_width
177c2c99faSGreg Roach * @var string               $style
187c2c99faSGreg Roach * @var array<string,string> $styles
197c2c99faSGreg Roach * @var string               $title
207c2c99faSGreg Roach * @var Tree                 $tree
217c2c99faSGreg Roach * @var int                  $width
227c2c99faSGreg Roach */
2371378461SGreg Roach
2471378461SGreg Roach?>
259b5537c3SGreg Roach
269b5537c3SGreg Roach<h2 class="wt-page-title">
279b5537c3SGreg Roach    <?= $title ?>
289b5537c3SGreg Roach</h2>
299b5537c3SGreg Roach
3071378461SGreg Roach<form method="post" class="wt-page-options wt-page-options-fan-chart d-print-none">
319e3c2cf9SGreg Roach    <div class="row">
329b5537c3SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="xref">
339b5537c3SGreg Roach            <?= I18N::translate('Individual') ?>
349b5537c3SGreg Roach        </label>
359b5537c3SGreg Roach        <div class="col-sm-9 wt-page-options-value">
3600efc03cSGreg Roach            <?= view('components/select-individual', ['name' => 'xref', 'individual' => $individual, 'tree' => $tree, 'required' => true]) ?>
379b5537c3SGreg Roach        </div>
389b5537c3SGreg Roach    </div>
399b5537c3SGreg Roach
409e3c2cf9SGreg Roach    <div class="row">
4171378461SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="style">
429b5537c3SGreg Roach            <?= I18N::translate('Layout') ?>
439b5537c3SGreg Roach        </label>
449b5537c3SGreg Roach        <div class="col-sm-9 wt-page-options-value">
4571378461SGreg Roach            <?= view('components/select', ['name' => 'style', 'selected' => $style, 'options' => $styles]) ?>
469b5537c3SGreg Roach        </div>
479b5537c3SGreg Roach    </div>
489b5537c3SGreg Roach
499e3c2cf9SGreg Roach    <div class="row">
509b5537c3SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="generations">
519b5537c3SGreg Roach            <?= I18N::translate('Generations') ?>
529b5537c3SGreg Roach        </label>
539b5537c3SGreg Roach        <div class="col-sm-9 wt-page-options-value">
54f91b18ebSGreg Roach            <?= view('components/select-number', ['name' => 'generations', 'selected' => $generations, 'options' => range($minimum_generations, $maximum_generations)]) ?>
559b5537c3SGreg Roach        </div>
569b5537c3SGreg Roach    </div>
579b5537c3SGreg Roach
589e3c2cf9SGreg Roach    <div class="row">
5971378461SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="width">
609b5537c3SGreg Roach            <?= I18N::translate('Zoom') ?>
619b5537c3SGreg Roach        </label>
629b5537c3SGreg Roach        <div class="col-sm-9 wt-page-options-value">
639b5537c3SGreg Roach            <div class="input-group">
647dca5265SGreg Roach                <input class="form-control" id="width" max="<?= $maximum_width ?>" min="<?= $minimum_width ?>" name="width" required="required" type="number" value="<?= $width ?>">
65315eb316SGreg Roach                <span class="input-group-text">%</span>
669b5537c3SGreg Roach            </div>
679b5537c3SGreg Roach        </div>
689b5537c3SGreg Roach    </div>
699b5537c3SGreg Roach
709e3c2cf9SGreg Roach    <div class="row mb-3">
719b5537c3SGreg Roach        <div class="col-form-label col-sm-3 wt-page-options-label"></div>
729b5537c3SGreg Roach        <div class="col-sm-9 wt-page-options-value">
739b5537c3SGreg Roach            <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */ I18N::translate('view') ?>">
749b5537c3SGreg Roach        </div>
759b5537c3SGreg Roach    </div>
7681443e3cSGreg Roach
7781443e3cSGreg Roach    <?= csrf_field() ?>
789b5537c3SGreg Roach</form>
799b5537c3SGreg Roach
80d4786c66SGreg Roach<div class="wt-ajax-load wt-page-content wt-chart wt-chart-fan" data-wt-ajax-url="<?= e($ajax_url) ?>"></div>
81