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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
<?php use Fisharebest\Webtrees\Bootstrap4;
use Fisharebest\Webtrees\Functions\FunctionsEdit;
use Fisharebest\Webtrees\I18N;
use Fisharebest\Webtrees\View;
?>
<?php ?>
<?php ?>
<?php ?>
<h2 class="wt-page-title">
<?= $title ?>
</h2>
<form class="wt-page-options wt-page-options-relationships-chart d-print-none">
<input type="hidden" name="route" value="relationships">
<input type="hidden" name="ged" value="<?= e($tree->getName()) ?>">
<div class="row form-group">
<label class="col-sm-3 col-form-label wt-page-options-label" for="xref1">
<?= I18N::translate('Individual 1') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<?= FunctionsEdit::formControlIndividual($tree, $individual1, [
'id' => 'xref1',
'name' => 'xref1',
]) ?>
<button class="btn btn-link small" id="btn-swap-individuals" type="button">
<?= /* I18N: Reverse the order of two individuals */
I18N::translate('Swap individuals') ?>
</button>
</div>
</div>
<div class="row form-group">
<label class="col-sm-3 col-form-label wt-page-options-label" for="xref2">
<?= I18N::translate('Individual 2') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<?= FunctionsEdit::formControlIndividual($tree, $individual2, [
'id' => 'xref2',
'name' => 'xref2',
]) ?>
</div>
</div>
<fieldset class="form-group">
<div class="row">
<legend class="col-form-label col-sm-3 wt-page-options-label">
</legend>
<div class="col-sm-9 wt-page-options-value">
<?php if ($ancestors_only): ?>
<input type="hidden" name="ancestors" value="1">
<?= I18N::translate('Find relationships via ancestors') ?>
<?php else: ?>
<?= Bootstrap4::radioButtons('ancestors', $ancestors_options, $ancestors, false) ?>
<?php endif ?>
</div>
</div>
</fieldset>
<fieldset class="form-group">
<div class="row">
<legend class="col-form-label col-sm-3 wt-page-options-label">
</legend>
<div class="col-sm-9 wt-page-options-value">
<?php if ($max_recursion === 0): ?>
<?= I18N::translate('Find the closest relationships') ?>
<input type="hidden" name="recursion" value="0">
<?php else: ?>
<?= Bootstrap4::radioButtons('recursion', $recursion_options, $recursion, false) ?>
<?php endif ?>
</div>
</div>
</fieldset>
<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">
<input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */
I18N::translate('view') ?>">
</div>
</div>
</form>
<?php if ($individual1 !== null && $individual2 !== null): ?>
<div class="wt-ajax-load wt-page-content wt-chart wt-relationships-chart" data-ajax-url="<?= e(route('relationships-chart', [
'xref1' => $individual1->getXref(),
'xref2' => $individual2->getXref(),
'ged' => $individual2->getTree()->getName(),
'recursion' => $recursion,
'ancestors' => $ancestors,
])) ?>"></div>
<?php endif ?>
<?php View::push('javascript') ?>
<script>
$('#btn-swap-individuals').click(function () {
// Swap the (hidden) options of the select
var select1 = document.querySelector('#xref1');
var select2 = document.querySelector('#xref2');
var tmp_html = select1.innerHTML;
select1.innerHTML = select2.innerHTML;
select2.innerHTML = tmp_html;
// Also swap the select2 element
var span1 = document.querySelector('#xref1 + span');
var span2 = document.querySelector('#xref2 + span');
var tmp_html = span1.innerHTML;
span1.innerHTML = span2.innerHTML.replace('xref2', 'xref1');
span2.innerHTML = tmp_html.replace('xref1', 'xref2');
});
</script>
<?php View::endpush() ?>
|