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
115
116
|
<?php use Fisharebest\Webtrees\I18N; ?>
<h2 class="wt-page-title">
<?= $title ?>
</h2>
<form method="get" action="<?= e(route('search-phonetic')) ?>" class="wt-page-options wt-page-options-ancestors-chart hidden-print mb-4" name="searchform">
<input type="hidden" name="route" value="<?= e(route('search-phonetic')) ?>">
<input type="hidden" name="ged" value="<?= e($tree->name()) ?>">
<div class="row form-group">
<label class="col-sm-3 col-form-label wt-page-options-label" for="firstname">
<?= I18N::translate('Given name') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<div class="input-group input-group-sm">
<input class= "form-control form-control-sm" type="text" name="firstname" id="firstname" value="<?= e($firstname) ?>" autofocus>
<?= view('edit/input-addon-keyboard', ['id' => 'firstname']) ?>
</div>
</div>
</div>
<div class="row form-group">
<label class="col-sm-3 col-form-label wt-page-options-label" for="lastname">
<?= I18N::translate('Surname') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<div class="input-group input-group-sm">
<input class="form-control form-control-sm" type="text" name="lastname" id="lastname" value="<?= e($lastname) ?>">
<?= view('edit/input-addon-keyboard', ['id' => 'lastname']) ?>
</div>
</div>
</div>
<div class="row form-group">
<label class="col-sm-3 col-form-label wt-page-options-label" for="place">
<?= I18N::translate('Place') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<input class="form-control form-control-sm" type="text" name="place" id="place" value="<?= e($place) ?>">
</div>
</div>
<fieldset class="form-group">
<div class="row">
<label class="col-sm-3 col-form-label wt-page-options-label">
<?= I18N::translate('Phonetic algorithm') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<div class="form-check form-check-inline">
<label class="form-check-label">
<input class="form-check-input" type="radio" name="soundex" value="Russell" <?= $soundex === 'Russell' ? 'checked' : '' ?>>
<?= I18N::translate('Russell') ?>
</label>
</div>
<div class="form-check form-check-inline">
<label class="form-check-label">
<input class="form-check-input" type="radio" name="soundex" value="DaitchM" <?= $soundex === 'DaitchM' ? 'checked' : '' ?>>
<?= I18N::translate('Daitch-Mokotoff') ?>
</label>
</div>
</div>
</div>
</fieldset>
<?php if (count($all_trees) > 1) : ?>
<fieldset class="form-group">
<div class="row">
<label class="col-sm-3 col-form-label wt-page-options-label">
<?= I18N::translate('Family trees') ?>
</label>
<div class="col-sm-9 wt-page-options-value pt-2">
<div class="d-flex justify-content-between">
<div id="search-trees" class="form-check">
<?php foreach ($all_trees as $tree) : ?>
<div class="col px-0">
<label class="form-check-label">
<input class="form-check form-check-input" type="checkbox" <?= in_array($tree, $search_trees, true) ? 'checked' : '' ?> value="<?= $tree->name() ?>" name="search_trees[]">
<?= e($tree->title()) ?>
</label>
</div>
<?php endforeach ?>
</div>
<?php if (count($all_trees) > 3) : ?>
<div class="d-row align-self-end mb-2">
<input type="button" class="btn btn-sm btn-secondary mx-1" value="<?= /* I18N: select all (of the family trees) */ I18N::translate('select all') ?>" onclick="$('#search-trees :checkbox').each(function(){$(this).attr('checked', true);});return false;">
<input type="button" class="btn btn-sm btn-secondary mx-1" value="<?= /* I18N: select none (of the family trees) */ I18N::translate('select none') ?>" onclick="$('#search-trees :checkbox').each(function(){$(this).attr('checked', false);});return false;">
<?php if (count($all_trees) > 10) : ?>
<input type="button" value="<?= I18N::translate('invert selection') ?>" onclick="$('#search-trees :checkbox').each(function(){$(this).attr('checked', !$(this).attr('checked'));});return false;">
<?php endif ?>
</div>
<?php endif ?>
</div>
</div>
</div>
</fieldset>
<?php endif ?>
<div class="row form-group">
<label class="col-sm-3 col-form-label wt-page-options-label"></label>
<div class="col-sm-9 wt-page-options-value">
<input type="submit" class="btn btn-primary" value="<?= /* I18N: A button label. */ I18N::translate('search') ?>">
</div>
</div>
</form>
<?php if ($firstname !== '' || $lastname !== '' || $place !== '') : ?>
<?php if (empty($individuals)) : ?>
<div class="alert alert-info row">
<?= I18N::translate('No results found.') ?>
</div>
<?php else : ?>
<?= view('search-results', ['individuals' => $individuals, 'search_families' => false, 'search_individuals' => true, 'search_notes' => false, 'search_sources' => false, 'search_repositories' => false]) ?>
<?php endif ?>
<?php endif ?>
<?= view('modals/on-screen-keyboard') ?>
|