-
Notifications
You must be signed in to change notification settings - Fork 0
/
find.php
713 lines (674 loc) · 24.7 KB
/
find.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
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
<?php
// Popup window that will allow a user to search for a family id, person id
//
// webtrees: Web based Family History software
// Copyright (C) 2013 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', 'find.php');
require './includes/session.php';
require_once WT_ROOT.'includes/functions/functions_print_lists.php';
$controller=new WT_Controller_Simple();
$type =safe_GET('type', WT_REGEX_ALPHA, 'indi');
$filter =safe_GET('filter');
$action =safe_GET('action');
$callback =safe_GET('callback', WT_REGEX_NOSCRIPT, 'paste_id');
$media =safe_GET('media');
$all =safe_GET_bool('all');
$subclick =safe_GET('subclick');
$choose =safe_GET('choose', WT_REGEX_NOSCRIPT, '0all');
$qs =safe_GET('tags');
// Retrives the currently selected tags in the opener window (reading curTags value of the query string)
// $preselDefault will be set to the array of DEFAULT preselected tags
// $preselCustom will be set to the array of CUSTOM preselected tags
function getPreselectedTags(&$preselDefault, &$preselCustom) {
global $qs;
$all = strlen($qs) ? explode(',', strtoupper($qs)) : array();
$preselDefault = array();
$preselCustom = array();
foreach ($all as $one) {
if (WT_Gedcom_Tag::isTag($one)) {
$preselDefault[] = $one;
} else {
$preselCustom[] = $one;
}
}
}
if ($subclick=='all') {
$all=true;
}
$embed = substr($choose, 0, 1)=="1";
$chooseType = substr($choose, 1);
if ($chooseType!="media" && $chooseType!="0file") {
$chooseType = "all";
}
// End variables for find media
switch ($type) {
case "indi":
$controller->setPageTitle(WT_I18N::translate('Find an individual'));
break;
case "fam":
$controller->setPageTitle(WT_I18N::translate('Find a family'));
break;
case "media":
$controller->setPageTitle(WT_I18N::translate('Find a media object'));
break;
case "place":
$controller->setPageTitle(WT_I18N::translate('Find a place'));
break;
case "repo":
$controller->setPageTitle(WT_I18N::translate('Find a repository'));
break;
case "note":
$controller->setPageTitle(WT_I18N::translate('Find a note'));
break;
case "source":
$controller->setPageTitle(WT_I18N::translate('Find a source'));
break;
case "specialchar":
$controller->setPageTitle(WT_I18N::translate('Find a special character'));
$language_filter=safe_GET('language_filter');
if (WT_USER_ID) {
// Users will probably always want the same language, so remember their setting
if (!$language_filter) {
$language_filter=get_user_setting(WT_USER_ID, 'default_language_filter');
} else {
set_user_setting(WT_USER_ID, 'default_language_filter', $language_filter);
}
}
require WT_ROOT.'includes/specialchars.php';
$action="filter";
break;
case "facts":
$controller
->setPageTitle(WT_I18N::translate('Find a fact or event'))
->addInlineJavascript('initPickFact();');
break;
}
$controller->pageHeader();
echo '<script>';
?>
function pasteid(id, name, thumb) {
if (thumb) {
window.opener.<?php echo $callback; ?>(id, name, thumb);
<?php echo "window.close();"; ?>
} else {
// GEDFact_assistant ========================
if (window.opener.document.getElementById('addlinkQueue')) {
window.opener.insertRowToTable(id, name);
// Check if Indi, Fam or source ===================
/*
if (id.match("I")=="I") {
var win01 = window.opener.window.open('edit_interface.php?action=addmedia_links¬eid=newnote&pid='+id, 'win01', edit_window_specs);
if (window.focus) {win01.focus();}
} else if (id.match("F")=="F") {
// TODO --- alert('Opening Navigator with family id entered will come later');
}
*/
}
window.opener.<?php echo $callback; ?>(id);
if (window.opener.pastename) window.opener.pastename(name);
<?php echo "window.close();"; ?>
}
}
function checknames(frm) {
if (document.forms[0].subclick) button = document.forms[0].subclick.value;
else button = "";
if (frm.filter.value.length<2&button!="all") {
alert("<?php echo WT_I18N::translate('Please enter more than one character'); ?>");
frm.filter.focus();
return false;
}
if (button=="all") {
frm.filter.value = "";
}
return true;
}
<?php
echo '</script>';
$options = array();
$options["option"][]= "findindi";
$options["option"][]= "findfam";
$options["option"][]= "findmedia";
$options["option"][]= "findplace";
$options["option"][]= "findrepo";
$options["option"][]= "findnote";
$options["option"][]= "findsource";
$options["option"][]= "findspecialchar";
$options["option"][]= "findfact";
$options["form"][]= "formindi";
$options["form"][]= "formfam";
$options["form"][]= "formmedia";
$options["form"][]= "formplace";
$options["form"][]= "formrepo";
$options["form"][]= "formnote";
$options["form"][]= "formsource";
$options["form"][]= "formspecialchar";
echo '<div id="find-page"><h3>', $controller->getPageTitle(), '</h3>';
// Show indi and hide the rest
if ($type == "indi") {
echo '<div id="find-header">
<form name="filterindi" method="get" onsubmit="return checknames(this);" action="find.php">
<input type="hidden" name="callback" value="'.$callback.'">
<input type="hidden" name="action" value="filter">
<input type="hidden" name="type" value="indi">
<span>', WT_I18N::translate('Name contains:'), ' </span>
<input type="text" name="filter" value="';
if ($filter) echo $filter;
echo '">
<input type="submit" value="', WT_I18N::translate('Filter'), '">
</form></div>';
}
// Show fam and hide the rest
if ($type == "fam") {
echo '<div id="find-header">
<form name="filterfam" method="get" onsubmit="return checknames(this);" action="find.php">
<input type="hidden" name="callback" value="'.$callback.'">
<input type="hidden" name="action" value="filter">
<input type="hidden" name="type" value="fam">
<span>', WT_I18N::translate('Name contains:'), ' </span>
<input type="text" name="filter" value="';
if ($filter) echo $filter;
echo '">
<input type="submit" value="', WT_I18N::translate('Filter'), '">
</form></div>';
}
// Show media and hide the rest
if ($type == 'media') {
echo '<div id="find-header">
<form name="filtermedia" method="get" onsubmit="return checknames(this);" action="find.php">
<input type="hidden" name="choose" value="', $choose, '">
<input type="hidden" name="action" value="filter">
<input type="hidden" name="type" value="media">
<input type="hidden" name="callback" value="', $callback, '">
<input type="hidden" name="subclick">
<span>', WT_I18N::translate('Media contains:'), '</span>
<input type="text" name="filter" value="';
if ($filter) echo $filter;
echo '">',
help_link('simple_filter'),
'<p><input type="submit" name="search" value="', WT_I18N::translate('Filter'), '" onclick="this.form.subclick.value=this.name">
<input type="submit" name="all" value="', WT_I18N::translate('Display all'), '" onclick=\"this.form.subclick.value=this.name\">
</p></form></div>';
}
// Show place and hide the rest
if ($type == "place") {
echo '<div id="find-header">
<form name="filterplace" method="get" onsubmit="return checknames(this);" action="find.php">
<input type="hidden" name="action" value="filter">
<input type="hidden" name="type" value="place">
<input type="hidden" name="callback" value="', $callback, '">
<input type="hidden" name="subclick">
<span>', WT_I18N::translate('Place contains:'), '</span>
<input type="text" name="filter" value="';
if ($filter) echo $filter;
echo '">
<p><input type="submit" name="search" value="', WT_I18N::translate('Filter'), '" onclick="this.form.subclick.value=this.name">
<input type="submit" name="all" value="', WT_I18N::translate('Display all'), '" onclick="this.form.subclick.value=this.name">
</p></form></div>';
}
// Show repo and hide the rest
if ($type == "repo") {
echo '<div id="find-header">
<form name="filterrepo" method="get" onsubmit="return checknames(this);" action="find.php">
<input type="hidden" name="action" value="filter">
<input type="hidden" name="type" value="repo">
<input type="hidden" name="callback" value="', $callback, '">
<input type="hidden" name="subclick">
<span>', WT_I18N::translate('Repository contains:'), '</span>
<input type="text" name="filter" value="';
if ($filter) echo $filter;
echo '">
<p><input type="submit" name="search" value="', WT_I18N::translate('Filter'), '" onclick="this.form.subclick.value=this.name">
<input type="submit" name="all" value="', WT_I18N::translate('Display all'), '" onclick="this.form.subclick.value=this.name">
</td></tr></table>
</p></form></div>';
}
// Show Shared Notes and hide the rest
if ($type == "note") {
echo '<div id="find-header">
<form name="filternote" method="get" onsubmit="return checknames(this);" action="find.php">
<input type="hidden" name="action" value="filter">
<input type="hidden" name="type" value="note">
<input type="hidden" name="callback" value="', $callback, '">
<input type="hidden" name="subclick">
<span>', WT_I18N::translate('Shared Note contains:'), '</span>
<input type="text" name="filter" value="';
if ($filter) echo $filter;
echo '">
<p><input type="submit" name="search" value="', WT_I18N::translate('Filter'), '" onclick="this.form.subclick.value=this.name">
<input type="submit" name="all" value="', WT_I18N::translate('Display all'), '" onclick="this.form.subclick.value=this.name">
</p></form></div>';
}
// Show source and hide the rest
if ($type == "source") {
echo '<div id="find-header">
<form name="filtersource" method="get" onsubmit="return checknames(this);" action="find.php">
<input type="hidden" name="action" value="filter">
<input type="hidden" name="type" value="source">
<input type="hidden" name="callback" value="', $callback, '">
<input type="hidden" name="subclick">
<span>', WT_I18N::translate('Source contains:'), '</span>
<input type="text" name="filter" value="';
if ($filter) echo $filter;
echo '">
<p><input type="submit" name="search" value="', WT_I18N::translate('Filter'), '" onclick="this.form.subclick.value=this.name">
<input type="submit" name="all" value="', WT_I18N::translate('Display all'), '" onclick="this.form.subclick.value=this.name">
</p></form></div>';
}
// Show specialchar and hide the rest
if ($type == 'specialchar') {
echo '<div id="find-header">
<form name="filterspecialchar" method="get" action="find.php">
<input type="hidden" name="action" value="filter">
<input type="hidden" name="type" value="specialchar">
<input type="hidden" name="callback" value="'.$callback.'">
<p><select id="language_filter" name="language_filter" onchange="submit();">
<option value="">', WT_I18N::translate('Change language'), '</option>';
$language_options = '';
foreach ($specialchar_languages as $key=>$value) {
$language_options.= '<option value="'.$key.'"';
if ($key==$language_filter) {
$language_options.=' selected="selected"';
}
$language_options.='>'.$value.'</option>';
}
echo $language_options,
'</select>
</p></form></div>';
}
// Show facts
if ($type == "facts") {
echo '<div id="find-facts-header">
<form name="filterfacts" method="get" action="find.php"
input type="hidden" name="type" value="facts">
<input type="hidden" name="tags" value="', $qs, '">
<input type="hidden" name="callback" value="', $callback, '">
<table class="list_table width100" border="0">
<tr><td class="list_label" style="padding: 5px; font-weight: normal; white-space: normal;">' ;
getPreselectedTags($preselDefault, $preselCustom);
echo '<script>'; ?>
// A class representing a default tag
function DefaultTag(id, name, selected) {
this.Id=id;
this.Name=name;
this.LowerName=name.toLowerCase();
this._counter=DefaultTag.prototype._newCounter++;
this.selected=!!selected;
}
DefaultTag.prototype= {
_newCounter:0
,view:function() {
var row=document.createElement("tr"),cell,o;
row.appendChild(cell=document.createElement("td"));
o=null;
if (document.all) {
//Old IEs handle the creation of a checkbox already checked, as far as I know, only in this way
try {
o=document.createElement("<input type='checkbox' id='tag"+this._counter+"' "+(this.selected?"checked='checked'":"")+">");
} catch(e) {
o=null;
}
}
if (!o) {
o=document.createElement("input");
o.setAttribute("id","tag"+this._counter);
o.setAttribute("type","checkbox");
if (this.selected) o.setAttribute("checked", "checked");
}
o.DefaultTag=this;
o.ParentRow=row;
o.onclick=function() {
this.DefaultTag.selected=!!this.checked;
this.ParentRow.className=this.DefaultTag.selected?"sel":"unsel";
Lister.recount();
};
cell.appendChild(o);
row.appendChild(cell=document.createElement("th"));
cell.appendChild(o=document.createElement("label"));
o.htmlFor="tag"+this._counter;
o.appendChild(document.createTextNode(this.Id));
row.appendChild(cell=document.createElement("td"));
cell.appendChild(document.createTextNode(this.Name));
TheList.appendChild(row);
row.className=this.selected?"sel":"unsel";
}
};
// Some global variable
var DefaultTags=null /*The list of the default tag*/, TheList=null /* The body of the table that will show the default tabs */;
// A single-instance class that manage the populating of the table
var Lister= {
_curFilter:null
,_timer:null
,clear:function() {
var n=TheList.childNodes.length;
while (n) TheList.removeChild(TheList.childNodes[--n]);
}
,_clearTimer:function() {
if (this._timer!=null) {
clearTimeout(this._timer);
this._timer=null;
}
}
,askRefresh:function() {
this._clearTimer();
this._timer=setTimeout("Lister.refreshNow()",200);
}
,refreshNow:function(force) {
this._clearTimer();
var s=document.getElementById("tbxFilter").value.toLowerCase().replace(/\s+/g," ").replace(/^ | $/g,""),k;
if (force||(typeof(this._curFilter)!="string")||(this._curFilter!=s)) {
this._curFilter=s;
this.clear();
for (k=0;k<DefaultTags.length;k++) {
if (DefaultTags[k].LowerName.indexOf(this._curFilter)>=0) DefaultTags[k].view();
}
}
}
,recount:function() {
var k,n=0;
for (k=0;k<DefaultTags.length;k++)
if (DefaultTags[k].selected)
n++;
document.getElementById("layCurSelectedCount").innerHTML=n.toString();
}
,showSelected:function() {
this._clearTimer();
this.clear();
for (var k=0;k<DefaultTags.length;k++) {
if (DefaultTags[k].selected)
DefaultTags[k].view();
}
}
};
function initPickFact() {
var n,i,j,tmp,preselectedDefaultTags="\x01<?php foreach ($preselDefault as $p) echo addslashes($p), '\\x01'; ?>";
DefaultTags=[<?php
$firstFact=TRUE;
foreach (WT_Gedcom_Tag::getPicklistFacts() as $factId => $factName) {
if ($firstFact) $firstFact=FALSE;
else echo ',';
echo 'new DefaultTag("'.addslashes($factId).'","'.addslashes($factName).'",preselectedDefaultTags.indexOf("\\x01'.addslashes($factId).'\\x01")>=0)';
}
?>];
TheList=document.getElementById("tbDefinedTags");
i=document.getElementById("tbxFilter");
i.onkeypress=i.onchange=i.onkeyup=function() {
Lister.askRefresh();
};
Lister.recount();
Lister.refreshNow();
document.getElementById("btnOk").disabled=false;
}
function DoOK() {
var result=[],k,linearResult,custom;
for (k=0;k<DefaultTags.length;k++) {
if (DefaultTags[k].selected) result.push(DefaultTags[k].Id);
}
linearResult="\x01"+result.join("\x01")+"\x01";
custom=document.getElementById("tbxCustom").value.toUpperCase().replace(/\s/g,"").split(",");
for (k=0;k<custom.length;k++) {
if (linearResult.indexOf("\x01"+custom[k]+"\x01")<0) {
linearResult+=custom[k]+"\x01";
result.push(custom[k]);
}
}
result = result.join(",")
if (result.substring(result.length-1, result.length)==',') {
result = result.substring(0, result.length-1);
}
pasteid(result);
window.close();
return false;
}
<?php echo '</script>';
echo '<div id="layDefinedTags"><table id="tabDefinedTags">
<thead><tr>
<th> </th>
<th>', WT_I18N::translate('Tag'), '</th>
<th>', WT_I18N::translate('Description'), '</th>
</tr></thead>
<tbody id="tbDefinedTags">
</tbody>
</table></div>
<table id="tabDefinedTagsShow"><tbody><tr>
<td><a href="#" onclick="Lister.showSelected();return false">', WT_I18N::translate('Show only selected tags'), ' (<span id="layCurSelectedCount"></span>)</a></td>
<td><a href="#" onclick="Lister.refreshNow(true);return false">', WT_I18N::translate('Show all tags'), '</a></td>
</tr></tbody></table>
<table id="tabFilterAndCustom"><tbody>
<tr><td>', WT_I18N::translate('Filter'), ':</td><td><input type="text" id="tbxFilter"></td></tr>
<tr><td>', WT_I18N::translate('Custom tags'), ':</td><td><input type="text" id="tbxCustom" value="', addslashes(implode(",", $preselCustom)), '"></td></tr>
<td><td></tbody></table>
<table id="tabAction"><tbody><tr>
<td colspan="2"><button id="btnOk" disabled="disabled" onclick="if (!this.disabled)DoOK();">', WT_I18N::translate('save'), '</button></td>
<tr></tbody></table>
</td></tr></table>
</form></div>';
}
if ($action=="filter") {
$filter = trim($filter);
$filter_array=explode(' ', preg_replace('/ {2,}/', ' ', $filter));
// Output Individual
if ($type == "indi") {
echo '<div id="find-output">';
$myindilist=search_indis_names($filter_array, array(WT_GED_ID), 'AND');
if ($myindilist) {
echo '<ul>';
usort($myindilist, array('WT_GedcomRecord', 'Compare'));
foreach ($myindilist as $indi) {
echo $indi->format_list('li', true);
}
echo '</ul>
<p>', WT_I18N::translate('Total individuals: %s', count($myindilist)), '</p>';
} else {
echo '<p>', WT_I18N::translate('No results found.'), '</p>';
}
echo '</div>';
}
// Output Family
if ($type == "fam") {
echo '<div id="find-output">';
// Get the famrecs with hits on names from the family table
// Get the famrecs with hits in the gedcom record from the family table
$myfamlist = array_unique(array_merge(
search_fams_names($filter_array, array(WT_GED_ID), 'AND'),
search_fams($filter_array, array(WT_GED_ID), 'AND', true)
));
if ($myfamlist) {
$curged = $GEDCOM;
echo '<ul>';
usort($myfamlist, array('WT_GedcomRecord', 'Compare'));
foreach ($myfamlist as $family) {
echo $family->format_list('li', true);
}
echo '</ul>
<p>', WT_I18N::translate('Total families: %s', count($myfamlist)), '</p>';
} else {
echo '<p>', WT_I18N::translate('No results found.'), '</p>';
}
echo '</div>';
}
// Output Media
if ($type == "media") {
global $dirs;
$medialist = WT_Query_Media::mediaList('', 'include', 'title', $filter);
echo '<div id="find-output">';
if ($medialist) {
foreach ($medialist as $media) {
echo '<div class="find-media-media">';
echo '<div class="find-media-thumb">', $media->displayImage(), '</div>';
echo '<div class="find-media-details">', $media->getFullName(), '</div>';
if (!$embed) {
echo '<p><a href="#" dir="auto" onclick="pasteid(\'', addslashes($media->getXref()), '\');">', $media->getFilename(), '</a></p>';
} else {
echo '<p><a href="#" dir="auto" onclick="pasteid(\'', $media->getXref(), '\', \'', '\', \'', addslashes($media->getFilename()), '\');">', $media->getFilename(), '</a></p> ';
}
if ($media->fileExists()) {
$imgsize = $media->getImageAttributes();
echo WT_Gedcom_Tag::getLabelValue('__IMAGE_SIZE__', $imgsize['WxH']);
}
echo '<ul>';
$found=false;
foreach ($media->fetchLinkedIndividuals() as $indindividual) {
echo '<li>', $indindividual->getFullName(), '</li>';
$found=true;
}
foreach ($media->fetchLinkedFamilies() as $family) {
echo '<li>', $family->getFullName(), '</li>';
$found=true;
}
foreach ($media->fetchLinkedSources() as $source) {
echo '<li>', $source->getFullName(), '</li>';
$found=true;
}
foreach ($media->fetchLinkedNotes() as $note) {
echo '<li>', $note->getFullName(), '</li>';
$found=true;
}
foreach ($media->fetchLinkedRepositories() as $repository) {
echo '<li>', $repository->getFullName(), '</li>';
$found=true;
}
if (!$found) {
echo '<li>', WT_I18N::translate('This media object is not linked to any other record.'), '</li>';
}
echo '</ul>';
echo '</div>'; // close div="find-media-media"
}
} else {
echo '<p>', WT_I18N::translate('No results found.'), '</p>';
}
echo '</div>';
}
// Output Places
if ($type == "place") {
echo '<div id="find-output">';
if (!$filter || $all) {
$places=WT_Place::allPlaces(WT_GED_ID);
} else {
$places=WT_Place::findPlaces($filter, WT_GED_ID);
}
if ($places) {
echo '<ul>';
foreach ($places as $place) {
echo '<li><a href="#" onclick="pasteid(\'', htmlspecialchars($place->getGedcomName()), '\');">';
if (!$filter || $all) {
echo $place->getReverseName(); // When displaying all names, sort/display by the country, then region, etc.
} else {
echo $place->getFullName(); // When we’ve searched for a place, sort by this place
}
echo '</a></li>';
}
echo '</ul>
<p>', WT_I18N::translate('Places found'), ' ', count($places), '</p>';
}
else {
echo '<p>', WT_I18N::translate('No results found.'), '</p>';
}
echo '</div>';
}
// Output Repositories
if ($type == "repo") {
echo '<div id="find-output">';
if ($filter) {
$repo_list = search_repos($filter_array, array(WT_GED_ID), 'AND', true);
} else {
$repo_list = get_repo_list(WT_GED_ID);
}
if ($repo_list) {
usort($repo_list, array('WT_GedcomRecord', 'Compare'));
echo '<ul>';
foreach ($repo_list as $repo) {
echo '<li><a href="', $repo->getHtmlUrl(), '" onclick="pasteid(\'', $repo->getXref(), '\');"><span class="list_item">', $repo->getFullName(),'</span></a></li>';
}
echo '</ul>
<p>', WT_I18N::translate('Repositories found'), " ", count($repo_list), '</p>';
}
else {
echo '<p>', WT_I18N::translate('No results found.'), '</p>';
}
echo '</div>';
}
// Output Shared Notes
if ($type=="note") {
echo '<div id="find-output">';
if ($filter) {
$mynotelist = search_notes($filter_array, array(WT_GED_ID), 'AND', true);
} else {
$mynotelist = get_note_list(WT_GED_ID);
}
if ($mynotelist) {
usort($mynotelist, array('WT_GedcomRecord', 'Compare'));
echo '<ul>';
foreach ($mynotelist as $note) {
echo '<li><a href="', $note->getHtmlUrl(), '" onclick="pasteid(\'', $note->getXref(), '\');"><span class="list_item">', $note->getFullName(),'</span></a></li>';
}
echo '</ul>
<p>', WT_I18N::translate('Shared Notes found'), ' ', count($mynotelist), '</p>';
}
else {
echo '<p>', WT_I18N::translate('No results found.'), '</p>';
}
echo '</div>';
}
// Output Sources
if ($type=="source") {
echo '<div id="find-output">';
if ($filter) {
$mysourcelist = search_sources($filter_array, array(WT_GED_ID), 'AND', true);
} else {
$mysourcelist = get_source_list(WT_GED_ID);
}
if ($mysourcelist) {
usort($mysourcelist, array('WT_GedcomRecord', 'Compare'));
echo '<ul>';
foreach ($mysourcelist as $source) {
echo '<li><a href="', $source->getHtmlUrl(), '" onclick="pasteid(\'', $source->getXref(), '\');"><span class="list_item">', $source->getFullName(),'</span></a></li>';
}
echo '</ul>
<p>', WT_I18N::translate('Total sources: %s', count($mysourcelist)), '</p>';
}
else {
echo '<p>', WT_I18N::translate('No results found.'), '</p>';
}
echo '</div>';
}
// Output Special Characters
if ($type == "specialchar") {
echo '<div id="find-output-special"><p>';
// lower case special characters
foreach ($lcspecialchars as $key=>$value) {
echo '<a class="largechars" href="#" onclick="return window.opener.paste_char(\'', $value, '\');">', $key, '</a> ';
}
echo '</p><p>';
//upper case special characters
foreach ($ucspecialchars as $key=>$value) {
echo '<a class="largechars" href="#" onclick="return window.opener.paste_char(\'', $value, '\');">', $key, '</a> ';
}
echo '</p><p>';
// other special characters (not letters)
foreach ($otherspecialchars as $key=>$value) {
echo '<a class="largechars" href="#" onclick="return window.opener.paste_char(\'', $value, '\');">', $key, '</a> ';
}
echo '</p></div>';
}
}
echo '<button onclick="window.close();">', WT_I18N::translate('close'), '</button>';
echo "</div>"; // Close div="find-page"