-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpgvinfo.php
More file actions
147 lines (122 loc) · 4.73 KB
/
pgvinfo.php
File metadata and controls
147 lines (122 loc) · 4.73 KB
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
<?php
/**
* Displays information on the PHP installation
*
* Provides links for administrators to get to other administrative areas of the site
*
* phpGedView: Genealogy Viewer
* Copyright (C) 2002 to 2008 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
*
$Id$
*/
/**
* load the main configuration and context
*/
require_once( '../kernel/setup_inc.php' );
// Is package installed and enabled
$gBitSystem->verifyPackage( 'phpgedview' );
include_once( PHPGEDVIEW_PKG_PATH.'BitGEDCOM.php' );
$gGedcom = new BitGEDCOM();
// leave manual config until we can move it to bitweaver table
require "config.php";
if (!userGedcomAdmin(getUserName())) {
header("Location: login.php?url=pgvinfo.php?action=".$action);
exit;
}
require $confighelpfile["english"];
if (file_exists( $confighelpfile[$LANGUAGE])) require $confighelpfile[$LANGUAGE];
if (isset($_REQUEST['action'])) $action = $_REQUEST['action'];
if (!isset($action)) $action = "";
if ($action == "phpinfo") {
$helpindex = "phpinfo_help";
print_header($pgv_lang["phpinfo"]);
?>
<div class="center">
<?php
ob_start();
phpinfo();
$php_info = ob_get_contents();
ob_end_clean();
$php_info = str_replace(" width=\"600\"", " width=\"\"", $php_info);
$php_info = str_replace("</body></html>", "", $php_info);
$php_info = str_replace("<table", "<table class=\"center facts_table ltr\"", $php_info);
$php_info = str_replace("td class=\"e\"", "td class=\"facts_value\"", $php_info);
$php_info = str_replace("td class=\"v\"", "td class=\"facts_value\"", $php_info);
$php_info = str_replace("tr class=\"v\"", "tr", $php_info);
$php_info = str_replace("tr class=\"h\"", "tr", $php_info);
$php_info = str_replace(";", "; ", $php_info);
$php_info = str_replace(",", ", ", $php_info);
// Put logo in table header
$logo_offset = strpos($php_info, "<td>");
$php_info = substr_replace($php_info, "<td colspan=\"3\" class=\"facts_label03\">", $logo_offset, 4);
$logo_width_offset = strpos($php_info, "width=\"\"");
$php_info = substr_replace($php_info, "width=\"800\"", $logo_width_offset, 8);
$php_info = str_replace(" width=\"\"", "", $php_info);
$offset = strpos($php_info, "<table");
$php_info = substr($php_info, $offset);
echo $php_info;
?>
</div>
<?php
// exit;
}
if ($action=="confighelp") {
require "includes/functions/functions_editlang.php";
$helpindex = "config_help_help";
print_header($pgv_lang["config_help"]);
print "<h2 class=\"center\">".UTF8_strtoupper($pgv_lang["config_help"])."</h2><br />";
$language_array = array();
$language_array = read_export_file_into_array($confighelpfile[$LANGUAGE], "pgv_lang[");
$new_language_array = array();
$new_language_array_counter = 0;
for ($z = 0, $zmax = sizeof($language_array); $z < $zmax; $z++) {
if (isset($language_array[$z][0])) {
if (strpos($language_array[$z][0], "_help\"") > 0) {
$language_array[$z][0] = substr($language_array[$z][0], strpos($language_array[$z][0], "\"") + 1);
$language_array[$z][0] = substr($language_array[$z][0], 0, strpos($language_array[$z][0], "\""));
$new_language_array[$new_language_array_counter] = $language_array[$z];
$new_language_array_counter++;
}
}
}
print "<ol>";
for ($z = 0, $zmax = sizeof($new_language_array); $z < $zmax; $z++) {
for ($x = 0, $xmax = sizeof($language_array); $x < $xmax; $x++) {
$dDummy = $new_language_array[$z][0];
$dDummy = substr($dDummy, 0, strpos($dDummy, "_help"));
if (isset($language_array[$x][0])) {
if (strpos($language_array[$x][0], "\"" . $dDummy . "\"") > 0) {
if ($new_language_array[$z][0] != "config_help") {
if ($new_language_array[$z][0] != "welcome_help") {
$new_language_array[$z][0] = $language_array[$x][1];
}
}
break;
}
}
}
}
for ($z = 0, $zmax = sizeof($new_language_array); $z < $zmax; $z++) {
if ($new_language_array[$z][0] != "config_help" and $new_language_array[$z][0] != "welcome_help") {
echo '<li>';
echo stripslashes(print_text($new_language_array[$z][1],0,2)) . "<br /><br /></li>\r\n";
}
}
echo '</ol>';
}
print_footer();
?>