blob: e5882996cb140efd1ab32fbbe7e46f3548bd86ca (
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
79
80
81
82
83
84
85
|
<?php use Fisharebest\Webtrees\FontAwesome; ?>
<?php use Fisharebest\Webtrees\Functions\FunctionsEdit; ?>
<?php use Fisharebest\Webtrees\I18N; ?>
<h2 class="wt-page-title"><?= $title ?></h2>
<form class="wt-page-content" name="changefamform" method="post">
<?= csrf_field() ?>
<input type="hidden" name="ged" value="<?= e($tree->name()) ?>">
<input type="hidden" name="xref" value="<?= e($family->xref()) ?>">
<div class="form-group row">
<label class="col-sm-3 col-form-label wt-page-options-label" for="HUSB">
<?php if ($father !== null && $father->getSex() === 'M') : ?>
<?= I18N::translate('Husband') ?>
<?php elseif ($father !== null && $father->getSex() === 'F') : ?>
<?= I18N::translate('Wife') ?>
<?php else : ?>
<?= I18N::translate('Spouse') ?>
<?php endif ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<?= FunctionsEdit::formControlIndividual($tree, $father, ['id' => 'HUSB', 'name' => 'HUSB']) ?>
</div>
</div>
<div class="form-group row">
<label class="col-sm-3 col-form-label wt-page-options-label" for="WIFE">
<?php if ($mother !== null && $mother->getSex() === 'M') : ?>
<?= I18N::translate('Husband') ?>
<?php elseif ($mother !== null && $mother->getSex() === 'F') : ?>
<?= I18N::translate('Wife') ?>
<?php else : ?>
<?= I18N::translate('Spouse') ?>
<?php endif ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<?= FunctionsEdit::formControlIndividual($tree, $mother, ['id' => 'WIFE', 'name' => 'WIFE']) ?>
</div>
</div>
<?php foreach ($children as $n => $child) : ?>
<div class="form-group row">
<label class="col-sm-3 col-form-label wt-page-options-label" for="CHIL<?= e($n) ?>">
<?php if ($child !== null && $child->getSex() === 'M') : ?>
<?= I18N::translate('Son') ?>
<?php elseif ($child !== null && $child->getSex() === 'F') : ?>
<?= I18N::translate('Daughter') ?>
<?php else : ?>
<?= I18N::translate('Child') ?>
<?php endif ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<?= FunctionsEdit::formControlIndividual($tree, $child, ['id' => 'CHIL' . $n, 'name' => 'CHIL[]']) ?>
</div>
</div>
<?php endforeach ?>
<div class="form-group row">
<label class="col-sm-3 col-form-label wt-page-options-label" for="CHIL<?= e(count($children) + 1) ?>">
<?= I18N::translate('Child') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<?= FunctionsEdit::formControlIndividual($tree, null, ['id' => 'CHIL[]' . (count($children) + 1), 'name' => 'CHIL[]']) ?>
</div>
</div>
<div class="form-group row">
<div class="col-sm-3 wt-page-options-label">
</div>
<div class="col-sm-9 wt-page-options-value">
<button class="btn btn-primary" type="submit">
<?= view('icons/save') ?>
<?= /* I18N: A button label. */
I18N::translate('save') ?>
</button>
<a class="btn btn-secondary" href="<?= e($family->url()) ?>">
<?= view('icons/cancel') ?>
<?= /* I18N: A button label. */
I18N::translate('cancel') ?>
</a>
</div>
</div>
</form>
|