-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminUsers.php
More file actions
256 lines (232 loc) · 13.7 KB
/
adminUsers.php
File metadata and controls
256 lines (232 loc) · 13.7 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
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
<?php
require "../phplib/genlibraries.php";
require "../phplib/admin.inc.php";
redirectAdminOutside();
$countries = array();
foreach (array_values(iterator_to_array($GLOBALS['countriesCol']->find(array(),array('country'=>1))->sort(array('country'=>1)))) as $v)
$countries[$v['_id']] = $v['country'];
$users = array();
foreach (array_values(iterator_to_array($GLOBALS['usersCol']->find(array(),array('Surname'=>1, 'Name'=>1, 'Inst'=>1, 'Country'=>1, 'diskQuota'=>1, 'lastLogin'=>1, 'Type'=>1, 'Status'=>1))->sort(array('Surname'=>1)))) as $v)
$users[$v['_id']] = array($v['Surname'], $v['Name'], $v['Inst'], $v['Country'], $v['diskQuota'], $v['lastLogin'], $v['Type'], $v['Status']);
unset($users['guest@guest']);
?>
<?php require "../htmlib/header.inc.php"; ?>
<body class="page-header-fixed page-sidebar-closed-hide-logo page-content-white page-container-bg-solid">
<div class="page-wrapper">
<?php require "../htmlib/top.inc.php"; ?>
<?php require "../htmlib/menu.inc.php"; ?>
<!-- BEGIN CONTENT -->
<div class="page-content-wrapper">
<!-- BEGIN CONTENT BODY -->
<div class="page-content">
<!-- BEGIN PAGE HEADER-->
<!-- BEGIN PAGE BAR -->
<div class="page-bar">
<ul class="page-breadcrumb">
<li>
<span>Admin</span>
<i class="fa fa-circle"></i>
</li>
<li>
<span>Admin Users</span>
</li>
</ul>
</div>
<!-- END PAGE BAR -->
<!-- BEGIN PAGE TITLE-->
<h1 class="page-title"> Users Administration
<small>Edit user's data and create new users</small>
</h1>
<!-- END PAGE TITLE-->
<!-- END PAGE HEADER-->
<div class="row">
<div class="col-md-12">
<!-- BEGIN EXAMPLE TABLE PORTLET-->
<div class="portlet light portlet-fit bordered">
<div class="portlet-body">
<div class="table-toolbar">
<div class="row">
<div class="col-md-12">
<div class="btn-group">
<button id="sample_editable_1_new" class="btn green"> Add New
<i class="fa fa-plus"></i>
</button>
</div>
</div>
</div>
</div>
<table class="table table-striped table-hover table-bordered" id="sample_editable_1">
<thead>
<tr>
<th> Email </th>
<th> Surname </th>
<th> Name </th>
<th> Institution </th>
<th> Country </th>
<th> Type of User </th>
<th> Last login </th>
<th> Disk </th>
<th> Actions </th>
</tr>
</thead>
<tbody>
<?php
foreach($users as $key => $value):
?>
<tr>
<td><a href="mailto:<?php echo $key; ?>"><?php echo $key; ?></a></td>
<td><?php echo $value[0]; ?></td>
<td><?php echo $value[1]; ?></td>
<td><?php echo $value[2]; ?></td>
<td><?php echo $countries[$value[3]]; ?><div style="display:none;">*<?php echo $value[3]; ?>*</div></td>
<td>
<div class="btn-group">
<?php if($value[6] == 0){ ?>
<button disabled class="btn btn-xs blue dropdown-toggle" type="button" data-toggle="dropdown" aria-expanded="false" style="opacity:1;"> <?php echo $GLOBALS['ROLES'][$value[6]]; ?>
<i class="fa fa-circle-thin"></i>
</button>
<?php }else{ ?>
<button class="btn btn-xs btn-default <?php echo $GLOBALS['ROLES_COLOR'][$value[6]]; ?> dropdown-toggle" type="button" data-toggle="dropdown" aria-expanded="false"> <?php echo $GLOBALS['ROLES'][$value[6]]; ?>
<i class="fa fa-angle-down"></i>
</button>
<ul class="dropdown-menu" role="menu">
<?php foreach($GLOBALS['ROLES'] as $k => $v): ?>
<li><a class="role-usr role<?php echo $k; ?>" href="javascript:;"><?php echo $v; ?></a></li>
<?php endforeach; ?>
</ul>
<div style="display:none;">*<?php echo $value[6]; ?>*</div>
<?php } ?>
</div>
</td>
<td><?php echo returnHumanDate($value[5]); ?></td>
<td><?php echo $value[4]; ?></td>
<td>
<?php if($value[6] != 0){ ?>
<div class="btn-group">
<?php if($value[7] == 0){ ?>
<button class="btn btn-xs red dropdown-toggle" type="button" data-toggle="dropdown" aria-expanded="false"> Actions
<i class="fa fa-angle-down"></i>
</button>
<ul class="dropdown-menu pull-right" role="menu">
<li>
<a class="enable" href="javascript:;">
<i class="fa fa-check-circle"></i> Enable user</a>
</li>
</ul>
<?php }else{ ?>
<button class="btn btn-xs green dropdown-toggle" type="button" data-toggle="dropdown" aria-expanded="false"> Actions
<i class="fa fa-angle-down"></i>
</button>
<ul class="dropdown-menu pull-right" role="menu">
<li>
<a class="edit" href="javascript:;">
<i class="fa fa-pencil"></i> Edit user</a>
</li>
<li>
<a class="enable" href="javascript:;">
<i class="fa fa-ban"></i> Disable user</a>
</li>
</ul>
<?php } ?>
</div>
<?php } ?>
</td>
</tr>
<?php
endforeach;
?>
</tbody>
</table>
</div>
</div>
<!-- END EXAMPLE TABLE PORTLET-->
</div>
</div>
</div>
<!-- END CONTENT BODY -->
</div>
<!-- END CONTENT -->
<div class="modal fade bs-modal-sm" id="myModal1" tabindex="-1" role="basic" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button>
<h4 class="modal-title">Warning!</h4>
</div>
<div class="modal-body"> You can't add a new user until you have finished editing the current one. </div>
<div class="modal-footer">
<button type="button" class="btn dark btn-outline" data-dismiss="modal">Accept</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<div class="modal fade" id="myModal2" tabindex="-1" role="basic" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button>
<h4 class="modal-title">Validation error</h4>
</div>
<div class="modal-body"> Please fill in all fields and be sure that the e-mail has a proper format and the disk quota value is between 1 and 100 </div>
<div class="modal-footer">
<button type="button" class="btn dark btn-outline" data-dismiss="modal">Accept</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<div class="modal fade bs-modal-sm" id="myModal3" tabindex="-1" role="basic" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button>
<h4 class="modal-title">Warning!</h4>
</div>
<div class="modal-body"> You can't edit a user until you have finished editing the new one. </div>
<div class="modal-footer">
<button type="button" class="btn dark btn-outline" data-dismiss="modal">Accept</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<div class="modal fade bs-modal-sm" id="myModal5" tabindex="-1" role="basic" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button>
<h4 class="modal-title">Error!</h4>
</div>
<div class="modal-body"> Something happened updating data, please try again. </div>
<div class="modal-footer">
<button type="button" class="btn dark btn-outline" data-dismiss="modal">Accept</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<div class="modal fade bs-modal-sm" id="myModal6" tabindex="-1" role="basic" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button>
<h4 class="modal-title">Error!</h4>
</div>
<div class="modal-body"> A user with this email already exists in our database, please try with different data. </div>
<div class="modal-footer">
<button type="button" class="btn dark btn-outline" data-dismiss="modal">Accept</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<?php
require "../htmlib/footer.inc.php";
require "../htmlib/js.inc.php";
?>