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
|
<?php
use Fisharebest\Webtrees\Http\RequestHandlers\SearchPhoneticAction;
use Fisharebest\Webtrees\I18N;
use Fisharebest\Webtrees\Individual;
use Fisharebest\Webtrees\Tree;
use Illuminate\Support\Collection;
/**
* @var Collection<Tree> $all_trees
* @var string $firstname
* @var Collection<Individual> $individuals
* @var string $lastname
* @var string $place
* @var Collection<Tree> $search_trees
* @var string $soundex
* @var string $title
* @var Tree $tree
*/
?>
<h2 class="wt-page-title">
<?= $title ?>
</h2>
<form method="post" action="<?= e(route(SearchPhoneticAction::class, ['tree' => $tree->name()])) ?>" class="wt-page-options wt-page-options-ancestors-chart hidden-print mb-4" name="searchform">
<?= csrf_field() ?>
<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 class= "form-control" 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 class="form-control" 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" 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">
<input class="form-check-input" type="radio" name="soundex" value="Russell" <?= $soundex === 'Russell' ? 'checked' : '' ?> id="russell">
<label class="form-check-label" for="russell">
<?= I18N::translate('Russell') ?>
</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="soundex" value="DaitchM" <?= $soundex === 'DaitchM' ? 'checked' : '' ?> id="d-m">
<label class="form-check-label" for="d-m">
<?= I18N::translate('Daitch-Mokotoff') ?>
</label>
</div>
</div>
</div>
</fieldset>
<?= view('search-trees', ['all_trees' => $all_trees, 'search_trees' => $search_trees]) ?>
<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 ($individuals->isEmpty()) : ?>
<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_locations' => false, 'search_notes' => false, 'search_sources' => false, 'search_repositories' => false, 'tree' => $tree]) ?>
<?php endif ?>
<?php endif ?>
<?= view('modals/on-screen-keyboard') ?>
|