forked from opendocman/opendocman
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
219 lines (204 loc) · 7.96 KB
/
admin.php
File metadata and controls
219 lines (204 loc) · 7.96 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
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
<?php
/*
* Copyright (C) 2000-2021. Stephen Lawrence
*
* 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.
*/
// Copyright (C) 2007 Stephen Lawrence Jr., Jon Miner
// administration functions for admin users
use Aura\Html\Escaper as e;
session_start();
include('odm-load.php');
if (!isset($_SESSION['uid'])) {
redirect_visitor();
}
include('udf_functions.php');
$user_obj = new User($_SESSION['uid'], $pdo);
if (!$user_obj->isAdmin()) {
header('Location:error.php?ec=4');
exit;
}
$last_message = (isset($_REQUEST['last_message']) ? $_REQUEST['last_message'] : '');
draw_header(msg('label_admin'), $last_message);
$request_state = e::h(($_REQUEST['state']+1));
?>
<table border="1" cellspacing="5" cellpadding="5" >
<th bgcolor ="#83a9f7"><font color="#FFFFFF"><?php echo msg('users')?></font></th><th bgcolor ="#83a9f7"><font color="#FFFFFF"><?php echo msg('label_department')?></font></th><th bgcolor ="#83a9f7"><font color="#FFFFFF"><?php echo msg('category')?></font></th><?php if ($user_obj->isRoot()) {
echo '<th bgcolor ="#83a9f7"><font color="#FFFFFF">' . msg('file') . '</th></font>';
} ?>
<?php
if ($user_obj->isRoot()) {
udf_admin_header();
}
?>
<tr>
<td>
<!-- User Admin -->
<table border="0">
<tr>
<td><b><a href="<?php echo 'user.php?submit=adduser&state=' . ($request_state); ?>"><?php echo msg('label_add')?></a></b></td>
</tr>
<tr>
<td><b><a href="<?php echo 'user.php?submit=deletepick&state=' . ($request_state); ?>"><?php echo msg('label_delete')?></a></b></td>
</tr>
<tr>
<td><b><a href="<?php echo 'user.php?submit=updatepick&state=' . ($request_state); ?>"><?php echo msg('label_update')?></a></b></td>
</tr>
<tr>
<td><b><a href="<?php echo 'user.php?submit=showpick&state=' . ($request_state); ?>"><?php echo msg('label_display')?></a></b></td>
</tr>
</table>
</td>
<td>
<!-- Department Admin -->
<table border="0">
<tr>
<td><b><a href="<?php echo 'department.php?submit=add&state=' . ($request_state); ?>"><?php echo msg('label_add')?></a></b></td>
</tr>
<tr>
<td><b><a href="<?php echo 'department.php?submit=deletepick&state=' . ($request_state); ?>"><?php echo msg('label_delete')?></a></b></td>
</tr>
<tr>
<td><b><a href="<?php echo 'department.php?submit=updatepick&state=' . ($request_state); ?>"><?php echo msg('label_update')?></a></b></td>
</tr>
<tr>
<td><b><a href="<?php echo 'department.php?submit=showpick&state=' . ($request_state); ?>"><?php echo msg('label_display')?></a></b></td>
</tr>
</table>
</td>
<td>
<!-- Category Admin -->
<table border="0">
<tr>
<td><b><a href="<?php echo 'category.php?submit=add&state=' . ($request_state); ?>"><?php echo msg('label_add')?></a></b></td>
</tr>
<tr>
<td><b><a href="<?php echo 'category.php?submit=deletepick&state=' . ($request_state); ?>"><?php echo msg('label_delete')?></a></b></td>
</tr>
<tr>
<td><b><a href="<?php echo 'category.php?submit=updatepick&state=' . ($request_state); ?>"><?php echo msg('label_update')?></a></b></td>
</tr>
<tr>
<td><b><a href="<?php echo 'category.php?submit=showpick&state=' . ($request_state); ?>"><?php echo msg('label_display')?></a></b></td>
</tr>
</table>
</td>
<?php if ($user_obj->isRoot()) {
?>
<td>
<!-- Root-Only Section -->
<table border="0" valign="top">
<tr>
<td ><b><a href="<?php echo 'delete.php?mode=view_del_archive&state=' . ($request_state);
?>"><?php echo msg('label_delete_undelete')?></a></b></td>
</tr>
<tr>
<td><b><a href="<?php echo 'toBePublished.php?mode=root&state=' . $request_state;
?>"><?php echo msg('label_reviews')?></a></b></td>
</tr>
<tr>
<td><b><a href="<?php echo 'rejects.php?mode=root&state=' . $request_state;
?>"><?php echo msg('label_rejections')?></a></b></td>
</tr>
<tr>
<td><b><a href="<?php echo 'check_exp.php?&state=' . $request_state;
?>"><?php echo msg('label_check_expiration')?></a></b></td>
</tr>
<tr>
<td><b><a href="<?php echo 'file_ops.php?&state=' . $request_state;
?>&submit=view_checkedout"><?php echo msg('label_checked_out_files')?></a></b></td>
</tr>
</table>
</td>
<?php udf_admin_menu();
?>
</tr>
<tr>
<td>
<table>
<tr>
<th bgcolor ="#83a9f7"><font color="#FFFFFF"><?php echo msg('label_settings')?></font></th>
</tr>
<tr>
<td><b><a href="<?php echo 'settings.php?submit=update&state=' . $request_state;
?>"><?php echo msg('adminpage_edit_settings');
?></a></b></td>
</tr>
<tr>
<td><b><a href="<?php echo 'filetypes.php?submit=update&state=' . $request_state;
?>"><?php echo msg('adminpage_edit_filetypes');
?></a></b></td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<th bgcolor ="#83a9f7"><font color="#FFFFFF"><?php echo msg('adminpage_reports');
?></font></th>
</tr>
<tr>
<td><b><a href="<?php echo 'access_log.php?submit=update&state=' . $request_state;
?>"><?php echo msg('adminpage_access_log');
?></a></b></td>
</tr>
<tr>
<td><b><a href="reports/file_list.php"><?php echo msg('adminpage_reports_file_list');
?></a></b></td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<th bgcolor ="#83a9f7"><font color="#FFFFFF"><?php echo msg('adminpage_about_section_title');
?></font></th>
</tr>
<tr>
<td><b><?php echo msg('adminpage_about_section_app_version') . ": " . e::h($GLOBALS['CONFIG']['current_version']);
?></b></td>
</tr>
<tr>
<td><b><?php echo msg('adminpage_about_section_db_version') . ": " . e::h(Settings::get_db_version());
?></b></td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</td>
</tr>
<?php
} ?>
</table>
<?php
if (is_array($GLOBALS['plugin']->getPluginsList()) && $user_obj->isRoot()) {
?>
<table border="1" cellspacing="5" cellpadding="5" >
<th bgcolor ="#83a9f7"><font color="#FFFFFF"><?php echo msg('label_plugins')?></font></th>
<tr>
<td>
<?php
//Perform the admin loop section to add plugin menu items
callPluginMethod('onAdminMenu');
?>
</td>
</tr>
</table>
<?php
}
?>
<?php
draw_footer();