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-general')) ?>" class="wt-page-options wt-page-options-search hidden-print mb-4" name="searchform">
<input type="hidden" name="route" value="<?= e(route('search-general')) ?>">
<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="query">
<?= I18N::translate('Search for') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<div class="input-group input-group-sm">
<input id="query" class="form-control form-control-sm" type="text" name="query" value="<?= e($query) ?>" required>
<?= view('edit/input-addon-keyboard', ['id' => 'query']) ?>
</div>
</div>
</div>
<fieldset class="form-group">
<div class="row">
<label class="col-sm-3 col-form-label wt-page-options-label">
<?= I18N::translate('Records') ?>
</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" <?= $search_individuals ? 'checked' : '' ?> name="search_individuals" type="checkbox">
<?= I18N::translate('Individuals') ?>
</label>
</div>
<div class="form-check form-check-inline">
<label class="form-check-label">
<input class="form-check-input" <?= $search_families ? 'checked' : '' ?> name="search_families" type="checkbox">
<?= I18N::translate('Families') ?>
</label>
</div>
<div class="form-check form-check-inline">
<label class="form-check-label">
<input class="form-check-input" <?= $search_sources ? 'checked' : '' ?> name="search_sources" type="checkbox">
<?= I18N::translate('Sources') ?>
</label>
</div>
<div class="form-check form-check-inline">
<label class="form-check-label">
<input class="form-check-input" <?= $search_repositories ? 'checked' : '' ?> name="search_repositories" type="checkbox">
<?= I18N::translate('Repositories') ?>
</label>
</div>
<div class="form-check form-check-inline">
<label class="form-check-label">
<input class="form-check-input" <?= $search_notes ? 'checked' : '' ?> name="search_notes" type="checkbox">
<?= I18N::translate('Shared notes') ?>
</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 ($query !== '') : ?>
<?php if (empty($individuals) && empty($families) && empty($repositories) && empty($sources) && empty($notes)) : ?>
<div class="alert alert-info row">
<?= I18N::translate('No results found.') ?>
</div>
<?php else : ?>
<?= view('search-results', ['families' => $families, 'individuals' => $individuals, 'notes' => $notes, 'repositories' => $repositories, 'sources' => $sources, 'search_families' => $search_families, 'search_individuals' => $search_individuals, 'search_notes' => $search_notes, 'search_repositories' => $search_repositories, 'search_sources' => $search_sources]) ?>
<?php endif ?>
<?php endif ?>
<?= view('modals/on-screen-keyboard') ?>
|