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
|
<?php
/**
* Displays a place hierachy
*
* webtrees: Web based Family History software
* Copyright (C) 2010 webtrees development team.
*
* Derived from PhpGedView
* Copyright (C) 2002 to 2010 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
*
* @package webtrees
* @subpackage Lists
* @version $Id$
*/
define('WT_SCRIPT_NAME', 'placelist.php');
require './includes/session.php';
require_once WT_ROOT.'includes/functions/functions_print_lists.php';
$use_googlemap = false;
if (file_exists(WT_ROOT.'modules/googlemap/placehierarchy.php')) {
require WT_ROOT.'modules/googlemap/placehierarchy.php';
if (isset($GOOGLEMAP_ENABLED) && $GOOGLEMAP_ENABLED && isset($GOOGLEMAP_PLACE_HIERARCHY) && $GOOGLEMAP_PLACE_HIERARCHY) {
$use_googlemap = true;
}
}
function case_in_array($value, $array) {
foreach($array as $key=>$val) {
if (strcasecmp($value, $val)==0) return true;
}
return false;
}
$action = safe_GET('action');
$display = safe_GET('display');
$parent = safe_GET('parent', WT_REGEX_UNSAFE);
$level = safe_GET('level');
if (empty($action)) $action = "find";
if (empty($display)) $display = "hierarchy";
if ($display=="hierarchy") print_header(i18n::translate('Place hierarchy'));
else print_header(i18n::translate('Place List'));
echo "\n\t<div class=\"center\">";
if ($display=="hierarchy") echo "<h2>", i18n::translate('Place hierarchy'), "</h2>\n\t";
else echo "<h2>", i18n::translate('Place List'), "</h2>\n\t";
// Make sure the "parent" array has no holes
if (isset($parent) && is_array($parent)) {
$parentKeys = array_keys($parent);
$highKey = max($parentKeys);
for ($j=0; $j<=$highKey; $j++) {
if (!isset($parent[$j])) $parent[$j] = "";
}
ksort($parent, SORT_NUMERIC);
}
if (!isset($parent)) $parent=array();
else {
if (!is_array($parent)) $parent = array();
else $parent = array_values($parent);
}
// Remove slashes
foreach ($parent as $p => $child) {
$parent[$p] = stripLRMRLM($child);
}
if (!isset($level)) {
$level=0;
}
if ($level>count($parent)) $level = count($parent);
if ($level<count($parent)) $level = 0;
//-- extract the place form encoded in the gedcom
$header = find_gedcom_record("HEAD", WT_GED_ID);
$hasplaceform = strpos($header, "1 PLAC");
//-- hierarchical display
if ($display=="hierarchy") {
$placelist=get_place_list($parent, $level);
$numfound=count($placelist);
// -- sort the array
$placelist = array_unique($placelist);
uasort($placelist, "utf8_strcasecmp");
//-- create a query string for passing to search page
$tempparent = array_reverse($parent);
if (count($tempparent)>0) $squery = "&query=".urlencode($tempparent[0]);
else $squery="";
for($i=1; $i<$level; $i++) {
$squery.=", ".urlencode($tempparent[$i]);
}
//-- if the number of places found is 0 then automatically redirect to search page
if ($numfound==0) {
$action="show";
}
// -- echo the breadcrumb hierarchy
$numls=0;
if ($level>0) {
//-- link to search results
if ((($level>1)||($parent[0]!=""))&&($numfound>0)) {
echo $numfound, " ", i18n::translate('Place connections found'), ": ";
}
//-- breadcrumb
$numls = count($parent)-1;
$num_place="";
//-- place and page text orientation is opposite -> top level added at the beginning of the place text
echo "<a href=\"?level=0\">";
if ($numls>=0 && (($TEXT_DIRECTION=="ltr" && hasRtLText($parent[$numls])) || ($TEXT_DIRECTION=="rtl" && !hasRtLText($parent[$numls])))) echo i18n::translate('Top Level'), ", ";
echo "</a>";
for($i=$numls; $i>=0; $i--) {
echo "<a href=\"?level=", ($i+1);
for ($j=0; $j<=$i; $j++) {
$levels = explode(', ', trim($parent[$j]));
// Routine for replacing ampersands
foreach($levels as $pindex=>$ppart) {
$ppart = rawurlencode($ppart);
$ppart = preg_replace("/amp\%3B/", "", trim($ppart));
echo "&parent[$j]=", $ppart;
}
}
echo "\">";
if (trim($parent[$i])=="") {
echo i18n::translate('unknown');
} else {
echo PrintReady($parent[$i]);
}
echo "</a>";
if ($i>0) {
echo ", ";
} elseif (($TEXT_DIRECTION=="rtl" && hasRtLText($parent[$i])) || ($TEXT_DIRECTION=="ltr" && !hasRtLText($parent[$i]))) {
echo ", ";
}
if (empty($num_place)) {
$num_place=$parent[$i];
}
}
}
echo "<a href=\"?level=0\">";
//-- place and page text orientation is the same -> top level added at the end of the place text
if ($level==0 || ($numls>=0 && (($TEXT_DIRECTION=="rtl" && hasRtLText($parent[$numls])) || ($TEXT_DIRECTION=="ltr" && !hasRtLText($parent[$numls]))))) {
echo i18n::translate('Top Level');
}
echo '</a>', help_link('ppp_levels');
if ($use_googlemap) {
create_map();
}
else {
// show clickable map if found
echo "\n\t<br /><br />\n\t<table class=\"width90\"><tr><td class=\"center\">";
if ($level>=1 && $level<=3) {
$country = $parent[0];
if ($country == "\xD7\x99\xD7\xA9\xD7\xA8\xD7\x90\xD7\x9C") $country = "ISR"; // Israel hebrew name
$country = utf8_strtoupper($country);
if (strlen($country)!=3) {
// search country code using current language countries table
// TODO: use translations from all languages
foreach (array_keys($iso3166) as $alpha3) {
if (utf8_strtoupper(i18n::translate($alpha3)) == $country) {
$country = $alpha3;
break;
}
}
}
$mapname = $country;
$areaname = $parent[0];
$imgfile = "places/".$country."/".$mapname.".gif";
$mapfile = "places/".$country."/".$country.".".WT_LOCALE.".htm";
if (!file_exists($mapfile)) $mapfile = "places/".$country."/".$country.".htm";
if ($level>1) {
$state = $parent[1];
$mapname .= "_".$state;
if ($level>2) {
$county = $parent[2];
$mapname .= "_".$county;
$areaname = str_replace("'", "\'", $parent[2]);
}
else {
$areaname = str_replace("'", "\'", $parent[1]);
}
// Transform certain two-byte UTF-8 letters with diacritics
// to their 1-byte ASCII analogues without diacritics
$mapname = str_replace(array("Ę", "Ó", "Ą", "Ś", "Ł", "Ż", "Ź", "Ć", "Ń", "ę", "ó", "ą", "ś", "ł", "ż", "ź", "ć", "ń"), array("E", "O", "A", "S", "L", "Z", "Z", "C", "N", "e", "o", "a", "s", "l", "z", "z", "c", "n"), $mapname);
$mapname = str_replace(array("Š", "Œ", "Ž", "š", "œ", "ž", "Ÿ", "¥", "µ", "À", "Á", "Â", "Ã", "Ä", "Å", "Æ", "Ç", "È", "É", "Ê", "Ë", "Ì", "Í", "Î", "Ï", "Ð", "Ñ", "Ò", "Ó", "Ô", "Õ", "Ö", "Ø", "Ù", "Ú", "Û", "Ü", "Ý", "ß", "à", "á", "â", "ã", "ä", "å", "æ", "ç", "è", "é", "ê", "ë", "ì", "í", "î", "ï", "ð", "ñ", "ò", "ó", "ô", "õ", "ö", "ø", "ù", "ú", "û", "ü", "ý", "ÿ"), array("S", "O", "Z", "s", "o", "z", "Y", "Y", "u", "A", "A", "A", "A", "A", "A", "A", "C", "E", "E", "E", "E", "I", "I", "I", "I", "D", "N", "O", "O", "O", "O", "O", "O", "U", "U", "U", "U", "Y", "s", "a", "a", "a", "a", "a", "a", "a", "c", "e", "e", "e", "e", "i", "i", "i", "i", "o", "n", "o", "o", "o", "o", "o", "o", "u", "u", "u", "u", "y", "y"), $mapname);
// Transform apostrophes and blanks to dashes
$mapname = str_replace(array("'", " "), "-", $mapname);
$imgfile = "places/".$country."/".$mapname.".gif";
}
if (file_exists($imgfile) and file_exists($mapfile)) {
include ($mapfile);
echo "<img src='", $imgfile, "' usemap='#", $mapname, "' border='0' alt='", $areaname, "' title='", $areaname, "' />";
?>
<script type="text/javascript" src="js/strings.js"></script>
<script type="text/javascript">
<!--
//copy php array into js array
var places_accept = new Array(<?php foreach ($placelist as $key => $value) echo "'", str_replace("'", "\'", $value), "', "; echo "''";?>)
Array.prototype.in_array = function(val) {
for (var i in this) {
if (this[i] == val) return true;
}
return false;
}
function setPlaceState(txt) {
if (txt=='') return;
// search full text [California (CA)]
var search = txt;
if (places_accept.in_array(search)) return(location.href = '?level=2<?php echo "&parent[0]=", urlencode($parent[0]), "&parent[1]="?>'+search);
// search without optional code [California]
txt = txt.replace(/(\/)/,' ('); // case: finnish/swedish ==> finnish (swedish)
p=txt.indexOf(' (');
if (p>1) search=txt.substring(0, p);
else return;
if (places_accept.in_array(search)) return(location.href = '?level=2<?php echo "&parent[0]=", urlencode($parent[0]), "&parent[1]="?>'+search);
// search with code only [CA]
search=txt.substring(p+2);
p=search.indexOf(')');
if (p>1) search=search.substring(0, p);
if (places_accept.in_array(search)) return(location.href = '?level=2<?php echo "&parent[0]=", urlencode($parent[0]), "&parent[1]="?>'+search);
}
function setPlaceCounty(txt) {
if (txt=='') return;
var search = txt;
if (places_accept.in_array(search)) return(location.href = '?level=3<?php echo "&parent[0]=", urlencode($parent[0]), "&parent[1]=", urlencode(@$parent[1]), "&parent[2]="?>'+search);
txt = txt.replace(/(\/)/,' (');
p=txt.indexOf(' (');
if (p>1) search=txt.substring(0, p);
else return;
if (places_accept.in_array(search)) return(location.href = '?level=3<?php echo "&parent[0]=", urlencode($parent[0]), "&parent[1]=", urlencode(@$parent[1]), "&parent[2]="?>'+search);
search=txt.substring(p+2);
p=search.indexOf(')');
if (p>1) search=search.substring(0, p);
if (places_accept.in_array(search)) return(location.href = '?level=3<?php echo "&parent[0]=", urlencode($parent[0]), "&parent[1]=", urlencode(@$parent[1]), "&parent[2]="?>'+search);
}
function setPlaceCity(txt) {
if (txt=='') return;
var search = txt;
if (places_accept.in_array(search)) return(location.href = '?level=4<?php echo "&parent[0]=", urlencode($parent[0]), "&parent[1]=", urlencode(@$parent[1]), "&parent[2]=", urlencode(@$parent[2]), "&parent[3]="?>'+search);
txt = txt.replace(/(\/)/,' (');
p=txt.indexOf(' (');
if (p>1) search=txt.substring(0, p);
else return;
if (places_accept.in_array(search)) return(location.href = '?level=4<?php echo "&parent[0]=", urlencode($parent[0]), "&parent[1]=", urlencode(@$parent[1]), "&parent[2]=", urlencode(@$parent[2]), "&parent[3]="?>'+search);
search=txt.substring(p+2);
p=search.indexOf(')');
if (p>1) search=search.substring(0, p);
if (places_accept.in_array(search)) return(location.href = '?level=4<?php echo "&parent[0]=", urlencode($parent[0]), "&parent[1]=", urlencode(@$parent[1]), "&parent[2]=", urlencode(@$parent[2]), "&parent[3]="?>'+search);
}
//-->
</script>
<?php
echo "</td><td style=\"margin-left:15; vertical-align: top;\">";
}
}
}
//-- create a string to hold the variable links and place names
$linklevels="";
if ($use_googlemap) {
$placelevels="";
$place_names=array();
}
for($j=0; $j<$level; $j++) {
$linklevels .= "&parent[$j]=".urlencode($parent[$j]);
if ($use_googlemap) {
if (trim($parent[$j])=="") {
$placelevels = ", ".i18n::translate('unknown').$placelevels;
} else {
$placelevels = ", ".$parent[$j].$placelevels;
}
}
}
$i=0;
$ct1=count($placelist);
// -- echo the array
foreach ($placelist as $key => $value) {
if ($i==0) {
echo "\n\t<table class=\"list_table $TEXT_DIRECTION\"";
if ($TEXT_DIRECTION=="rtl") {
echo " dir=\"rtl\"";
}
echo ">\n\t\t<tr>\n\t\t<td class=\"list_label\" ";
if ($ct1 > 20) {
echo "colspan=\"3\"";
} elseif ($ct1 > 4) {
echo "colspan=\"2\"";
}
echo "> ";
echo "<img src=\"", $WT_IMAGE_DIR, "/", $WT_IMAGES["place"]["small"], "\" border=\"0\" title=\"", i18n::translate('Place'), "\" alt=\"", i18n::translate('Place'), "\" /> ";
if ($level>0) {
echo " ", i18n::translate('Place Hierarchy after'), ": ";
echo PrintReady($num_place);
} else {
echo i18n::translate('Place hierarchy');
}
echo help_link('ppp_placelist');
echo "</td></tr><tr><td class=\"list_value\"><ul>";
}
if (begRTLText($value)) {
echo "<li class=\"rtl\" dir=\"rtl\"";
} else {
echo "<li class=\"ltr\" dir=\"ltr\"";
}
echo " type=\"square\">\n<a href=\"?action=", $action, "&level=", $level+1, $linklevels;
echo "&parent[", $level, "]=", urlencode($value), "\" class=\"list_item\">";
if (trim($value)=="") echo i18n::translate('unknown');
else echo PrintReady($value);
if ($use_googlemap) $place_names[$i]=trim($value);
echo "</a></li>\n";
if ($ct1 > 20){
if ($i == floor($ct1 / 3)) {
echo "\n\t\t</ul></td>\n\t\t<td class=\"list_value\"><ul>";
}
if ($i == floor(($ct1 / 3) * 2)) {
echo "\n\t\t</ul></td>\n\t\t<td class=\"list_value\"><ul>";
}
} elseif ($ct1 > 4 && $i == floor($ct1 / 2)) {
echo "\n\t\t</ul></td>\n\t\t<td class=\"list_value\"><ul>";
}
$i++;
}
if ($i>0){
echo "\n\t\t</ul></td></tr>";
if (($action!="show")&&($level>0)) {
echo "<tr>\n\t\t<td class=\"list_label\" ";
if ($ct1 > 20) {
echo "colspan=\"3\"";
} elseif ($ct1 > 4) {
echo "colspan=\"2\"";
}
echo ">\n\t";
echo i18n::translate('View all records found in this place');
echo help_link('ppp_view_records');
echo "</td></tr><tr><td class=\"list_value\" ";
if ($ct1 > 20) {
echo "colspan=\"3\"";
} elseif ($ct1 > 4) {
echo "colspan=\"2\"";
}
echo " style=\"text-align: center;\">";
echo "<a href=\"?action=show&level=", $level, "";
foreach($parent as $key=>$value) {
echo "&parent[", $key, "]=", urlencode(trim($value));
}
echo "\"><span class=\"formField\">";
if (trim($value)=="") {
echo i18n::translate('unknown');
} else {
echo PrintReady($value);
}
echo "</span></a> ";
echo "</td></tr>";
}
echo "</table>";
}
echo "</td></tr></table>";
}
$positions = get_place_positions($parent, $level);
if ($level > 0) {
if ($action=="show") {
// -- array of names
$myindilist = array();
$mysourcelist = array();
$myfamlist = array();
foreach ($positions as $position) {
$record=GedcomRecord::getInstance($position);
switch ($record->getType()) {
case 'INDI':
$myindilist[]=$record;
break;
case 'SOUR':
$mysourcelist[]=$record;
break;
case 'FAM':
$myfamlist[]=$record;
break;
}
}
echo "<br />";
$title = ""; foreach ($parent as $k=>$v) $title = $v.", ".$title;
$title = PrintReady(substr($title, 0, -2))." ";
// Sort each of the tables by Name
usort($myindilist, array('GedcomRecord', 'Compare'));
usort($myfamlist, array('GedcomRecord', 'Compare'));
usort($mysourcelist, array('GedcomRecord', 'Compare'));
// echo each of the tables
print_indi_table($myindilist, i18n::translate('Individuals').' @ '.$title);
print_fam_table ($myfamlist, i18n::translate('Families' ).' @ '.$title);
print_sour_table($mysourcelist, i18n::translate('Sources' ).' @ '.$title);
}
}
//-- list type display
if ($display=="list") {
$placelist = array();
$placelist=find_place_list("");
$placelist = array_unique($placelist);
uasort($placelist, "utf8_strcasecmp");
if (count($placelist)==0) {
echo "<b>", i18n::translate('No results found.'), "</b><br />";
} else {
echo "\n\t<table class=\"list_table $TEXT_DIRECTION\"";
if ($TEXT_DIRECTION=="rtl") echo " dir=\"rtl\"";
echo ">\n\t\t<tr>\n\t\t<td class=\"list_label\" ";
$ct = count($placelist);
echo " colspan=\"", $ct>20 ? "3" : "2", "\"> ";
echo "<img src=\"", $WT_IMAGE_DIR, "/", $WT_IMAGES["place"]["small"], "\" border=\"0\" title=\"", i18n::translate('Place'), "\" alt=\"", i18n::translate('Place'), "\" /> ";
echo i18n::translate('Place List');
echo help_link('ppp_placelist');
echo "</td></tr><tr><td class=\"list_value_wrap\"><ul>";
$i=0;
foreach($placelist as $indexval => $revplace) {
$linklevels = "";
$levels = explode(',', $revplace); // -- split the place into comma seperated values
$level=0;
$revplace = "";
foreach($levels as $indexval => $place) {
$place = trim($place);
$linklevels .= "&parent[$level]=".urlencode($place);
$level++;
if ($level>1) $revplace .= ", ";
if ($place=="") $revplace .= i18n::translate('unknown');
else $revplace .= $place;
}
if (begRTLText($revplace)) {
echo "<li class=\"rtl\" dir=\"rtl\"";
} else {
echo "<li class=\"ltr\" dir=\"ltr\"";
}
echo " type=\"square\"><a href=\"?action=show&display=hierarchy&level=", $level, $linklevels, "\">";
echo PrintReady($revplace), "</a></li>\n";
$i++;
if ($ct > 20){
if ($i == floor($ct / 3)) echo "\n\t\t</ul></td>\n\t\t<td class=\"list_value_wrap\"><ul>";
if ($i == floor(($ct / 3) * 2)) echo "\n\t\t</ul></td>\n\t\t<td class=\"list_value_wrap\"><ul>";
}
else if ($i == floor($ct/2)) echo "</ul></td><td class=\"list_value_wrap\"><ul>\n\t\t\t";
}
echo "\n\t\t</ul></td></tr>\n\t\t";
if ($i>1) {
echo "<tr><td>";
if ($i>0) echo i18n::translate('Total unique places'), " ", $i;
echo "</td></tr>\n";
}
echo "\n\t\t</table>";
}
}
echo "<br /><a href=\"?display=";
if ($display=="list") echo "hierarchy\">", i18n::translate('Show Places in Hierarchy');
else echo "list\">", i18n::translate('Show All Places in a List');
echo "</a><br /><br />\n";
if ($hasplaceform) {
$placeheader = substr($header, $hasplaceform);
$ct = preg_match("/2 FORM (.*)/", $placeheader, $match);
if ($ct>0) {
echo i18n::translate('Places are encoded in the form: ').$match[1];
echo help_link('ppp_match_one');
}
}
else {
echo i18n::translate('Places are encoded in the form: '), i18n::translate('City, County, State/Province, Country'), " ", i18n::translate('(Default)'), help_link('ppp_default_form');
}
echo "<br /><br /></div>";
if ($use_googlemap && $display=="hierarchy") map_scripts($numfound, $level, $parent, $linklevels, $placelevels, $place_names);
print_footer();
?>
|