forked from fisharebest/webtrees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autocomplete.php
552 lines (526 loc) · 19 KB
/
autocomplete.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
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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
<?php
// Returns data for autocompletion
//
// webtrees: Web based Family History software
// Copyright (C) 2013 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 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
define('WT_SCRIPT_NAME', 'autocomplete.php');
require './includes/session.php';
header('Content-Type: text/plain; charset=UTF-8');
// We have finished writing session data, so release the lock
Zend_Session::writeClose();
$term = WT_Filter::get('term'); // we can search on '"><& etc.
$type = WT_Filter::get('field');
switch ($type) {
case 'ASSO': // Associates of an individuals, whose name contains the search terms
$data=array();
// Fetch all data, regardless of privacy
$rows=
WT_DB::prepare(
"SELECT 'INDI' AS type, i_id AS xref, i_file AS gedcom_id, i_gedcom AS gedcom, n_full".
" FROM `##individuals`".
" JOIN `##name` ON (i_id=n_id AND i_file=n_file)".
" WHERE (n_full LIKE CONCAT('%', REPLACE(?, ' ', '%'), '%') OR n_surn LIKE CONCAT('%', REPLACE(?, ' ', '%'), '%')) AND i_file=? ORDER BY n_full COLLATE '".WT_I18N::$collation."'"
)
->execute(array($term, $term, WT_GED_ID))
->fetchAll();
// Filter for privacy - and whether they could be alive at the right time
$pid = WT_Filter::get('pid', WT_REGEX_XREF);
$event_date = WT_Filter::get('event_date');
$record = WT_GedcomRecord::getInstance($pid); // INDI or FAM
$tmp = new WT_Date($event_date);
$event_jd = $tmp->JD();
// INDI
$indi_birth_jd = 0;
if ($record instanceof WT_Individual) {
$indi_birth_jd=$record->getEstimatedBirthDate()->minJD();
}
// HUSB & WIFE
$husb_birth_jd = 0;
$wife_birth_jd = 0;
if ($record instanceof WT_Family) {
$husb=$record->getHusband();
if ($husb) {
$husb_birth_jd = $husb->getEstimatedBirthDate()->minJD();
}
$wife=$record->getWife();
if ($wife) {
$wife_birth_jd = $wife->getEstimatedBirthDate()->minJD();
}
}
foreach ($rows as $row) {
$person=WT_Individual::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if ($person->canShowName()) {
// filter ASSOciate
if ($event_jd) {
// no self-ASSOciate
if ($pid && $person->getXref()==$pid) {
continue;
}
// filter by birth date
$person_birth_jd=$person->getEstimatedBirthDate()->minJD();
if ($person_birth_jd) {
// born after event or not a contemporary
if ($event_jd && $person_birth_jd>$event_jd) {
continue;
} elseif ($indi_birth_jd && abs($indi_birth_jd-$person_birth_jd)>$MAX_ALIVE_AGE*365) {
continue;
} elseif ($husb_birth_jd && $wife_birth_jd && abs($husb_birth_jd-$person_birth_jd)>$MAX_ALIVE_AGE*365 && abs($wife_birth_jd-$person_birth_jd)>$MAX_ALIVE_AGE*365) {
continue;
} elseif ($husb_birth_jd && abs($husb_birth_jd-$person_birth_jd)>$MAX_ALIVE_AGE*365) {
continue;
} elseif ($wife_birth_jd && abs($wife_birth_jd-$person_birth_jd)>$MAX_ALIVE_AGE*365) {
continue;
}
}
// filter by death date
$person_death_jd=$person->getEstimatedDeathDate()->MaxJD();
if ($person_death_jd) {
// dead before event or not a contemporary
if ($event_jd && $person_death_jd<$event_jd) {
continue;
} elseif ($indi_birth_jd && $person_death_jd<$indi_birth_jd) {
continue;
} elseif ($husb_birth_jd && $wife_birth_jd && $person_death_jd<$husb_birth_jd && $person_death_jd<$wife_birth_jd) {
continue;
} elseif ($husb_birth_jd && $person_death_jd<$husb_birth_jd) {
continue;
} elseif ($wife_birth_jd && $person_death_jd<$wife_birth_jd) {
continue;
}
}
}
// display
$label=str_replace(array('@N.N.', '@P.N.'), array($UNKNOWN_NN, $UNKNOWN_PN), $row->n_full);
if ($event_jd && $person->getBirthDate()->isOK()) {
$label.=", <span class=\"age\">(".WT_I18N::translate('Age')." ".$person->getBirthDate()->MinDate()->getAge(false, $event_jd).")</span>";
} else {
$label.=', <i>'.$person->getLifeSpan().'</i>';
}
$data[]=array('value'=>$row->xref, 'label'=>$label);
}
}
echo json_encode($data);
exit;
case 'CEME': // Cemetery fields, that contain the search term
$data=array();
// Fetch all data, regardless of privacy
$rows=
WT_DB::prepare(
"SELECT SQL_CACHE i_id AS xref, i_file AS gedcom_id, i_gedcom AS gedcom".
" FROM `##individuals`".
" WHERE i_gedcom LIKE '%\n2 CEME %' AND i_file=?".
" ORDER BY SUBSTRING_INDEX(i_gedcom, '\n2 CEME ', -1) COLLATE '".WT_I18N::$collation."'"
)
->execute(array(WT_GED_ID))
->fetchAll();
// Filter for privacy
foreach ($rows as $row) {
$person=WT_Individual::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if (preg_match('/\n2 CEME (.*'.preg_quote($term, '/').'.*)/i', $person->getGedcom(), $match)) {
if (!in_array($match[1], $data)) {
$data[]=$match[1];
}
}
}
echo json_encode($data);
exit;
case 'FAM': // Families, whose name contains the search terms
$data=array();
// Fetch all data, regardless of privacy
$rows=get_FAM_rows($term);
// Filter for privacy
foreach ($rows as $row) {
$family=WT_Family::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if ($family->canShowName()) {
$marriage_year=$family->getMarriageYear();
if ($marriage_year) {
$data[]=array('value'=>$family->getXref(), 'label'=>$family->getFullName().', <i>'.$marriage_year.'</i>');
} else {
$data[]=array('value'=>$family->getXref(), 'label'=>$family->getFullName());
}
}
}
echo json_encode($data);
exit;
case 'GIVN': // Given names, that start with the search term
// Do not filter by privacy. Given names on their own do not identify individuals.
echo json_encode(
WT_DB::prepare(
"SELECT SQL_CACHE DISTINCT n_givn".
" FROM `##name`".
" WHERE n_givn LIKE CONCAT(?, '%') AND n_file=?".
" ORDER BY n_givn COLLATE '".WT_I18N::$collation."'"
)
->execute(array($term, WT_GED_ID))
->fetchOneColumn()
);
exit;
case 'INDI': // Individuals, whose name contains the search terms
$data=array();
// Fetch all data, regardless of privacy
$rows=
WT_DB::prepare(
"SELECT i_id AS xref, i_file AS gedcom_id, i_gedcom AS gedcom, n_full".
" FROM `##individuals`".
" JOIN `##name` ON (i_id=n_id AND i_file=n_file)".
" WHERE (n_full LIKE CONCAT('%', REPLACE(?, ' ', '%'), '%') OR n_surn LIKE CONCAT('%', REPLACE(?, ' ', '%'), '%')) AND i_file=? ORDER BY n_full COLLATE '".WT_I18N::$collation."'"
)
->execute(array($term, $term, WT_GED_ID))
->fetchAll();
// Filter for privacy
foreach ($rows as $row) {
$person=WT_Individual::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if ($person->canShowName()) {
$data[]=array('value'=>$row->xref, 'label'=>str_replace(array('@N.N.', '@P.N.'), array($UNKNOWN_NN, $UNKNOWN_PN), $row->n_full).', <i>'.$person->getLifeSpan().'</i>');
}
}
echo json_encode($data);
exit;
case 'NOTE': // Notes which contain the search terms
$data=array();
// Fetch all data, regardless of privacy
$rows=get_NOTE_rows($term);
// Filter for privacy
foreach ($rows as $row) {
$note=WT_Note::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if ($note->canShowName()) {
$data[]=array('value'=>$note->getXref(), 'label'=>$note->getFullName());
}
}
echo json_encode($data);
exit;
case 'OBJE':
$data=array();
// Fetch all data, regardless of privacy
$rows=get_OBJE_rows($term);
// Filter for privacy
foreach ($rows as $row) {
$media=WT_Media::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if ($media->canShowName()) {
$data[]=array('value'=>$row->xref, 'label'=>'<img src="'.$media->getHtmlUrlDirect().'" width="25"> '.$media->getFullName());
}
}
echo json_encode($data);
exit;
case 'PLAC': // Place names (with hierarchy), that include the search term
// Do not filter by privacy. Place names on their own do not identify individuals.
$data=array();
foreach (WT_Place::findPlaces($term, WT_GED_ID) as $place) {
$data[]=$place->getGedcomName();
}
if (!$data && get_gedcom_setting(WT_GED_ID, 'USE_GEONAMES')) {
// No place found? Use an external gazetteer
$url=
"http://ws.geonames.org/searchJSON".
"?name_startsWith=".urlencode($term).
"&lang=".WT_LOCALE.
"&fcode=CMTY&fcode=ADM4&fcode=PPL&fcode=PPLA&fcode=PPLC".
"&style=full";
// try to use curl when file_get_contents not allowed
if (ini_get('allow_url_fopen')) {
$json = file_get_contents($url);
} elseif (function_exists('curl_init')) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$json = curl_exec($ch);
curl_close($ch);
} else {
return $data;
}
$places = json_decode($json, true);
if ($places["geonames"]) {
foreach ($places["geonames"] as $k => $place) {
$data[] = $place["name"].", ".
$place["adminName2"].", ".
$place["adminName1"].", ".
$place["countryName"];
}
}
}
echo json_encode($data);
exit;
case 'PLAC2': // Place names (without hierarchy), that include the search term
// Do not filter by privacy. Place names on their own do not identify individuals.
echo json_encode(
WT_DB::prepare(
"SELECT SQL_CACHE p_place".
" FROM `##places`".
" WHERE p_place LIKE CONCAT('%', ?, '%') AND p_file=?".
" ORDER BY p_place COLLATE '".WT_I18N::$collation."'"
)
->execute(array($term, WT_GED_ID))
->fetchOneColumn()
);
exit;
case 'REPO': // Repositories, that include the search terms
$data=array();
// Fetch all data, regardless of privacy
$rows=get_REPO_rows($term);
// Filter for privacy
foreach ($rows as $row) {
$record = WT_Repository::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if ($record->canShowName()) {
foreach ($record->getFacts('NAME') as $fact) {
$data[] = array('value'=>$record->getXref(), 'label'=>$fact->getValue());
}
}
}
echo json_encode($data);
exit;
case 'REPO_NAME': // Repository names, that include the search terms
$data=array();
// Fetch all data, regardless of privacy
$rows=get_REPO_rows($term);
// Filter for privacy
foreach ($rows as $row) {
$record = WT_Repository::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if ($record->canShowName()) {
$data[] = strip_tags($record->getFullName());
}
}
echo json_encode($data);
exit;
case 'SOUR': // Sources, that include the search terms
$data=array();
// Fetch all data, regardless of privacy
$rows=get_SOUR_rows($term);
// Filter for privacy
foreach ($rows as $row) {
$record = WT_Source::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if ($record->canShowName()) {
foreach ($record->getFacts('TITL') as $fact) {
$data[] = array('value'=>$record->getXref(), 'label'=>$fact->getValue());
}
}
}
echo json_encode($data);
exit;
case 'SOUR_PAGE': // Citation details, for a given source, that contain the search term
$data = array();
$sid = WT_Filter::get('sid', WT_REGEX_XREF);
// Fetch all data, regardless of privacy
$rows=
WT_DB::prepare(
"SELECT SQL_CACHE i_id AS xref, i_file AS gedcom_id, i_gedcom AS gedcom".
" FROM `##individuals`".
" WHERE i_gedcom LIKE CONCAT('%\n_ SOUR @', ?, '@%', REPLACE(?, ' ', '%'), '%') AND i_file=?"
)
->execute(array($sid, $term, WT_GED_ID))
->fetchAll();
// Filter for privacy
foreach ($rows as $row) {
$person=WT_Individual::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if (preg_match('/\n1 SOUR @'.$sid.'@(?:\n[2-9].*)*\n2 PAGE (.*'.str_replace(' ', '.+', preg_quote($term, '/')).'.*)/i', $person->getGedcom(), $match)) {
$data[]=$match[1];
}
if (preg_match('/\n2 SOUR @'.$sid.'@(?:\n[3-9].*)*\n3 PAGE (.*'.str_replace(' ', '.+', preg_quote($term, '/')).'.*)/i', $person->getGedcom(), $match)) {
$data[]=$match[1];
}
}
// Fetch all data, regardless of privacy
$rows=
WT_DB::prepare(
"SELECT SQL_CACHE f_id AS xref, f_file AS gedcom_id, f_gedcom AS gedcom".
" FROM `##families`".
" WHERE f_gedcom LIKE CONCAT('%\n_ SOUR @', ?, '@%', REPLACE(?, ' ', '%'), '%') AND f_file=?"
)
->execute(array($sid, $term, WT_GED_ID))
->fetchAll();
// Filter for privacy
foreach ($rows as $row) {
$family=WT_Family::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if (preg_match('/\n1 SOUR @'.$sid.'@(?:\n[2-9].*)*\n2 PAGE (.*'.str_replace(' ', '.+', preg_quote($term, '/')).'.*)/i', $family->getGedcom(), $match)) {
$data[]=$match[1];
}
if (preg_match('/\n2 SOUR @'.$sid.'@(?:\n[3-9].*)*\n3 PAGE (.*'.str_replace(' ', '.+', preg_quote($term, '/')).'.*)/i', $family->getGedcom(), $match)) {
$data[]=$match[1];
}
}
// array_unique() converts the keys from integer to string, which breaks
// the JSON encoding - so need to call array_values() to convert them
// back into integers.
$data=array_values(array_unique($data));
echo json_encode($data);
exit;
case 'SOUR_TITL': // Source titles, that include the search terms
$data=array();
// Fetch all data, regardless of privacy
$rows=
WT_DB::prepare(
"SELECT s_id AS xref, s_file AS gedcom_id, s_gedcom AS gedcom, s_name".
" FROM `##sources`".
" WHERE s_name LIKE CONCAT('%', REPLACE(?, ' ', '%'), '%') AND s_file=? ORDER BY s_name COLLATE '".WT_I18N::$collation."'"
)
->execute(array($term, WT_GED_ID))
->fetchAll();
// Filter for privacy
foreach ($rows as $row) {
$source=WT_Source::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if ($source->canShowName()) {
$data[]=$row->s_name;
}
}
echo json_encode($data);
exit;
case 'SURN': // Surnames, that start with the search term
// Do not filter by privacy. Surnames on their own do not identify individuals.
echo json_encode(
WT_DB::prepare(
"SELECT SQL_CACHE DISTINCT n_surname".
" FROM `##name`".
" WHERE n_surname LIKE CONCAT(?, '%') AND n_file=?".
" ORDER BY n_surname COLLATE '".WT_I18N::$collation."'"
)
->execute(array($term, WT_GED_ID))
->fetchOneColumn()
);
exit;
case 'IFSRO':
$data=array();
// Fetch all data, regardless of privacy
$rows=get_INDI_rows($term);
// Filter for privacy
foreach ($rows as $row) {
$person=WT_Individual::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if ($person->canShowName()) {
$data[]=array('value'=>$person->getXref(), 'label'=>str_replace(array('@N.N.', '@P.N.'), array($UNKNOWN_NN, $UNKNOWN_PN), $row->n_full).', <i>'.$person->getLifeSpan().'</i>');
}
}
// Fetch all data, regardless of privacy
$rows=get_SOUR_rows($term);
// Filter for privacy
foreach ($rows as $row) {
$source=WT_Source::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if ($source->canShowName()) {
$data[]=array('value'=>$source->getXref(), 'label'=>$source->getFullName());
}
}
// Fetch all data, regardless of privacy
$rows=get_REPO_rows($term);
// Filter for privacy
foreach ($rows as $row) {
$repository=WT_Repository::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if ($repository->canShowName()) {
$data[]=array('value'=>$repository->getXref(), 'label'=>$repository->getFullName());
}
}
// Fetch all data, regardless of privacy
$rows=get_OBJE_rows($term);
// Filter for privacy
foreach ($rows as $row) {
$media=WT_Media::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if ($media->canShowName()) {
$data[]=array('value'=>$media->getXref(), 'label'=>'<img src="'.$media->getHtmlUrlDirect().'" width="25"> '.$media->getFullName());
}
}
// Fetch all data, regardless of privacy
$rows=get_FAM_rows($term);
// Filter for privacy
foreach ($rows as $row) {
$family=WT_Family::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if ($family->canShowName()) {
$marriage_year=$family->getMarriageYear();
if ($marriage_year) {
$data[]=array('value'=>$family->getXref(), 'label'=>$family->getFullName().', <i>'.$marriage_year.'</i>');
} else {
$data[]=array('value'=>$family->getXref(), 'label'=>$family->getFullName());
}
}
}
// Fetch all data, regardless of privacy
$rows=get_NOTE_rows($term);
// Filter for privacy
foreach ($rows as $row) {
$note=WT_Note::getInstance($row->xref, $row->gedcom_id, $row->gedcom);
if ($note->canShowName()) {
$data[]=array('value'=>$note->getXref(), 'label'=>$note->getFullName());
}
}
echo json_encode($data);
exit;
}
function get_FAM_rows($term) {
return
$rows=
WT_DB::prepare(
"SELECT DISTINCT 'FAM' AS type, f_id AS xref, f_file AS gedcom_id, f_gedcom AS gedcom".
" FROM `##families`".
" JOIN `##name` AS husb_name ON (f_husb=husb_name.n_id AND f_file=husb_name.n_file)".
" JOIN `##name` AS wife_name ON (f_wife=wife_name.n_id AND f_file=wife_name.n_file)".
" WHERE CONCAT(husb_name.n_full, ' ', wife_name.n_full) LIKE CONCAT('%', REPLACE(?, ' ', '%'), '%') AND f_file=?".
" AND husb_name.n_type<>'_MARNM' AND wife_name.n_type<>'_MARNM'".
" ORDER BY husb_name.n_sort, wife_name.n_sort COLLATE '".WT_I18N::$collation."'"
)
->execute(array($term, WT_GED_ID))
->fetchAll();
}
function get_INDI_rows($term) {
return
WT_DB::prepare(
"SELECT 'INDI' AS type, i_id AS xref, i_file AS gedcom_id, i_gedcom AS gedcom, n_full".
" FROM `##individuals`".
" JOIN `##name` ON (i_id=n_id AND i_file=n_file)".
" WHERE n_full LIKE CONCAT('%', REPLACE(?, ' ', '%'), '%') AND i_file=? ORDER BY n_full COLLATE '".WT_I18N::$collation."'"
)
->execute(array($term, WT_GED_ID))
->fetchAll();
}
function get_NOTE_rows($term) {
return
WT_DB::prepare(
"SELECT o_id AS xref, o_file AS gedcom_id, o_gedcom AS gedcom".
" FROM `##other`".
" JOIN `##name` ON (o_id=n_id AND o_file=n_file)".
" WHERE o_gedcom LIKE CONCAT('%', REPLACE(?, ' ', '%'), '%') AND o_file=? AND o_type='NOTE'".
" ORDER BY n_full COLLATE '".WT_I18N::$collation."'"
)
->execute(array($term, WT_GED_ID))
->fetchAll();
}
function get_OBJE_rows($term) {
return
WT_DB::prepare(
"SELECT 'OBJE' AS type, m_id AS xref, m_file AS gedcom_id, m_gedcom AS gedcom".
" FROM `##media`".
" WHERE (m_titl LIKE CONCAT('%', REPLACE(?, ' ', '%'), '%') OR m_id LIKE CONCAT('%', REPLACE(?, ' ', '%'), '%')) AND m_file=?"
)
->execute(array($term, $term, WT_GED_ID))
->fetchAll();
}
function get_REPO_rows($term) {
return
WT_DB::prepare(
"SELECT o_id AS xref, o_file AS gedcom_id, o_gedcom AS gedcom".
" FROM `##other`".
" JOIN `##name` ON (o_id=n_id AND o_file=n_file)".
" WHERE n_full LIKE CONCAT('%', REPLACE(?, ' ', '%'), '%') AND o_file=? AND o_type='REPO'".
" ORDER BY n_full COLLATE '".WT_I18N::$collation."'"
)
->execute(array($term, WT_GED_ID))
->fetchAll();
}
function get_SOUR_rows($term) {
return
WT_DB::prepare(
"SELECT s_id AS xref, s_file AS gedcom_id, s_gedcom AS gedcom".
" FROM `##sources`".
" WHERE s_name LIKE CONCAT('%', REPLACE(?, ' ', '%'), '%') AND s_file=? ORDER BY s_name COLLATE '".WT_I18N::$collation."'"
)
->execute(array($term, WT_GED_ID))
->fetchAll();
}