forked from fisharebest/webtrees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
famlist.php
266 lines (254 loc) · 9.05 KB
/
famlist.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
<?php
// Family List
//
// NOTE: indilist.php and famlist.php contain mostly identical code.
// Updates to one file almost certainly need to be made to the other one as well.
//
// 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
define('WT_SCRIPT_NAME', 'famlist.php');
require './includes/session.php';
require_once WT_ROOT.'includes/functions/functions_print_lists.php';
$controller=new WT_Controller_Page();
// We show three different lists: initials, surnames and individuals
// Note that the data may contain special chars, such as surname="<unknown>",
$alpha = WT_Filter::get('alpha'); // All surnames beginning with this letter where "@"=unknown and ","=none
$surname = WT_Filter::get('surname'); // All indis with this surname
$show_all = WT_Filter::get('show_all', 'no|yes', 'no'); // All indis
// Long lists can be broken down by given name
$show_all_firstnames = WT_Filter::get('show_all_firstnames', 'no|yes', 'no');
if ($show_all_firstnames=='yes') {
$falpha='';
} else {
$falpha = WT_Filter::get('falpha'); // All first names beginning with this letter
}
$show_marnm=get_user_setting(WT_USER_ID, WT_SCRIPT_NAME.'_show_marnm');
switch (WT_Filter::get('show_marnm', 'no|yes')) {
case 'no':
$show_marnm=false;
if (WT_USER_ID) {
set_user_setting(WT_USER_ID, WT_SCRIPT_NAME.'_show_marnm', $show_marnm);
}
break;
case 'yes':
$show_marnm=true;
if (WT_USER_ID) {
set_user_setting(WT_USER_ID, WT_SCRIPT_NAME.'_show_marnm', $show_marnm);
}
break;
}
// Make sure selections are consistent.
// i.e. can’t specify show_all and surname at the same time.
if ($show_all=='yes') {
if ($show_all_firstnames=='yes') {
$alpha = '';
$surname = '';
$legend = WT_I18N::translate('All');
$url = WT_SCRIPT_NAME.'?show_all=yes&ged='.WT_GEDURL;
$show = 'indi';
} else if ($falpha) {
$alpha = '';
$surname = '';
$legend = WT_I18N::translate('All').', '.WT_Filter::escapeHtml($falpha).'…';
$url = WT_SCRIPT_NAME.'?show_all=yes&ged='.WT_GEDURL;
$show = 'indi';
} else {
$alpha = '';
$surname = '';
$legend = WT_I18N::translate('All');
$url = WT_SCRIPT_NAME.'?show_all=yes'.'&ged='.WT_GEDURL;
$show = WT_Filter::get('show', 'surn|indi', 'surn');
}
} elseif ($surname) {
$alpha=WT_Query_Name::initialLetter($surname); // so we can highlight the initial letter
$show_all='no';
if ($surname=='@N.N.') {
$legend=$UNKNOWN_NN;
} else {
$legend=WT_Filter::escapeHtml($surname);
}
$url=WT_SCRIPT_NAME.'?surname='.rawurlencode($surname).'&ged='.WT_GEDURL;
switch($falpha) {
case '':
break;
case '@':
$legend.=', '.$UNKNOWN_PN;
$url.='&falpha='.rawurlencode($falpha).'&ged='.WT_GEDURL;
break;
default:
$legend.=', '.WT_Filter::escapeHtml($falpha).'…';
$url.='&falpha='.rawurlencode($falpha).'&ged='.WT_GEDURL;
break;
}
$show='indi'; // SURN list makes no sense here
} elseif ($alpha=='@') {
$show_all = 'no';
$legend = $UNKNOWN_NN;
$url = WT_SCRIPT_NAME.'?alpha='.rawurlencode($alpha).'&ged='.WT_GEDURL;
$show = 'indi'; // SURN list makes no sense here
} elseif ($alpha==',') {
$show_all = 'no';
$legend = WT_I18N::translate('None');
$url = WT_SCRIPT_NAME.'?alpha='.rawurlencode($alpha).'&ged='.WT_GEDURL;
$show = 'indi'; // SURN list makes no sense here
} elseif ($alpha) {
$show_all = 'no';
$legend = WT_Filter::escapeHtml($alpha).'…';
$url = WT_SCRIPT_NAME.'?alpha='.rawurlencode($alpha).'&ged='.WT_GEDURL;
$show = WT_Filter::get('show', 'surn|indi', 'surn');
} else {
$show_all = 'no';
$legend = '…';
$url = WT_SCRIPT_NAME.'?ged='.WT_GEDURL;
$show = 'none'; // Don't show lists until something is chosen
}
$legend='<span dir="auto">'.$legend.'</span>';
$controller
->setPageTitle(WT_I18N::translate('Families').' : '.$legend)
->pageHeader();
echo '<h2 class="center">', WT_I18N::translate('Families'), '</h2>';
// Print a selection list of initial letters
$list=array();
foreach (WT_Query_Name::surnameAlpha($show_marnm, true, WT_GED_ID) as $letter=>$count) {
switch ($letter) {
case '@':
$html=$UNKNOWN_NN;
break;
case ',':
$html=WT_I18N::translate('None');
break;
default:
$html=WT_Filter::escapeHtml($letter);
break;
}
if ($count) {
if ($letter==$alpha) {
$list[]='<a href="'.WT_SCRIPT_NAME.'?alpha='.rawurlencode($letter).'&ged='.WT_GEDURL.'" class="warning" title="'.$count.'">'.$html.'</a>';
} else {
$list[]='<a href="'.WT_SCRIPT_NAME.'?alpha='.rawurlencode($letter).'&ged='.WT_GEDURL.'" title="'.$count.'">'.$html.'</a>';
}
} else {
$list[]=$html;
}
}
// Search spiders don't get the "show all" option as the other links give them everything.
if (!$SEARCH_SPIDER) {
if ($show_all=='yes') {
$list[]='<span class="warning">'.WT_I18N::translate('All').'</span>';
} else {
$list[]='<a href="'.WT_SCRIPT_NAME.'?show_all=yes'.'&ged='.WT_GEDURL.'">'.WT_I18N::translate('All').'</a>';
}
}
echo '<p class="center alpha_index">', join(' | ', $list), '</p>';
// Search spiders don't get an option to show/hide the surname sublists,
// nor does it make sense on the all/unknown/surname views
if (!$SEARCH_SPIDER) {
echo '<p class="center">';
if ($show!='none') {
if ($show_marnm) {
echo '<a href="', $url, '&show='.$show.'&show_marnm=no">', WT_I18N::translate('Exclude individuals with “%s” as a married name', $legend), '</a>';
} else {
echo '<a href="', $url, '&show='.$show.'&show_marnm=yes">', WT_I18N::translate('Include individuals with “%s” as a married name', $legend), '</a>';
}
if ($alpha!='@' && $alpha!=',' && !$surname) {
if ($show=='surn') {
echo '<br><a href="', $url, '&show=indi">', WT_I18N::translate('Show the list of individuals'), '</a>';
} else {
echo '<br><a href="', $url, '&show=surn">', WT_I18N::translate('Show the list of surnames'), '</a>';
}
}
}
echo '</p>';
}
if ($show=='indi' || $show=='surn') {
$surns=WT_Query_Name::surnames($surname, $alpha, $show_marnm, true, WT_GED_ID);
if ($show=='surn') {
// Show the surname list
switch ($SURNAME_LIST_STYLE) {
case 'style1';
echo format_surname_list($surns, 3, true, WT_SCRIPT_NAME);
break;
case 'style3':
echo format_surname_tagcloud($surns, WT_SCRIPT_NAME, true);
break;
case 'style2':
default:
echo format_surname_table($surns, WT_SCRIPT_NAME);
break;
}
} else {
// Show the list
$count=0;
foreach ($surns as $surnames) {
foreach ($surnames as $list) {
$count+=count($list);
}
}
// Don't sublists short lists.
if ($count<get_gedcom_setting(WT_GED_ID, 'SUBLIST_TRIGGER_I')) {
$falpha='';
$show_all_firstnames='no';
} else {
$givn_initials=WT_Query_Name::givenAlpha($surname, $alpha, $show_marnm, true, WT_GED_ID);
// Break long lists by initial letter of given name
if ($surname || $show_all=='yes') {
// Don't show the list until we have some filter criteria
$show=($falpha || $show_all_firstnames=='yes') ? 'indi' : 'none';
$list=array();
foreach ($givn_initials as $givn_initial=>$count) {
switch ($givn_initial) {
case '@':
$html=$UNKNOWN_PN;
break;
default:
$html=WT_Filter::escapeHtml($givn_initial);
break;
}
if ($count) {
if ($show=='indi' && $givn_initial==$falpha && $show_all_firstnames=='no') {
$list[]='<a class="warning" href="'.$url.'&falpha='.rawurlencode($givn_initial).'" title="'.$count.'">'.$html.'</a>';
} else {
$list[]='<a href="'.$url.'&falpha='.rawurlencode($givn_initial).'" title="'.$count.'">'.$html.'</a>';
}
} else {
$list[]=$html;
}
}
// Search spiders don't get the "show all" option as the other links give them everything.
if (!$SEARCH_SPIDER) {
if ($show_all_firstnames=='yes') {
$list[]='<span class="warning">'.WT_I18N::translate('All').'</span>';
} else {
$list[]='<a href="'.$url.'&show_all_firstnames=yes">'.WT_I18N::translate('All').'</a>';
}
}
if ($show_all=='no') {
echo '<h2 class="center">', WT_I18N::translate('Individuals with surname %s', $legend), '</h2>';
}
echo '<p class="center alpha_index">', join(' | ', $list), '</p>';
}
}
if ($show=='indi') {
echo format_fam_table(
WT_Query_Name::families($surname, $alpha, $falpha, $show_marnm, WT_GED_ID)
);
}
}
}