blob: b633e97da657a5c3dba59ab8f69f2e33036c1c58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
<?php use Fisharebest\Webtrees\Bootstrap4; ?>
<?php use Fisharebest\Webtrees\Functions\FunctionsEdit; ?>
<?php use Fisharebest\Webtrees\I18N; ?>
<h2 class="wt-page-title">
<?= $title ?>
</h2>
<form class="wt-page-options wt-page-options-lifespans-chart d-print-none">
<input type="hidden" name="route" value="lifespans">
<input type="hidden" name="ged" value="<?= e($tree->name()) ?>">
<?php foreach ($xrefs as $xref) : ?>
<input name="xrefs[]" type="hidden" value="<?= e($xref) ?>">
<?php endforeach ?>
<div class="row form-group">
<label class="col-sm-3 col-form-label wt-page-options-label" for="addxref">
<?= I18N::translate('Add individuals') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<?= FunctionsEdit::formControlIndividual($tree, null, [
'id' => 'addxref',
'name' => 'addxref',
]) ?>
<?= Bootstrap4::checkbox(/* I18N: Label for a configuration option */ I18N::translate('Include the individual’s immediate family'), false, ['name' => 'addfam']) ?>
</div>
</div>
<div class="row form-group">
<div class="col-sm-12 col-form-label wt-page-options-label">
<?= I18N::translate('Select individuals by place or date') ?>
</div>
</div>
<div class="row form-group">
<label class="col-sm-3 col-form-label wt-page-options-label" for="placename">
<?= I18N::translate('Place') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<input class="form-control" id="placename" name="placename" type="text">
</div>
</div>
<div class="row form-group">
<label class="col-sm-3 col-form-label wt-page-options-label" for="start">
<?= I18N::translate('Start year') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<input class="form-control" id="start" name="start" type="text">
</div>
</div>
<div class="row form-group">
<label class="col-sm-3 col-form-label wt-page-options-label" for="end">
<?= I18N::translate('End year') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<input class="form-control" id="end" name="end" type="text">
</div>
</div>
<div class="row form-group">
<div class="col-form-label col-sm-3 wt-page-options-label"></div>
<div class="col-sm-9 wt-page-options-value">
<button type="submit" class="btn btn-primary" type="submit">
<?= /* I18N: A button label. */ I18N::translate('add') ?>
</button>
<a class="btn btn-secondary" href="<?= e(route('lifespans', ['ged' => $tree->name()])) ?>">
<?= /* I18N: A button label. */ I18N::translate('reset') ?>
</a>
</div>
</div>
</form>
<div class="wt-ajax-load wt-page-content wt-chart wt-timeline-chart" data-ajax-url="<?= e(route('lifespans-chart', ['ged' => $tree->name(), 'xrefs' => $xrefs, 'subtitle' => $subtitle])) ?>"></div>
|