forked from fisharebest/webtrees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ancestry.php
186 lines (181 loc) · 6.52 KB
/
ancestry.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
<?php
// Displays pedigree tree as a printable booklet
// with Sosa-Stradonitz numbering system
// ($rootid=1, father=2, mother=3 ...)
//
// webtrees: Web based Family History software
// Copyright (C) 2014 webtrees development team.
//
// Derived from PhpGedView
// Copyright (C) 2002 to 2009 PGV 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
define('WT_SCRIPT_NAME', 'ancestry.php');
require './includes/session.php';
require_once WT_ROOT.'includes/functions/functions_print_lists.php';
$controller = new WT_Controller_Ancestry();
$controller
->pageHeader()
->addExternalJavascript(WT_STATIC_URL . 'js/autocomplete.js')
->addInlineJavascript('autocomplete();');
?>
<div id="ancestry-page">
<h2><?php echo $controller->getPageTitle(); ?></h2>
<form name="people" id="people" method="get" action="?">
<input type="hidden" name="ged" value="<?php echo WT_Filter::escapeHtml(WT_GEDCOM); ?>">
<input type="hidden" name="show_full" value="<?php echo $controller->show_full; ?>">
<input type="hidden" name="show_cousins" value="<?php echo $controller->show_cousins; ?>">
<table class="list_table">
<tr>
<td class="descriptionbox">
<?php echo WT_I18N::translate('Individual'); ?>
</td>
<td class="optionbox">
<input class="pedigree_form" data-autocomplete-type="INDI" type="text" name="rootid" id="rootid" size="3" value="<?php echo $controller->root->getXref(); ?>">
<?php echo print_findindi_link('rootid'); ?>
</td>
<td class="descriptionbox">
<?php echo WT_I18N::translate('Box width'); ?>
</td>
<td class="optionbox">
<input type="text" size="3" name="box_width" value="<?php echo WT_Filter::escapeHtml($box_width); ?>"> <b>%</b>
</td>
<td rowspan="2" class="descriptionbox">
<?php echo WT_I18N::translate('Layout'); ?>
</td>
<td rowspan="2" class="optionbox">
<input type="radio" name="chart_style" value="0"
<?php
if ($controller->chart_style==0) {
echo ' checked="checked"';
}
echo ' onclick="statusDisable(\'cousins\');';
echo '">', WT_I18N::translate('List');
echo '<br><input type="radio" name="chart_style" value="1"';
if ($controller->chart_style==1) {
echo ' checked="checked"';
}
echo ' onclick="statusEnable(\'cousins\');';
echo '">', WT_I18N::translate('Booklet');
?>
<br>
<?php
echo '<input ';
if ($controller->chart_style==0) {
echo 'disabled="disabled" ';
}
echo 'id="cousins" type="checkbox" value="';
if ($controller->show_cousins) {
echo '1" checked="checked" onclick="document.people.show_cousins.value=\'0\';"';
} else {
echo '0" onclick="document.people.show_cousins.value=\'1\';"';
}
echo '>';
echo WT_I18N::translate('Show cousins');
echo '<br><input type="radio" name="chart_style" value="2"';
if ($controller->chart_style==2) {
echo ' checked="checked" ';
}
echo ' onclick="statusDisable(\'cousins\');"';
echo '>', WT_I18N::translate('Individuals');
echo '<br><input type="radio" name="chart_style" value="3"';
echo ' onclick="statusDisable(\'cousins\');"';
if ($controller->chart_style==3) {
echo ' checked="checked" ';
}
echo '>', WT_I18N::translate('Families');
?>
</td>
<td rowspan="2" class="facts_label03">
<input type="submit" value="<?php echo WT_I18N::translate('View'); ?>">
</td>
</tr>
<tr>
<td class="descriptionbox">
<?php echo WT_I18N::translate('Generations'); ?>
</td>
<td class="optionbox">
<select name="PEDIGREE_GENERATIONS">
<?php
for ($i=2; $i<=$MAX_PEDIGREE_GENERATIONS; $i++) {
echo '<option value="', $i, '"';
if ($i==$OLD_PGENS) {
echo ' selected="selected"';
}
echo '>', WT_I18N::number($i), '</option>';
}
?>
</select>
</td>
<td class="descriptionbox">
<?php echo WT_I18N::translate('Show details'); ?>
</td>
<td class="optionbox">
<input type="checkbox" value="<?php if ($controller->show_full) { echo '1" checked="checked" onclick="document.people.show_full.value=\'0\';'; } else { echo '0" onclick="document.people.show_full.value=\'1\';'; } ?>">
</td>
</tr>
</table>
</form>
<?php
if ($controller->error_message) {
echo '<p class="ui-state-error">', $controller->error_message, '</p>';
return;
}
switch ($controller->chart_style) {
case 0:
// List
$pidarr=array();
echo '<ul id="ancestry_chart">';
$controller->printChildAscendancy($controller->root, 1, $OLD_PGENS-1);
echo '</ul>';
echo '<br>';
break;
case 1:
// TODO: this should be a parameter to a function, not a global
$show_cousins = $controller->show_cousins;
echo '<div id="ancestry_chart">';
// Booklet
// first page : show indi facts
print_pedigree_person($controller->root);
// process the tree
$ancestors = $controller->sosaAncestors($PEDIGREE_GENERATIONS-1);
$ancestors = array_filter($ancestors); // The SOSA array includes empty placeholders
foreach ($ancestors as $sosa => $individual) {
foreach ($individual->getChildFamilies() as $family) {
print_sosa_family($family->getXref(), $individual, $sosa);
}
}
echo '</div>';
break;
case 2:
// Individual list
$ancestors = $controller->sosaAncestors($PEDIGREE_GENERATIONS);
$ancestors = array_filter($ancestors); // The SOSA array includes empty placeholders
echo '<div id="ancestry-list">', format_indi_table($ancestors, 'sosa'), '</div>';
break;
case 3:
// Family list
$ancestors = $controller->sosaAncestors($PEDIGREE_GENERATIONS-1);
$ancestors = array_filter($ancestors); // The SOSA array includes empty placeholders
$families = array();
foreach ($ancestors as $individual) {
foreach ($individual->getChildFamilies() as $family) {
$families[$family->getXref()] = $family;
}
}
echo '<div id="ancestry-list">', format_fam_table($families), '</div>';
break;
}
echo '</div>';