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
|
<?php use Fisharebest\Webtrees\Date; ?>
<?php use Fisharebest\Webtrees\GedcomTag; ?>
<?php use Fisharebest\Webtrees\I18N; ?>
<?php use Fisharebest\Webtrees\Individual; ?>
<?php use Fisharebest\Webtrees\Module; ?>
<?php use Fisharebest\Webtrees\Module\ModuleInterface; ?>
<?php use Fisharebest\Webtrees\Module\RelationshipsChartModule; ?>
<?php use Fisharebest\Webtrees\Auth; ?>
<?php use Fisharebest\Webtrees\View; ?>
<?php use Ramsey\Uuid\Uuid; ?>
<?php
// lists requires a unique ID in case there are multiple lists per page
$table_id = 'table-indi-' . Uuid::uuid4()->toString();
$hundred_years_ago = new Date(date('Y') - 100);
$unique_indis = []; // Don't double-count indis with multiple names.
$module = Module::findByComponent('chart', $tree, Auth::user())->first(function (ModuleInterface $module) {
return $module instanceof RelationshipsChartModule;
});
?>
<?php View::push('javascript') ?>
<script>
$("#<?= e($table_id) ?>").dataTable( {
dom: '<"H"<"filtersH_<?= e($table_id) ?>">T<"dt-clear">pf<"dt-clear">irl>t<"F"pl<"dt-clear"><"filtersF_<?= e($table_id) ?>">>',
<?= I18N::datatablesI18N() ?>,
autoWidth: false,
processing: true,
retrieve: true,
columns: [
/* Given names */ { type: "text" },
/* Surnames */ { type: "text" },
/* SOSA numnber */ { type: "num", visible: <?= json_encode($sosa) ?> },
/* Birth date */ { type: "num" },
/* Anniversary */ { type: "num" },
/* Birthplace */ { type: "text" },
/* Children */ { type: "num" },
/* Deate date */ { type: "num" },
/* Anniversary */ { type: "num" },
/* Age */ { type: "num" },
/* Death place */ { type: "text" },
/* Last change */ { visible: <?= json_encode($tree->getPreference('SHOW_LAST_CHANGE')) ?> },
/* Filter sex */ { sortable: false },
/* Filter birth */ { sortable: false },
/* Filter death */ { sortable: false },
/* Filter tree */ { sortable: false }
],
sorting: <?= json_encode($sosa ? [[4, "asc"]] : [[1, "asc"]]) ?>,
displayLength: 20,
pagingType: "full_numbers"
});
$("#<?= e($table_id) ?>")
/* Hide/show parents */
.on("click", ".btn-toggle-parents", function() {
$(this).toggleClass("ui-state-active");
$(".parents", $(this).closest("table").DataTable().rows().nodes()).slideToggle();
})
/* Hide/show statistics */
.on("click", ".btn-toggle-statistics", function() {
$(this).toggleClass("ui-state-active");
$("#individual-charts-<?= e($table_id) ?>").slideToggle();
})
/* Filter buttons in table header */
.on("click", "button[data-filter-column]", function() {
var btn = $(this);
// De-activate the other buttons in this button group
btn.siblings().removeClass("active");
// Apply (or clear) this filter
var col = $("#<?= e($table_id) ?>").DataTable().column(btn.data("filter-column"));
if (btn.hasClass("active")) {
col.search("").draw();
} else {
col.search(btn.data("filter-value")).draw();
}
});
</script>
<?php View::endpush() ?>
<?php
$max_age = (int) $tree->getPreference('MAX_ALIVE_AGE');
// Inititialise chart data
$deat_by_age = [];
for ($age = 0; $age <= $max_age; $age++) {
$deat_by_age[$age] = '';
}
$birt_by_decade = [];
$deat_by_decade = [];
for ($year = 1550; $year < 2030; $year += 10) {
$birt_by_decade[$year] = '';
$deat_by_decade[$year] = '';
}
?>
<div class="indi-list">
<table id="<?= e($table_id) ?>">
<thead>
<tr>
<th colspan="16">
<div class="btn-toolbar d-flex justify-content-between mb-2" role="toolbar">
<div class="btn-group" data-toggle="buttons">
<button
class="btn btn-secondary"
data-filter-column="12"
data-filter-value="M"
title="<?= I18N::translate('Show only males.') ?>"
>
<?= Individual::sexImage('M', 'large') ?>
</button>
<button
class="btn btn-secondary"
data-filter-column="12"
data-filter-value="F"
title="<?= I18N::translate('Show only females.') ?>"
>
<?= Individual::sexImage('F', 'large') ?>
</button>
<button
class="btn btn-secondary"
data-filter-column="12"
data-filter-value="U"
title="<?= I18N::translate('Show only individuals for whom the gender is not known.') ?>"
>
<?= Individual::sexImage('U', 'large') ?>
</button>
</div>
<div class="btn-group" data-toggle="buttons">
<button
class="btn btn-secondary"
data-filter-column="14"
data-filter-value="N"
title="<?= I18N::translate('Show individuals who are alive or couples where both partners are alive.') ?>"
>
<?= I18N::translate('Alive') ?>
</button>
<button
class="btn btn-secondary"
data-filter-column="14"
data-filter-value="Y"
title="<?= I18N::translate('Show individuals who are dead or couples where both partners are dead.') ?>"
>
<?= I18N::translate('Dead') ?>
</button>
<button
class="btn btn-secondary"
data-filter-column="14"
data-filter-value="YES"
title="<?= I18N::translate('Show individuals who died more than 100 years ago.') ?>"
>
<?= I18N::translate('Death') ?>>100
</button>
<button
class="btn btn-secondary"
data-filter-column="14"
data-filter-value="Y100"
title="<?= I18N::translate('Show individuals who died within the last 100 years.') ?>"
>
<?= I18N::translate('Death') ?><=100
</button>
</div>
<div class="btn-group" data-toggle="buttons">
<button
class="btn btn-secondary"
data-filter-column="13"
data-filter-value="YES"
title="<?= I18N::translate('Show individuals born more than 100 years ago.') ?>"
>
<?= I18N::translate('Birth') ?>>100
</button>
<button
class="btn btn-secondary"
data-filter-column="13"
data-filter-value="Y100"
title="<?= I18N::translate('Show individuals born within the last 100 years.') ?>"
>
<?= I18N::translate('Birth') ?><=100
</button>
</div>
<div class="btn-group" data-toggle="buttons">
<button
class="btn btn-secondary"
data-filter-column="15"
data-filter-value="R"
title="<?= I18N::translate('Show “roots” couples or individuals. These individuals may also be called “patriarchs”. They are individuals who have no parents recorded in the database.') ?>"
>
<?= I18N::translate('Roots') ?>
</button>
<button
class="btn btn-secondary"
data-filter-column="15"
data-filter-value="L"
title="<?= I18N::translate('Show “leaves” couples or individuals. These are individuals who are alive but have no children recorded in the database.') ?>"
>
<?= I18N::translate('Leaves') ?>
</button>
</div>
</div>
</th>
</tr>
<tr>
<th><?= I18N::translate('Given names') ?></th>
<th><?= I18N::translate('Surname') ?></th>
<th><?= /* I18N: Abbreviation for “Sosa-Stradonitz number”. This is an individual’s surname, so may need transliterating into non-latin alphabets. */
I18N::translate('Sosa') ?></th>
<th><?= I18N::translate('Birth') ?></th>
<th>
<i class="icon-reminder" title="<?= I18N::translate('Anniversary') ?>"></i>
</th>
<th><?= I18N::translate('Place') ?></th>
<th>
<i class="icon-children" title="<?= I18N::translate('Children') ?>"></i>
</th>
<th><?= I18N::translate('Death') ?></th>
<th>
<i class="icon-reminder" title="<?= I18N::translate('Anniversary') ?>"></i>
</th>
<th><?= I18N::translate('Age') ?></th>
<th><?= I18N::translate('Place') ?></th>
<th><?= I18N::translate('Last change') ?></th>
<th hidden></th>
<th hidden></th>
<th hidden></th>
<th hidden></th>
</tr>
</thead>
<tfoot>
<tr>
<th colspan="16">
<div class="btn-toolbar">
<div class="btn-group">
<button class="ui-state-default btn-toggle-parents">
<?= I18N::translate('Show parents') ?>
</button>
<button class="ui-state-default btn-toggle-statistics">
<?= I18N::translate('Show statistics charts') ?>
</button>
</div>
</div>
</th>
</tr>
</tfoot>
<tbody>
<?php foreach ($individuals as $key => $individual) : ?>
<tr class="<?= $individual->isPendingDeletion() ? 'old' : ($individual->isPendingAddition() ? 'new' : '') ?>">
<td colspan="2" data-sort="<?= e(str_replace([',', '@P.N.', '@N.N.'], 'AAAA', implode(',', array_reverse(explode(',', $individual->getSortName()))))) ?>">
<?php foreach ($individual->getAllNames() as $num => $name) : ?>
<a title="<?= $name['type'] === 'NAME' ? '' : GedcomTag::getLabel($name['type'], $individual) ?>" href="<?= e($individual->url()) ?>" class="<?= $num === $individual->getPrimaryName() ? 'name2' : '' ?>">
<?= $name['full'] ?>
</a>
<?php if ($num === $individual->getPrimaryName()) : ?>
<?= $individual->getSexImage() ?>
<?php endif ?>
<br>
<?php endforeach ?>
<?= $individual->getPrimaryParentsNames('parents details1', 'none') ?>
</td>
<td hidden data-sort="<?= e(str_replace([',', '@P.N.', '@N.N.'], 'AAAA', $individual->getSortName())) ?>"></td>
<td class="center" data-sort="<?= $key ?>">
<?php if ($sosa) : ?>
<?php if ($module instanceof RelationshipsChartModule) : ?>
<a href="<?= e($module->chartUrl($individuals[1], ['xref2' => $individual->xref()])) ?>" rel="nofollow" title="<?= I18N::translate('Relationships') ?>" rel="nofollow">
<?= I18N::number($key) ?>
</a>
<?php else : ?>
<?= I18N::number($key) ?>
<?php endif ?>
<?php endif ?>
</td>
<!-- Birth date -->
<td data-sort="<?= $individual->getEstimatedBirthDate()->julianDay() ?>">
<?php $birth_dates = $individual->getAllBirthDates(); ?>
<?php foreach ($birth_dates as $n => $birth_date) : ?>
<?= $birth_date->display(true) ?>
<br>
<?php endforeach ?>
</td>
<!-- Birth anniversary -->
<td class="center" data-sort="<?= -$individual->getEstimatedBirthDate()->julianDay() ?>">
<?php if (isset($birth_dates[0]) && $birth_dates[0]->gregorianYear() >= 1550 && $birth_dates[0]->gregorianYear() < 2030 && !isset($unique_indis[$individual->xref()])) : ?>
<?php $birt_by_decade[(int) ($birth_dates[0]->gregorianYear() / 10) * 10] .= $individual->getSex() ?>
<?= Date::getAge($birth_dates[0], null) ?>
<?php endif ?>
</td>
<!-- Birth place -->
<td>
<?php foreach ($individual->getAllBirthPlaces() as $n => $birth_place) : ?>
<?= $birth_place->shortName(true) ?>
<br>
<?php endforeach ?>
</td>
<!-- Number of children -->
<td class="center" data-sort="<?= $individual->getNumberOfChildren() ?>">
<?= I18N::number($individual->getNumberOfChildren()) ?>
</td>
<!-- Death date -->
<?php $death_dates = $individual->getAllDeathDates() ?>
<td data-sort="<?= $individual->getEstimatedDeathDate()->julianDay() ?>">
<?php foreach ($death_dates as $num => $death_date) : ?>
<?= $death_date->display(true) ?>
<br>
<?php endforeach ?>
</td>
<!-- Death anniversary -->
<td class="center" data-sort="<?= -$individual->getEstimatedDeathDate()->julianDay() ?>">
<?php if (isset($death_dates[0]) && $death_dates[0]->gregorianYear() >= 1550 && $death_dates[0]->gregorianYear() < 2030 && !isset($unique_indis[$individual->xref()])) : ?>
<?php $deat_by_decade[(int) ($death_dates[0]->gregorianYear() / 10) * 10] .= $individual->getSex() ?>
<?= Date::getAge($death_dates[0], null) ?>
<?php endif ?>
</td>
<!-- Age at death -->
<?php if (isset($birth_dates[0]) && isset($death_dates[0])) : ?>
<?php $age_at_death = I18N::number((int) Date::getAgeYears($birth_dates[0], $death_dates[0])); ?>
<?php $age_at_death_sort = Date::getAge($birth_dates[0], $death_dates[0]); ?>
<?php if (!isset($unique_indis[$individual->xref()]) && $age_at_death >= 0 && $age_at_death <= $max_age) : ?>
<?php $deat_by_age[$age_at_death] .= $individual->getSex(); ?>
<?php endif ?>
<?php else : ?>
<?php $age_at_death = ''; ?>
<?php $age_at_death_sort = PHP_INT_MAX; ?>
<?php endif ?>
<td class="center" data-sort="<?= e($age_at_death_sort) ?>">
<?= e($age_at_death) ?>
</td>
<!-- Death place -->
<td>
<?php foreach ($individual->getAllDeathPlaces() as $n => $death_place) : ?>
<?= $death_place->shortName(true) ?>
<br>
<?php endforeach ?>
</td>
<!-- Last change -->
<td data-sort="<?= $individual->lastChangeTimestamp(true) ?>">
<?= $individual->lastChangeTimestamp() ?>
</td>
<!-- Filter by sex -->
<td hidden>
<?= $individual->getSex() ?>
</td>
<!-- Filter by birth date -->
<td hidden>
<?php if (!$individual->canShow() || Date::compare($individual->getEstimatedBirthDate(), $hundred_years_ago) > 0) : ?>
Y100
<?php else : ?>
YES
<?php endif ?>
</td>
<!-- Filter by death date -->
<td hidden>
<?php if (isset($death_dates[0]) && Date::compare($death_dates[0], $hundred_years_ago) > 0) : ?>
Y100
<?php elseif ($individual->isDead()) : ?>
YES
<?php else : ?>
N
<?php endif ?>
</td>
<!-- Filter by roots/leaves -->
<td hidden>
<?php if (!$individual->getChildFamilies()) : ?>
R
<?php elseif (!$individual->isDead() && $individual->getNumberOfChildren() < 1) : ?>
L
<?php endif ?>
</td>
</tr>
<?php $unique_indis[$individual->xref()] = true ?>
<?php endforeach ?>
</tbody>
</table>
<div id="individual-charts-<?= e($table_id) ?>" style="display:none">
<table class="list-charts">
<tr>
<td>
<?= view('lists/chart-by-decade', ['data' => $birt_by_decade, 'title' => I18N::translate('Decade of birth')]) ?>
</td>
<td>
<?= view('lists/chart-by-decade', ['data' => $deat_by_decade, 'title' => I18N::translate('Decade of death')]) ?>
</td>
</tr>
<tr>
<td colspan="2">
<?= view('lists/chart-by-age', ['data' => $deat_by_age, 'title' => I18N::translate('Age related to death year')]) ?>
</td>
</tr>
</table>
</div>
</div>
|