-
Notifications
You must be signed in to change notification settings - Fork 0
/
search_advanced.php
298 lines (287 loc) · 13.8 KB
/
search_advanced.php
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
<?php
// Searches based on user query.
//
// webtrees: Web based Family History software
// Copyright (C) 2012 webtrees development team.
//
// Derived from PhpGedView
// Copyright (C) 2002 to 2009 PGV Development Team. All rights reserved.
//
// 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 2 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, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// $Id$
define('WT_SCRIPT_NAME', 'search_advanced.php');
require './includes/session.php';
require_once WT_ROOT.'includes/functions/functions_print_lists.php';
$controller=new WT_Controller_AdvancedSearch();
$controller
->addExternalJavascript(WT_STATIC_URL.'js/autocomplete.js')
->pageHeader();
echo '<script>';
?>
function checknames(frm) {
action = "<?php echo $controller->action; ?>";
return true;
}
var numfields = <?php echo count($controller->fields); ?>;
/**
* add a row to the table of fields
*/
function addFields() {
// get the table
var tbl = document.getElementById('field_table').tBodies[0];
// create the new row
var trow = document.createElement('tr');
// create the new label cell
var label = document.createElement('td');
label.className='list_label';
// create a select for the user to choose the field
var sel = document.createElement('select');
sel.name = 'fields['+numfields+']';
sel.rownum = numfields;
sel.onchange = function() {
showDate(this, this.rownum);
};
// all of the field options
<?php foreach ($controller->getOtherFields() as $field=>$label) { ?>
opt = document.createElement('option');
opt.value='<?php echo $field; ?>';
opt.text='<?php echo addslashes($label); ?>';
sel.options.add(opt);
<?php } ?>
label.appendChild(sel);
trow.appendChild(label);
// create the new value cell
var val = document.createElement('td');
val.id = 'vcell'+numfields;
val.className='list_value';
var inp = document.createElement('input');
inp.name='values['+numfields+']';
inp.type='text';
inp.id='value'+numfields;
inp.tabindex=numfields+1;
val.appendChild(inp);
trow.appendChild(val);
var lastRow = tbl.lastChild.previousSibling;
tbl.insertBefore(trow, lastRow.nextSibling);
numfields++;
}
/**
* add the date options selection
*/
function showDate(sel, row) {
var type = sel.options[sel.selectedIndex].value;
var pm = document.getElementById('plusminus'+row);
if (!type.match("DATE$")) {
// if it is not a date do not show the date
if (pm) pm.parentNode.removeChild(pm);
return;
}
// if it is a date and the plusminus is already show, then leave
if (pm) return;
var elm = document.getElementById('vcell'+row);
var sel = document.createElement('select');
sel.id = 'plusminus'+row;
sel.name = 'plusminus['+row+']';
var opt = document.createElement('option');
opt.value='';
opt.text='<?php echo WT_I18N::translate('Exact date'); ?>';
sel.appendChild(opt);
opt = document.createElement('option');
opt.value='';
/* The translation strings use HTML entities, but javascript does not. See bug 687980 */
opt.text='<?php echo html_entity_decode(WT_I18N::plural('±%d year','±%d years', 2, 2), ENT_COMPAT, 'UTF-8'); ?>';
sel.appendChild(opt);
opt = document.createElement('option');
opt.value='5';
opt.text='<?php echo html_entity_decode(WT_I18N::plural('±%d year','±%d years', 5, 5), ENT_COMPAT, 'UTF-8'); ?>';
sel.appendChild(opt);
opt = document.createElement('option');
opt.value='10';
opt.text='<?php echo html_entity_decode(WT_I18N::plural('±%d year','±%d years', 10, 10), ENT_COMPAT, 'UTF-8'); ?>';
sel.appendChild(opt);
var spc = document.createTextNode(' ');
elm.appendChild(spc);
elm.appendChild(sel);
}
<?php
echo '</script>';
?>
<div id="search-page">
<h2 class="center"><?php echo $controller->getPageTitle(); ?></h2>
<?php $somethingPrinted = $controller->PrintResults(); ?>
<!-- /*************************************************** Search Form Outer Table **************************************************/ -->
<form method="post" name="searchform" onsubmit="return checknames(this);" action="search_advanced.php">
<input type="hidden" name="action" value="<?php echo $controller->action; ?>">
<input type="hidden" name="isPostBack" value="true">
<table id="field_table" class="list_table" width="35%" border="0">
<!-- // search terms -->
<?php
$fct = count($controller->fields);
for ($i=0; $i<$fct; $i++) {
if (strpos($controller->getField($i), "FAMC:HUSB:NAME")===0) continue;
if (strpos($controller->getField($i), "FAMC:WIFE:NAME")===0) continue;
?>
<tr>
<td class="list_label">
<?php echo $controller->getLabel($controller->getField($i)); ?>
</td>
<td id="vcell<?php echo $i; ?>" class="list_value">
<?php
$currentFieldSearch = $controller->getField($i); // Get this field's name and the search criterion
$currentField = substr($currentFieldSearch, 0, strrpos($currentFieldSearch, ':')); // Get the actual field name
?>
<input tabindex="<?php echo $i+1; ?>" type="text" id="value<?php echo $i; ?>" name="values[<?php echo $i; ?>]" value="<?php echo $controller->getValue($i); ?>"<?php echo (substr($controller->getField($i),-4)=='PLAC') ? 'class="PLAC"' : ''; ?>>
<?php if (preg_match("/^NAME:/", $currentFieldSearch)>0) { ?>
<select name="fields[<?php echo $i; ?>]">
<option value="<?php echo $currentField; ?>:EXACT"<?php if (preg_match("/:EXACT$/", $currentFieldSearch)>0) echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Exact'); ?></option>
<option value="<?php echo $currentField; ?>:BEGINS"<?php if (preg_match("/:BEGINS$/", $currentFieldSearch)>0) echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Begins with'); ?></option>
<option value="<?php echo $currentField; ?>:CONTAINS"<?php if (preg_match("/:CONTAINS$/", $currentFieldSearch)>0) echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Contains'); ?></option>
<option value="<?php echo $currentField; ?>:SDX"<?php if (preg_match("/:SDX$/", $currentFieldSearch)>0) echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Sounds like'); ?></option>
</select>
<?php } else { ?>
<input type="hidden" name="fields[<?php echo $i; ?>]" value="<?php echo $controller->getField($i); ?>">
<?php }
if (preg_match("/:DATE$/", $currentFieldSearch)>0) {
?>
<select name="plusminus[<?php echo $i; ?>]">
<option value=""><?php echo WT_I18N::translate('Exact date'); ?></option>
<option value="2" <?php if (!empty($controller->plusminus[$i]) && $controller->plusminus[$i]==2) echo " selected=\"selected\""; ?>><?php echo WT_I18N::plural('±%d year','±%d years', 2, 2); ?></option>
<option value="5" <?php if (!empty($controller->plusminus[$i]) && $controller->plusminus[$i]==5) echo "selected=\"selected\""; ?>><?php echo WT_I18N::plural('±%d year','±%d years', 5, 5); ?></option>
<option value="10" <?php if (!empty($controller->plusminus[$i]) && $controller->plusminus[$i]==10) echo "selected=\"selected\""; ?>><?php echo WT_I18N::plural('±%d year','±%d years', 10, 10); ?></option>
</select>
<?php } ?>
</td>
<?php
//-- relative fields
if ($i==0 && $fct>4) {
$j=$fct;
// Get the current options for Father's and Mother's name searches
$fatherGivnOption = 'SDX';
$fatherSurnOption = 'SDX';
$motherGivnOption = 'SDX';
$motherSurnOption = 'SDX';
for ($k=0; $k<$fct; $k++) {
$searchField = $controller->getField($k);
$searchOption = substr($searchField, 20); // Assume we have something like "FAMC:HUSB:NAME:GIVN:foo"
switch (substr($searchField, 0, 20)) {
case 'FAMC:HUSB:NAME:GIVN:':
$fatherGivnOption = $searchOption;
break;
case 'FAMC:HUSB:NAME:SURN:':
$fatherSurnOption = $searchOption;
break;
case 'FAMC:WIFE:NAME:GIVN:':
$motherGivnOption = $searchOption;
break;
case 'FAMC:WIFE:NAME:SURN:':
$motherSurnOption = $searchOption;
break;
}
}
?>
<td rowspan="100" class="list_value">
<table>
<!-- father -->
<tr>
<td colspan="2" class="facts_label03" style="text-align:center;">
<?php echo WT_I18N::translate('Father'); ?>
</td>
</tr>
<tr>
<td class="list_label">
<?php echo WT_Gedcom_Tag::getLabel('GIVN'); ?>
</td>
<td class="list_value">
<input type="text" name="values[<?php echo $j; ?>]" value="<?php echo $controller->getValue($controller->getIndex('FAMC:HUSB:NAME:GIVN:'.$fatherGivnOption)); ?>">
<select name="fields[<?php echo $j; ?>]">
<option value="FAMC:HUSB:NAME:GIVN:EXACT"<?php if ($fatherGivnOption == 'EXACT') echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Exact'); ?></option>
<option value="FAMC:HUSB:NAME:GIVN:BEGINS"<?php if ($fatherGivnOption == 'BEGINS') echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Begins with'); ?></option>
<option value="FAMC:HUSB:NAME:GIVN:CONTAINS"<?php if ($fatherGivnOption == 'CONTAINS') echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Contains'); ?></option>
<option value="FAMC:HUSB:NAME:GIVN:SDX"<?php if ($fatherGivnOption == 'SDX') echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Sounds like'); ?></option>
</select>
</td>
</tr>
<tr>
<?php $j++; ?>
<td class="list_label">
<?php echo WT_Gedcom_Tag::getLabel('SURN'); ?>
</td>
<td class="list_value">
<input type="text" name="values[<?php echo $j; ?>]" value="<?php echo $controller->getValue($controller->getIndex('FAMC:HUSB:NAME:SURN:'.$fatherSurnOption)); ?>">
<select name="fields[<?php echo $j; ?>]">
<option value="FAMC:HUSB:NAME:SURN:EXACT"<?php if ($fatherSurnOption == 'EXACT') echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Exact'); ?></option>
<option value="FAMC:HUSB:NAME:SURN:BEGINS"<?php if ($fatherSurnOption == 'BEGINS') echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Begins with'); ?></option>
<option value="FAMC:HUSB:NAME:SURN:CONTAINS"<?php if ($fatherSurnOption == 'CONTAINS') echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Contains'); ?></option>
<option value="FAMC:HUSB:NAME:SURN:SDX"<?php if ($fatherSurnOption == 'SDX') echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Sounds like'); ?></option>
</select>
</td>
</tr>
<!-- mother -->
<?php $j++; ?>
<tr><td colspan="2"> </td></tr>
<tr>
<td colspan="2" class="facts_label03" style="text-align:center;">
<?php echo WT_I18N::translate('Mother'); ?>
</td>
</tr>
<tr>
<td class="list_label">
<?php echo WT_Gedcom_Tag::getLabel('GIVN'); ?>
</td>
<td class="list_value">
<input type="text" name="values[<?php echo $j; ?>]" value="<?php echo $controller->getValue($controller->getIndex('FAMC:WIFE:NAME:GIVN:'.$motherGivnOption)); ?>">
<select name="fields[<?php echo $j; ?>]">
<option value="FAMC:WIFE:NAME:GIVN:EXACT"<?php if ($motherGivnOption == 'EXACT') echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Exact'); ?></option>
<option value="FAMC:WIFE:NAME:GIVN:BEGINS"<?php if ($motherGivnOption == 'BEGINS') echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Begins with'); ?></option>
<option value="FAMC:WIFE:NAME:GIVN:CONTAINS"<?php if ($motherGivnOption == 'CONTAINS') echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Contains'); ?></option>
<option value="FAMC:WIFE:NAME:GIVN:SDX"<?php if ($motherGivnOption == 'SDX') echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Sounds like'); ?></option>
</select>
</td>
<?php $j++; ?>
</tr>
<tr>
<td class="list_label">
<?php echo WT_Gedcom_Tag::getLabel('SURN'); ?>
</td>
<td class="list_value">
<input type="text" name="values[<?php echo $j; ?>]" value="<?php echo $controller->getValue($controller->getIndex('FAMC:WIFE:NAME:SURN:'.$motherSurnOption)); ?>">
<select name="fields[<?php echo $j; ?>]">
<option value="FAMC:WIFE:NAME:SURN:EXACT"<?php if ($motherSurnOption == 'EXACT') echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Exact'); ?></option>
<option value="FAMC:WIFE:NAME:SURN:BEGINS"<?php if ($motherSurnOption == 'BEGINS') echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Begins with'); ?></option>
<option value="FAMC:WIFE:NAME:SURN:CONTAINS"<?php if ($motherSurnOption == 'CONTAINS') echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Contains'); ?></option>
<option value="FAMC:WIFE:NAME:SURN:SDX"<?php if ($motherSurnOption == 'SDX') echo " selected=\"selected\""; ?>><?php echo WT_I18N::translate('Sounds like'); ?></option>
</select>
</td>
<?php $j++; ?>
</tr>
<!-- spouse -->
<!--tr-->
<?php $j++; ?>
<!--/tr-->
</table>
</td>
<?php } ?>
</tr>
<?php } ?>
</table>
<div class="center" style="margin-top:10px;">
<a href="#" onclick="addFields();"><?php echo WT_I18N::translate('Add More Fields'); ?></a>
</div>
<div id="search_submit">
<input tabindex="<?php echo $i+1; ?>" type="submit" value="<?php echo WT_I18N::translate('Search'); ?>">
</div>
</form>
</div>