summaryrefslogtreecommitdiff
path: root/search.php
blob: d122bd62172769685c8815ed552676c5bab7ee72 (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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
<?php
/**
 * webtrees: online genealogy
 * Copyright (C) 2017 webtrees development team
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
namespace Fisharebest\Webtrees;

use Fisharebest\Webtrees\Controller\SearchController;
use Fisharebest\Webtrees\Functions\FunctionsPrint;

require 'includes/session.php';

$controller = new SearchController;
$controller->pageHeader();

?>
<script>
function checknames(frm) {
	action = "<?= $controller->action ?>";
	if (action === "general") {
		if (frm.query.value.length<2) {
			alert("<?= I18N::translate('Please enter more than one character.') ?>");
			frm.query.focus();
			return false;
		}
	} else if (action === "soundex") {
		year = frm.year.value;
		fname = frm.firstname.value;
		lname = frm.lastname.value;
		place = frm.place.value;

		if (year === "") {
			if (fname.length < 2 && lname.length < 2 && place.length < 2) {
				alert("<?= I18N::translate('Please enter more than one character.') ?>");
				return false;
			}
		}

		if (year !== "") {
			if (fname === "" && lname === "" && place === "") {
				alert("<?= I18N::translate('Please enter a given name, surname, or place in addition to the year') ?>");
				frm.firstname.focus();
				return false;
			}
		}
		return true;
	}
	return true;
}
</script>

<div id="search-page">
	<h2 class="wt-page-title"><?= $controller->getPageTitle() ?></h2>
	<?php if ($controller->action === 'general'): ?>
	<form class="wt-page-options wt-page-options-search hidden-print" name="searchform" onsubmit="return checknames(this);">
		<input type="hidden" name="action" value="general">
		<input type="hidden" name="isPostBack" value="true">
		<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="<?= Html::escape($controller->query) ?>" autofocus>
					<span class="input-group-addon"><?= FunctionsPrint::printSpecialCharacterLink('query') ?></span>
				</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" checked value="checked" name="srindi" type="checkbox">
						<?= I18N::translate('Individuals') ?>
						</label>
					</div>
					<div class="form-check form-check-inline">
						<label class="form-check-label">
						<input class="form-check-input"  value="checked" name="srfams" type="checkbox">
						<?= I18N::translate('Families') ?>
						</label>
					</div>
					<div class="form-check form-check-inline">
						<label class="form-check-label">
						<input class="form-check-input" value="checked" name="srsour" type="checkbox">
						<?= I18N::translate('Sources') ?>
						</label>
					</div>
					<div class="form-check form-check-inline">
						<label class="form-check-label">
						<input class="form-check-input" value="checked" name="srnote" type="checkbox">
						<?= I18N::translate('Shared notes') ?>
						</label>
					</div>
				</div>
			</div>
		</fieldset>
		<div class="row form-group">
			<label class="col-sm-3 col-form-label wt-page-options-label">
			<?= I18N::translate('Associates') ?>
			</label>
			<div class="col-sm-9 wt-page-options-value">
				<div class="form-check">
					<label class="form-check-label">
					<input class="form-check-input" name="showasso" value="checked" type="checkbox">
					<?= I18N::translate('Show related individuals/families') ?>
					</label>
				</div>
			</div>
		</div>
		
		<?php if (count(Tree::getAll()) > 1 && Site::getPreference('ALLOW_CHANGE_GEDCOM') === '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 (Tree::getAll() as $tree): ?>
							<div class="col px-0">
								<label class="form-check-label">
									<input class="form-check form-check-input" type="checkbox" <?= in_array($tree, $controller->search_trees) ? 'checked' : '' ?> value="yes" id="tree_<?= $tree->getTreeId() ?>" name="tree_<?= $tree->getTreeId() ?>">
									<?= $tree->getTitleHtml() ?>
								</label>
							</div>
							<?php endforeach ?>
						</div>
						<?php if (count(Tree::getAll()) > 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(Tree::getAll()) > 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 ?>
							<?php endif ?>
						</div>
					</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 endif ?>
<?php if ($controller->action === 'replace'): ?>
	<form class="wt-page-options wt-page-options-ancestors-chart hidden-print" method="post" name="searchform" onsubmit="return checknames(this);">
		<input type="hidden" name="action" value="replace">
		<input type="hidden" name="isPostBack" value="true">
		<div class="row form-group">
			<label class="col-sm-3 col-form-label wt-page-options-label">
				<?= I18N::translate('Search for') ?>
			</label>
			<div class="col-sm-9 wt-page-options-value">
				<input class="form-control form-control-sm" name="query" value="<?= Html::escape($controller->query) ?>" type="text" autofocus>
			</div>
		</div>
		<div class="row form-group">
			<label class="col-sm-3 col-form-label wt-page-options-label">
				<?= I18N::translate('Replace with') ?>
			</label>
			<div class="col-sm-9 wt-page-options-value">
				<input class="form-control form-control-sm" name="replace" value="<?= Html::escape($controller->replace) ?>" type="text">
			</div>
		</div>
			<script>
			function checkAll(box) {
				if (box.checked) {
					box.form.replaceNames.disabled = true;
					box.form.replacePlaces.disabled = true;
					box.form.replacePlacesWord.disabled = true;
					box.form.replaceNames.checked = false;
					box.form.replacePlaces.checked = false;
					box.form.replacePlacesWord.checked = false;
				} else {
					box.form.replaceNames.disabled = false;
					box.form.replacePlaces.disabled = false;
					box.form.replacePlacesWord.disabled = false;
					box.form.replaceNames.checked = true;
				}
			}
			</script>
		<div class="row form-group">
			<label class="col-sm-3 col-form-label wt-page-options-label">
			<?= /* I18N: A button label. */ I18N::translate('Search') ?>
			</label>
			<div class="col-sm-9 wt-page-options-value">
				<div class="form-check mt-2">
					<label class="form-check-label">
						<input class="form-check-input" <?= $controller->replaceAll ?> onclick="checkAll(this);" value="checked" name="replaceAll" type="checkbox">
						<?= I18N::translate('Entire record') ?>
					</label>
				</div>
				<hr>
				<div class="form-check">
					<label class="form-check-label">
						<input class="form-check-input" <?= $controller->replaceNames ?> <?= $controller->replaceAll ? 'disabled' : '' ?> value="checked" name="replaceNames" type="checkbox">
						<?= I18N::translate('Names') ?>
					</label>
				</div>
				<div class="form-check">
					<label class="form-check-label">
						<input class="form-check-input" <?= $controller->replacePlaces ?> <?= $controller->replaceAll ? 'disabled' : '' ?> value="checked" name="replacePlaces" type="checkbox">
						<?= I18N::translate('Places') ?>
					</label>
				</div>
				<div class="form-check">
					<label class="form-check-label">
						<input class="form-check-input" <?= $controller->replacePlacesWord ?> <?= $controller->replaceAll ? 'disabled' : '' ?> value="checked" name="replacePlacesWord" type="checkbox">
						<?= I18N::translate('Whole words only') ?>
					</label>
				</div>
			</div>
		</div>
		<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 class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */ I18N::translate('replace') ?>">
			</div>
		</div>
	</form>
<?php endif ?>
<?php if ($controller->action === 'soundex'): ?>
	<form class="wt-page-options wt-page-options-ancestors-chart hidden-print" name="searchform" onsubmit="return checknames(this);">
		<input type="hidden" name="action" value="soundex">
		<input type="hidden" name="isPostBack" value="true">
		<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="<?= Html::escape($controller->firstname) ?>" autofocus>
					<span class="input-group-addon"><?= FunctionsPrint::printSpecialCharacterLink('query') ?></span>
				</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="<?= Html::escape($controller->lastname) ?>">
					<span class="input-group-addon"><?= FunctionsPrint::printSpecialCharacterLink('query') ?></span>
				</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="<?= Html::escape($controller->place) ?>">
			</div>
		</div>
		<div class="row form-group">
			<label class="col-sm-3 col-form-label wt-page-options-label" for="year">
				<?= I18N::translate('Year') ?>
			</label>
			<div class="col-sm-9 wt-page-options-value">
				<input class="form-control form-control-sm" type="text" name="year" id="year" value="<?= Html::escape($controller->year) ?>">
			</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" <?= $controller->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" <?= $controller->soundex === 'DaitchM' || $controller->soundex === '' ? 'checked' : '' ?>>
						<?= I18N::translate('Daitch-Mokotoff') ?>
						</label>
					</div>
				</div>
			</div>
		</fieldset>
		<div class="row form-group">
				<label class="col-sm-3 col-form-label wt-page-options-label">
				<?= I18N::translate('Associates') ?>
				</label>
				<div class="col-sm-9 wt-page-options-value">
					<div class="form-check">
						<label class="form-check-label">
						<input class="form-check-input" id="showasso" name="showasso" value="1" type="checkbox">
						<?= I18N::translate('Show related individuals/families') ?>
						</label>
					</div>
				</div>
			</div>

			<?php if (count(Tree::getAll()) > 1 && Site::getPreference('ALLOW_CHANGE_GEDCOM') === '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 (Tree::getAll() as $tree): ?>
								<div class="col px-0">
									<label class="form-check-label">
										<input class="form-check form-check-input" type="checkbox" <?= in_array($tree, $controller->search_trees) ? 'checked' : '' ?> value="yes" id="tree_<?= $tree->getTreeId() ?>" name="tree_<?= $tree->getTreeId() ?>">
										<?= $tree->getTitleHtml() ?>
									</label>
								</div>
								<?php endforeach ?>
							</div>
							<?php if (count(Tree::getAll()) > 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(Tree::getAll()) > 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 ?>
								<?php endif ?>
							</div>
						</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 endif ?>
<?php $controller->printResults() ?>
</div>