-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstatistics.php
203 lines (173 loc) · 10.4 KB
/
statistics.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
<?php
/**
* Creates some statistics out of the GEDCOM information.
* We will start with the following possibilities
* number of persons -> periodes of 10 years from 1700-2010
* age -> periodes of 10 years (different for 0-1,1-5,5-10,10-20 etc)
*
* Genmod: Genealogy Viewer
* Copyright (C) 2005 Genmod 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @package Genmod
* @subpackage Lists
* @version $Id: statistics.php 29 2022-07-17 13:18:20Z Boudewijn $
*/
/**
* Inclusion of the configuration file
*/
require("config.php");
//-- ========= start of main program =========
$famgeg = array();
$persgeg= array();
$famgeg1 = array();
$persgeg1= array();
$key2ind= array();
$match1= array();
//$match2= array();
if (isset($cleanup) && $cleanup == "yes") unset($_SESSION[GedcomConfig::$GEDCOMID."statisticsplot"]);
PrintHeader(GM_LANG_statistics);
//-- You should install JpGraph routines on your computer. I implemented them in genmod/modules/jpgraph
//-- Please check this with any availability test
//-- The info below comes from www.php.net when looking at functions
$mypath= ini_get("include_path");
//-- On some servers the include path does not support the (current) directory from the calling routine
//-- ini_set("include_path", $mypath);
PlotFunctions::CheckPlotExtensions();
PlotFunctions::GetPlotData();
print "\n\t<div class=\"StatisticsPageTitle\"><span class=\"PageTitleName\">".GM_LANG_statistiek_list."</span></div>\n\t";
print "<form method=\"post\" name=\"form\" action=\"statisticsplot.php\">";
print "<table class=\"NavBlockTable StatsContainer\">";
// statistics
print "<tr><td class=\"NavBlockHeader\" colspan=\"2\">".GM_LANG_statistics.PrintHelpLink("stat_help","qm", "", false, true)."</td></tr>";
print "<tr><td class=\"NavBlockLabel\">".GM_LANG_statnnames."</td><td class=\"NavBlockField\">".$nrpers."</td></tr>";
print "<tr><td class=\"NavBlockLabel\">".GM_LANG_statnfam."</td><td class=\"NavBlockField\">".$nrfam."</td></tr>";
print "<tr><td class=\"NavBlockLabel\">".GM_LANG_statnmale."</td><td class=\"NavBlockField\">".$nrman."</td></tr>";
print "<tr><td class=\"NavBlockLabel\">".GM_LANG_statnfemale."</td><td class=\"NavBlockField\">".$nrvrouw."</td></tr>";
//if (!isset($plottype)) $plottype=0;
if (isset($_SESSION[GedcomConfig::$GEDCOMID."statisticsplot"])) {
foreach ($_SESSION[GedcomConfig::$GEDCOMID."statisticsplot"] as $name => $value) {
$$name = $value;
}
}
else {
//$xasGrLeeftijden = "1,5,10,20,30,40,50,60,70,80,90";
$xasGrLeeftijden = "1,5,10,20,30,40,50,60,70,80,90,100";
$xasGrMaanden = "-24,-12,0,8,12,18,24,48";
$xasGrAantallen = "1,2,3,4,5,6,7,8,9,10";
// A maximum of 7 entries will work with statisticsplot.php as is
$zasGrPeriode = "1800,1900,1950,1980";
//$zasGrPeriode = "1700,1750,1800,1850,1900,1950,2000";
$showShadow = "yes";
$valuePos = "top";
$graphSize = "autoWindow";
$x_as = "11";
$y_as = "201";
$z_as = "302";
}
// plotting variables
print "<tr><td class=\"NavBlockHeader\" colspan=\"2\">".GM_LANG_statvars."</td></tr>";
print "<tr><td class=\"NavBlockLabel\">";
print GM_LANG_statlxa;
print "</td><td class=\"NavBlockField\">";
print "<select name=\"x_as\">";
print "<option value= \"11\" "; if ($x_as == "11") print "selected=\"selected\""; print">".GM_LANG_stat_11_mb; print "</option>";
print "<option value= \"12\" "; if ($x_as == "12") print "selected=\"selected\""; print">".GM_LANG_stat_12_md; print "</option>";
print "<option value= \"13\" "; if ($x_as == "13") print "selected=\"selected\""; print">".GM_LANG_stat_13_mm; print "</option>";
print "<option value= \"14\" "; if ($x_as == "14") print "selected=\"selected\""; print">".GM_LANG_stat_14_mb1; print "</option>";
print "<option value= \"15\" "; if ($x_as == "15") print "selected=\"selected\""; print">".GM_LANG_stat_15_mm1; print "</option>";
print "<option value= \"16\" "; if ($x_as == "16") print "selected=\"selected\""; print">".GM_LANG_stat_16_mmb." ".GM_LANG_stat_gmx; print "</option>";
print "<option value= \"17\" "; if ($x_as == "17") print "selected=\"selected\""; print">".GM_LANG_stat_17_arb." ".GM_LANG_stat_gax; print "</option>";
print "<option value= \"18\" "; if ($x_as == "18") print "selected=\"selected\""; print">".GM_LANG_stat_18_ard." ".GM_LANG_stat_gax; print "</option>";
print "<option value= \"19\" "; if ($x_as == "19") print "selected=\"selected\""; print">".GM_LANG_stat_19_arm." ".GM_LANG_stat_gax; print "</option>";
print "<option value= \"20\" "; if ($x_as == "20") print "selected=\"selected\""; print">".GM_LANG_stat_20_arm1." ".GM_LANG_stat_gax; print "</option>";
print "<option value= \"21\" "; if ($x_as == "21") print "selected=\"selected\""; print">".GM_LANG_stat_21_nok." ".GM_LANG_stat_gnx; print "</option>";
print "</select></td></tr>";
print "<tr><td class=\"NavBlockLabel\">";
print GM_LANG_statlya;
print "</td><td class=\"NavBlockField\">";
print "<select name=\"y_as\">";
print "<option value= \"201\" "; if ($y_as == "201") print "selected=\"selected\""; print">".GM_LANG_stat_201_num; print "</option>";
print "<option value= \"202\" "; if ($y_as == "202") print "selected=\"selected\""; print">".GM_LANG_stat_202_perc; print "</option>";
print "</select></td></tr>";
print "<tr><td class=\"NavBlockLabel\">";
print GM_LANG_statlza;
print "</td><td class=\"NavBlockField\">";
print "<select name=\"z_as\">";
print "<option value= \"300\" "; if ($z_as == "300") print "selected=\"selected\""; print">".GM_LANG_stat_300_none; print "</option>";
print "<option value= \"301\" "; if ($z_as == "301") print "selected=\"selected\""; print">".GM_LANG_stat_301_mf; print "</option>";
print "<option value= \"302\" "; if ($z_as == "302") print "selected=\"selected\""; print">".GM_LANG_stat_302_cgp; print "</option>";
print "</select></td></tr>";
// tickvalues
print "<tr><td class=\"NavBlockHeader\" colspan=\"2\">".GM_LANG_statmess1."</td></tr>";
print "<tr><td class=\"NavBlockLabel\">";
print GM_LANG_statar_xgl."</td>";
print "<td class=\"NavBlockField\">";
print "<input type=\"text\" name=\"xasGrLeeftijden\" value=\"".$xasGrLeeftijden."\" size=\"60\" onfocus=\"getHelp('periode_help');\" />";
print "</td></tr>";
print "<tr><td class=\"NavBlockLabel\">";
print GM_LANG_statar_xgm."</td>";
print "<td class=\"NavBlockField\">";
print "<input type=\"text\" name=\"xasGrMaanden\" value=\"".$xasGrMaanden."\" size=\"60\" onfocus=\"getHelp('periode_help');\" />";
print "</td></tr>";
print "<tr><td class=\"NavBlockLabel\">";
print GM_LANG_statar_xga."</td>";
print "<td class=\"NavBlockField\">";
print "<input type=\"text\" name=\"xasGrAantallen\" value=\"".$xasGrAantallen."\" size=\"60\" onfocus=\"getHelp('periode_help');\" />";
print "</td></tr>";
print "<tr><td class=\"NavBlockLabel\">";
print GM_LANG_statar_zgp."</td>";
print "<td class=\"NavBlockField\">";
print "<input type=\"text\" name=\"zasGrPeriode\" value=\"".$zasGrPeriode."\" size=\"60\" onfocus=\"getHelp('periode_help');\" />";
print "</td></tr>";
// Options
print "<tr><td class=\"NavBlockHeader\" colspan=\"2\">".GM_LANG_options."</td></tr>";
print "<tr><td class=\"NavBlockLabel\">";
print GM_LANG_pl_shadow."</td>";
print "<td class=\"NavBlockField\"><select name=\"showShadow\">";
print "<option value=\"yes\" ";if ($showShadow=="yes") print "selected=\"selected\""; print ">".GM_LANG_yes."</option>";
print "<option value=\"no\" ";if ($showShadow=="no") print "selected=\"selected\""; print ">".GM_LANG_no."</option>";
print "</select></td></tr>";
print "<tr><td class=\"NavBlockLabel\">";
print GM_LANG_pl_val."</td>";
print "<td class=\"NavBlockField\"><select name=\"valuePos\">";
print "<option value=\"none\" ";if ($valuePos=="none") print "selected=\"selected\""; print ">".GM_LANG_none."</option>";
print "<option value=\"top\" ";if ($valuePos=="top") print "selected=\"selected\""; print ">".GM_LANG_top."</option>";
print "<option value=\"center\" ";if ($valuePos=="center") print "selected=\"selected\""; print ">".GM_LANG_center."</option>";
print "<option value=\"bottom\" ";if ($valuePos=="bottom") print "selected=\"selected\""; print ">".GM_LANG_bottom."</option>";
print "</select></td></tr>";
print "<tr><td class=\"NavBlockLabel\">";
print GM_LANG_pl_size."</td>";
print "<td class=\"NavBlockField\"><select name=\"graphSize\">";
print "<option value=\"autoScreen\" ";if ($graphSize=="autoScreen") print "selected=\"selected\""; print ">".GM_LANG_pl_scr."</option>";
print "<option value=\"autoWindow\" ";if ($graphSize=="autoWindow") print "selected=\"selected\""; print ">".GM_LANG_pl_win."</option>";
print "<option value=\"700x400\" ";if ($graphSize=="700x400") print "selected=\"selected\""; print ">".GM_LANG_pl_std."</option>";
print "<option value=\"1050x600\" ";if ($graphSize=="1050x600") print "selected=\"selected\""; print ">".GM_LANG_pl_large."</option>";
print "<option value=\"1400x800\" ";if ($graphSize=="1400x800") print "selected=\"selected\""; print ">".GM_LANG_pl_xlarge."</option>";
print "</select>";
print "<input type=\"hidden\" name=\"screenRes\" value=\"\" size=\"10\" />";
print "<input type=\"hidden\" name=\"windowRes\" value=\"\" size=\"10\" />";
print "</td></tr>";
// Submit bar
print "<tr><td class=\"NavBlockFooter\" colspan=\"2\">";
print "<input type=\"submit\" value=\"".GM_LANG_statsubmit."\" onclick=\"document.form.screenRes.value=screen.width+'x'+screen.height;document.form.windowRes.value=document.body.clientWidth+'x'+document.body.clientHeight;closeHelp();\" /> ";
print "<input type=\"button\" value=\"".GM_LANG_statreset."\" onclick=\"location.href='statistics.php?cleanup=yes'; return false;\" />";
print "</td></tr></table>";
print "</form>";
//--print "plottype=".$plottype."<br>";
//$_SESSION["plottype"]=$plottype;
PrintFooter();
?>