forked from mikehenken/Multi-User
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser-managment.php
More file actions
1101 lines (963 loc) · 35.5 KB
/
user-managment.php
File metadata and controls
1101 lines (963 loc) · 35.5 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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/*
Plugin Name: Multi User
Description: Adds Multi-User Management Section'
Version: 1.4
Author: Mike Henken
Author URI: http://michaelhenken.com/
*/
// get correct id for plugin
$thisfile = basename(__FILE__, ".php");
# add in this plugin's language file
i18n_merge('user-managment') || i18n_merge('user-managment', 'en_US');
// register plugin
register_plugin($thisfile, // ID of plugin, should be filename minus php
'Multi User',
'1.4',
'Mike Henken', // Author of plugin
'http://www.michaelhenken.com/', // Author URL
// 'Adds Multi-User Management - Edit all options for current users and manage permissions.', // Plugin Description
i18n_r('user-managment/PLUGIN_DESCRIPTION'),
'settings', // Page type of plugin
'mm_admin' // Function that displays content
);
// activate hooks //
//Add Sidebar Item In Settings Page
add_action('settings-sidebar', 'createSideMenu', array($thisfile, i18n_r('user-managment/SIDEBAR')));
//Make the multiuser_perm() function run before each admin page loads
add_action('header', 'mm_permissions');
add_action('settings-user', 'mm_gs_settings_pg');
class MultiUser
{
public function __construct()
{
$old_add_file = GSPLUGINPATH.'user-managment-add.php';
if(file_exists($old_add_file))
{
$success = unlink($old_add_file);
if($success)
{
print "<div class=\"updated\" style=\"display: block;\">$old_add_file Has Been Successfully Deleted.<br/>This file was deleted because it is no longer needed for this plugin.</div>";
}
else
{
print "<div class=\"updated\" style=\"display: block;\"><span style=\"color:red;font-weight:bold;\">ERROR!!</span> - Unable To Delete $old_add_file<br/>You could delete $old_add_file if you would like. <br/>It is no longer needed for this plugin.</div>";
}
}
}
public function mmUserFile($get_Data, $data_Type = "")
{
if(get_cookie('GS_ADMIN_USERNAME') != "")
{
$current_user = get_cookie('GS_ADMIN_USERNAME');
$dir = GSUSERSPATH . $current_user . ".xml";
$user_file = simplexml_load_file($dir) or die("Unable to load XML file!");
if($data_Type == "")
{
$return_user_data = $user_file->PERMISSIONS->$get_Data;
return $return_user_data;
}
elseif($data_Type != "")
{
$return_user_data = $user_file->$get_Data;
return $return_user_data;
}
}
}
public function mmProcessSettings()
{
if(get_cookie('GS_ADMIN_USERNAME') != "")
{
global $xml;
$perm = $xml->addChild('PERMISSIONS');
$perm->addChild('PAGES', $this->mmUserFile('PAGES'));
$perm->addChild('FILES', $this->mmUserFile('FILES'));
$perm->addChild('THEME', $this->mmUserFile('THEME'));
$perm->addChild('PLUGINS', $this->mmUserFile('PLUGINS'));
$perm->addChild('BACKUPS', $this->mmUserFile('BACKUPS'));
$perm->addChild('SETTINGS', $this->mmUserFile('SETTINGS'));
$perm->addChild('SUPPORT', $this->mmUserFile('SUPPORT'));
$perm->addChild('EDIT', $this->mmUserFile('EDIT'));
$perm->addChild('LANDING', $this->mmUserFile('LANDING'));
$perm->addChild('ADMIN', $this->mmUserFile('ADMIN'));
}
}
public function mmDeleteUser()
{
$deletename = $_GET['deletefile'];
$thedelete = GSUSERSPATH . $deletename . '.xml';
$success = unlink($thedelete);
if($success)
{
print "<div class=\"updated\" style=\"display: block;\">$deletename ". i18n_r('user-managment/DELETED') . "</div>";
}
else
{
print "<div class=\"updated\" style=\"display: block;\"><span style=\"color:red;font-weight:bold;\">" . i18n_r('user-managment/DELETEERROR') . "</span></div>";
}
$this->mmManageUsersForm();
}
public function mmProcessEditUser()
{
// check if new password was provided
if (isset($_POST['userpassword']))
{
$pwd1 = $_POST['userpassword'];
if ($pwd1 != '')
{
$NPASSWD = passhash($pwd1);
}
else
{
$NPASSWD = $_POST['nano'];
}
}
// GRAB DATA FROM FORM FORM
$NUSR = $_POST['usernamec'];
$usrfile = $_POST['usernamec'] . '.xml';
$NLANDING = $_POST['Landing'];
if($NLANDING == "pages.php")
{
$NLANDING == "";
}
if (isset($_POST['usernamec']))
{
// Edit user xml file - This coding was mostly taken from the 'settings.php' page..
$xml = new SimpleXMLElement('<item></item>');
$xml->addChild('USR', $NUSR);
$xml->addChild('PWD', $NPASSWD);
$xml->addChild('EMAIL', $_POST['useremail']);
$xml->addChild('HTMLEDITOR', $_POST['usereditor']);
$xml->addChild('TIMEZONE', $_POST['ntimezone']);
$xml->addChild('LANG', $_POST['userlng']);
$perm = $xml->addChild('PERMISSIONS');
$perm->addChild('PAGES', $_POST['Pages']);
$perm->addChild('FILES', $_POST['Files']);
$perm->addChild('THEME', $_POST['Theme']);
$perm->addChild('PLUGINS', $_POST['Plugins']);
$perm->addChild('BACKUPS', $_POST['Backups']);
$perm->addChild('SETTINGS', $_POST['Settings']);
$perm->addChild('SUPPORT', $_POST['Support']);
$perm->addChild('EDIT', $_POST['Edit']);
$perm->addChild('LANDING', $NLANDING);
$perm->addChild('ADMIN', $_POST['Admin']);
if (!XMLsave($xml, GSUSERSPATH . $usrfile))
{
$error = i18n_r('user-managment/SAVEERROR');
echo $error;
}
// Redirect after script is completed... I will make the script submit via ajax later
else
{
print '<div class="updated" style="display: block;">'.i18n_r('user-managment/SAVED').'</div>';
}
$this->mmManageUsersForm();
}
}
public function mmAddUser()
{
//Set User File, Username, And Password From Submission
$usrfile = strtolower($_POST['usernamec']);
$usrfile = $usrfile . '.xml';
$NUSR = strtolower($_POST['usernamec']);
$pwd1 = $_POST['userpassword'];
$NPASSWD = passhash($pwd1);
// create user xml file - This coding was mostly taken from the 'settings.php' page..
createBak($usrfile, GSUSERSPATH, GSBACKUSERSPATH);
if (file_exists(GSUSERSPATH . _id($NUSR).'.xml.reset')) { unlink(GSUSERSPATH . _id($NUSR).'.xml.reset'); }
$xml = new SimpleXMLElement('<item></item>');
$xml->addChild('USR', $NUSR);
$xml->addChild('PWD', $NPASSWD);
$xml->addChild('EMAIL', $_POST['useremail']);
$xml->addChild('HTMLEDITOR', $_POST['usereditor']);
$xml->addChild('TIMEZONE', $_POST['ntimezone']);
$xml->addChild('LANG', $_POST['userlng']);
$perm = $xml->addChild('PERMISSIONS');
$perm->addChild('PAGES', $_POST['Pages']);
$perm->addChild('FILES', $_POST['Files']);
$perm->addChild('THEME', $_POST['Theme']);
$perm->addChild('PLUGINS', $_POST['Plugins']);
$perm->addChild('BACKUPS', $_POST['Backups']);
$perm->addChild('SETTINGS', $_POST['Settings']);
$perm->addChild('SUPPORT', $_POST['Support']);
$perm->addChild('EDIT', $_POST['Edit']);
$perm->addChild('LANDING', $_POST['Landing']);
$perm->addChild('ADMIN', $_POST['Admin']);
if (! XMLsave($xml, GSUSERSPATH . $usrfile) ) {
$error = i18n_r('CHMOD_ERROR');
}
// Redirect after script is completed... I will make the script submit via ajax later
else
{
print '<div class="updated" style="display: block;">'.$NUSR.' '. i18n_r('user-managment/CREATED') . '</div>';
}
//Show Manage Form
$this->mmManageUsersForm();
}
public function mmManageUsersForm()
{
# get all available language files
$lang_handle = opendir(GSLANGPATH) or die("Unable to open ". GSLANGPATH);
while ($lfile = readdir($lang_handle)) {
if( is_file(GSLANGPATH . $lfile) && $lfile != "." && $lfile != ".." ) {
$lang_array[] = basename($lfile, ".php");
}
}
if (count($lang_array) != 0) {
sort($lang_array);
$count = '0'; $sel = ''; $langs = '';
foreach ($lang_array as $larray){
$langs .= '<option value="'.$larray.'" >'.$larray.'</option>';
$count++;
}
}
//Get Available Timezones
ob_start(); include ("../admin/inc/timezone_options.txt");$Timezone_Include = ob_get_contents();ob_end_clean();
//Styles For Form
?>
<style>
.text {
width:160px !important;
}
.user_tr_header {
border:0px;border-bottom:0px;border-bottom-width:0px;
}
.user_tr {
border:0px;border-bottom:0px;border-bottom-width:0px;background:#F7F7F7;
}
.user_tr td{
border:0px;border-bottom:0px;border-bottom-width:0px;background:#F7F7F7;
}
.user_sub_tr {
border:0px;border-bottom:0px !important; border-bottom-width:0px !important;border-top:0px;border-top-width:0px !important;display:none
}
.user_sub_tr h3{
font-size:14px; padding:0px;margin:0px;
}
.user_sub_tr td{
border:0px;border-bottom:0px !important;border-bottom-width:0px !important;padding-top:6px !important; border-top: 0px !important;
}
.hiduser {
display:none;
}
.user_sub_tr select{
width:160px;
}
.perm label {
clear:left
}
.perm_div {
width:70px;height:40px;float:left;margin-left:4px;
}
.leftsec {
width:180px;float:left;
}
.rightsec {
width:180px;
}
.perm_select {
width:220px;float:left;
}
.perm_div_2 {
width:auto;float:left;padding-top:6px;
}
.acurser {
cursor:pointer;text-decoration:underline;color:#D94136;position:absolute;margin-left:0px;
}
.hcurser {
cursor:pointer;text-decoration:underline;color:#D94136;
}
.edit-pointer {
cursor:pointer;
}
</style>
<!-- Below is the 'Table Headers' For The user data -->
<h3 class="floated"><?php i18n('user-managment/TITLE'); ?></h3>
<div class="edit-nav clearfix">
<p>
<a href="#" id="add-user"><?php i18n('user-managment/ADDUSER'); ?></a>
</p>
<p>
<a href="load.php?id=user-managment&download_id=133" ONCLICK="decision(<?php i18n('user-managment/UPDATESURE'); ?>)"><?php i18n('user-managment/UPDATE'); ?></a>
</p>
</div>
<table class="user_table">
<tr>
<th>Username:</th>
<th>Email:</th>
<th>HTML Editor:</th>
<th><?php i18n('user-managment/EDIT'); ?></th>
</tr>
<?php
// Open Users Directory And Put Filenames Into Array
$dir = "./../data/users/*.xml";
// Make Edit Form For Each User XML File Found
foreach (glob($dir) as $file) {
$xml = simplexml_load_file($file) or die("Unable to load XML file!");
// PERMISSIONS CHECKBOXES - Checks XML File To Find Existing Permissions Settings //
// Pages
if ($xml->PERMISSIONS->PAGES != "")
{
$pageschecked = "checked";
$pages_dropdown = "";
}
else
{
$pageschecked = "";
$pages_dropdown = "<option value=\"pages.php\">Pages</option>";
}
//Files - uploads.php
if ($xml->PERMISSIONS->FILES != "")
{
$fileschecked = "checked";
}
else {$fileschecked = "";}
//Theme
if ($xml->PERMISSIONS->THEME != "")
{
$themechecked = "checked";
}
else {$themechecked = "";}
//Plugins
if ($xml->PERMISSIONS->PLUGINS != "")
{
$pluginschecked = "checked";
}
else {$pluginschecked = "";}
//Backuops
if ($xml->PERMISSIONS->BACKUPS != "")
{
$backupschecked = "checked";
}
else {$backupschecked = "";}
//Settings
if ($xml->PERMISSIONS->SETTINGS != "")
{
$settingschecked = "checked";
}
else {$settingschecked = "";}
//Support
if ($xml->PERMISSIONS->SUPPORT != "")
{
$supportchecked = "checked";
}
else {$supportchecked = "";}
//Admin
if ($xml->PERMISSIONS->ADMIN != "")
{
$adminchecked = "checked";
}
else {$adminchecked = "";}
//Landing Page
if ($xml->PERMISSIONS->LANDING != "pages.php")
{
$landingselected = $xml->PERMISSIONS->LANDING;
}
else {$landingselected = "pages.php";}
//Edit
if ($xml->PERMISSIONS->EDIT != "")
{
$editchecked = "checked";
}
else {$editchecked = "";}
//Html Editor
if ($xml->HTMLEDITOR == "")
{
$htmledit = "No";
}
else
{
$htmledit = "Yes";
}
if ($htmledit == "No")
{
$cchecked = "";
}
elseif ($htmledit == "Yes")
{
$cchecked = "checked";
}
//Below is the User Data
?>
<script language="javascript">
function decision(message, url){
if(confirm(message)) location.href = url;
}
</script>
<tr class="user_tr">
<td>
<?php echo $xml->USR; ?>
</td>
<td>
<?php echo $xml->EMAIL; ?>
</td>
<td>
<?php echo $htmledit; ?>
</td>
<!-- Edit Button (Expanded By Jquery Script) -->
<td>
<a style="" class="edit-pointer edit-user<?php echo $xml->USR; ?> acurser"><?php i18n('user-managment/EDIT'); ?></a><a style="" class="hide-user<?php echo $xml->USR; ?> acurser hiduser"><?php i18n('user-managment/HIDE'); ?></a>
</td>
</tr>
<!-- Begin 'Edit User' Form -->
<form method="post" action="load.php?id=user-managment">
<!-- Edit Username -->
<tr class="hide-div<?php echo $xml->USR; ?> user_sub_tr" style="">
<td style=""></td>
<!-- Edit Email -->
<td style="">
<input class="text" id="useremail" name="useremail" type="text" value="<?php echo $xml->EMAIL; ?>" />
</td>
<!-- HTML Editor Permissions -->
<td style="">
<input name="usereditor" id="usereditor" type="checkbox" <?php echo $cchecked; ?> />
</td>
<!-- Change Password -->
</tr>
<tr class="hide-div<?php echo $xml->USR; ?> user_sub_tr" style="">
<td style="">
<label for="userpassword">Password:</label>
<input autocomplete="off" class="text" id="userpassword" name="userpassword" type="password" value="" />
</td>
<!-- Change Language -->
<td>
<label for="userlng">Language:</label>
<select name="userlng" id="userlng" class="text">
<option value="<?php echo $xml->LANG; ?>"selected="selected"><?php echo $xml->LANG; ?></option>
<?php echo $langs; ?>
</select>
</td>
<!-- Change Timezone -->
<td>
<label for="ntimezone">Timezone:</label>
<select class="text" id="ntimezone" name="ntimezone">
<option value="<?php echo $xml->TIMEZONE; ?>" selected="selected"><?php echo $xml->TIMEZONE; ?></option>
<?php echo $Timezone_Include; ?>
</select>
</td>
</tr>
<!-- Permissions Checkboxes -->
<tr class="hide-div<?php echo $xml->USR; ?> user_sub_tr perm" style="">
<td colspan="4" height="16">
<h3 style=""><?php i18n('user-managment/PERM') ?></h3>
</td>
</tr>
<tr class="hide-div<?php echo $xml->USR; ?> user_sub_tr" style="">
<td colspan="4">
<div class="perm_div"><label><?php i18n('user-managment/PAGES'); ?></label>
<input type="checkbox" name="Pages" value="no" <?php echo $pageschecked; ?> />
</div>
<div class="perm_div"><label><?php i18n('user-managment/FILES'); ?></label>
<input type="checkbox" name="Files" value="no" <?php echo $fileschecked; ?> />
</div>
<div class="perm_div"><label><?php i18n('user-managment/THEME'); ?></label>
<input type="checkbox" name="Theme" value="no" <?php echo $themechecked; ?> />
</div>
<div class="perm_div"><label><?php i18n('user-managment/PLUGINS'); ?></label>
<input type="checkbox" name="Plugins" value="no" <?php echo $pluginschecked; ?> />
</div>
<div class="perm_div"><label><?php i18n('user-managment/BACKUPS'); ?></label>
<input type="checkbox" name="Backups" value="no" <?php echo $backupschecked; ?> />
</div>
<div class="perm_div"><label><?php i18n('user-managment/SETTINGS'); ?></label>
<input type="checkbox" name="Settings" value="no" <?php echo $settingschecked; ?> />
</div>
<div class="perm_div"><label><?php i18n('user-managment/SUPPORT'); ?></label>
<input type="checkbox" name="Support" value="no" <?php echo $supportchecked; ?> />
</div>
<div class="perm_div"><label><?php i18n('user-managment/EDIT'); ?></label>
<input type="checkbox" name="Edit" value="no" <?php echo $editchecked; ?> />
</div>
<div class="perm_select"><label><?php i18n('user-managment/LAND'); ?>
<a class="hcurser" title="This is where you can set an alternate landing page the user will arrive at upon logging in">?</a></label>
<select name="Landing" id="userland" class="text">
<option value="$landingselected" selected="selected"><?php echo $landingselected; ?></option>
<?php echo $pages_dropdown; ?>
<option value="theme.php">Theme</option>
<option value="settings.php">Settings</option>
<option value="support.php">Support</option>
<option value="edit.php">Edit</option>
<option value="plugins.php">Plugins</option>
<option value="upload.php">Upload</option>
<option value="backups.php">Backups</option>
</select>
</div>
<div class="perm_div_2">
<label><?php i18n('user-managment/ADMIN'); ?></label>
<input type="checkbox" id="Admin" name="Admin" value="no" <?php echo $adminchecked; ?> />
</div>
<div class="clear"></div>
</td>
</tr>
<!-- Submit Form -->
<tr class="hide-div<?php echo $xml->USR; ?> user_sub_tr perm" style="">
<td>
<input class="submit" type="submit" name="edit-user" value="<?php i18n('user-managment/SAVE'); ?>"/>
<a class="hcurser" ONCLICK="decision('<?php echo i18n_r('user-managment/DELETESURE'). ' '. $xml->USR . '?'; ?>','load.php?id=user-managment&deletefile=<?php echo $xml->USR; ?>')"><?php i18n('user-managment/DELETE'); ?></a>
</td>
</tr>
</div>
<input type="hidden" name="nano" value="<?php echo $xml->PWD; ?>"/><input type="hidden" name="usernamec" value="<?php echo $xml->USR; ?>"/>
</form>
<?php
}
echo "</table>";
echo '<script type="text/javascript">';
//For Each User XML Filed, Print jQuery To Show/Hide The 'Edit User' And 'Add User' Sections
foreach (glob($dir) as $file) {
$xml = simplexml_load_file($file) or die("Unable to load XML file!");
?>
$(".edit-user<?php echo $xml->USR; ?>").click(function () {
$(".edit-user<?php echo $xml->USR; ?>").slideUp();
$(".hide-user<?php echo $xml->USR; ?>").slideDown();
$(".hide-div<?php echo $xml->USR; ?>").css('display','table-row');
});
$(".hide-user<?php echo $xml->USR; ?>").click(function () {
$(".edit-user<?php echo $xml->USR; ?>").slideDown();
$(".hide-user<?php echo $xml->USR; ?>").slideUp();
$(".hide-div<?php echo $xml->USR; ?>").css('display','none');
});
$("hideagain").click(function () {
$(".edit-user<?php echo $xml->USR; ?>").slideUp();
$(".hide-div<?php echo $xml->USR; ?>").css('display','none');
});
$("#add-user").click(function () {
$("#add-user").slideUp();
$(".hide-div").slideDown();
});
<?php
}
echo "</script>";
// ADD USER FORM //
?>
<!-- Below is the html form to add a new user.. It is proccesed with 'readxml.php' -->
<div id="profile" class="hide-div section" style="display:none;margin-top:0px;">
<form method="post" action="load.php?id=user-managment">
<h3><?php i18n('user-managment/ADDUSER'); ?></h3>
<div class="leftsec">
<p><label for="usernamec" >Username:</label><input class="text" id="usernamec" name="usernamec" type="text" value="" /></p>
</div>
<div class="rightsec">
<p><label for="useremail" >Email :</label><input class="text" id="useremail" name="useremail" type="text" value="" /></p>
</div>
<div class="leftsec">
<p><label for="ntimezone" >Timezone:</label>
<select class="text" id="ntimezone" name="ntimezone">
<option value="<?php echo $this->mmUserFile('TIMEZONE', true); ?>" selected="selected"><?php echo $xml->TIMEZONE; ?></option>
<?php echo $Timezone_Include; ?>
</select>
</select>
</p>
</div>
<div class="rightsec">
<p><label for="userlng" >Language:</label>
<select name="userlng" id="userlng" class="text">
<option value="en_US"selected="selected">English (en_US)</option>
<?php echo $langs ?>
</select>
</p>
</div>
<div class="leftsec">
<p><label for="userpassword" >Password:</label><input autocomplete="off" class="text" id="userpassword" name="userpassword" type="password" value="" /></p>
</div>
<div class="leftsec">
<p class="inline" style="padding-top:24px;"><input name="usereditor" id="usereditor" type="checkbox" value="1" checked="checked" /> <label for="usereditor" >Enable the HTML editor</label></p>
</div>
<div class="clear"></div>
<h3 style="font-size:14px;"><?php i18n('user-managment/PERM'); ?></h3>
<div class="perm_div"><label for="Pages"><?php i18n('user-managment/PAGES'); ?></label>
<input type="checkbox" id="Pages" name="Pages" value="no" />
</div>
<div class="perm_div"><label for="Files"><?php i18n('user-managment/FILES'); ?></label>
<input type="checkbox" id="Files" name="Files" value="no" />
</div>
<div class="perm_div"><label for="Theme"><?php i18n('user-managment/THEME'); ?></label>
<input type="checkbox" id="Theme" name="Theme" value="no" />
</div>
<div class="perm_div"><label for="Plugins"><?php i18n('user-managment/PLUGINS'); ?></label>
<input type="checkbox" id="Plugins" name="Plugins" value="no" />
</div>
<div class="perm_div"><label for="Backups"><?php i18n('user-managment/BACKUPS'); ?></label>
<input type="checkbox" id="Backups" name="Backups" value="no" />
</div>
<div class="perm_div"><label for="Settings"><?php i18n('user-managment/SETTINGS'); ?></label>
<input type="checkbox" id="Settings" name="Settings" value="no" />
</div>
<div class="perm_div"><label for="Support"><?php i18n('user-managment/SUPPORT'); ?></label>
<input type="checkbox" id="Support" name="Support" value="no" />
</div>
<div class="perm_div"><label for="Edit"><?php i18n('user-managment/EDIT'); ?></label>
<input type="checkbox" id="Edit" name="Edit" value="no" />
</div>
<div style="clear:both"></div>
<div class="perm_select"><label for="userland"><?php i18n('user-managment/LAND'); ?>
<a href="#" title="This is where you can set an alternate landing page the user will arrive at upon logging in">?</a></label>
<select name="Landing" id="userland" class="text">
<option value="" selected="selected"></option>
<option value="pages.php">Pages</option>
<option value="theme.php">Theme</option>
<option value="settings.php">Settings</option>
<option value="support.php">Support</option>
<option value="edit.php">Edit</option>
<option value="plugins.php">Plugins</option>
<option value="upload.php">Upload</option>
<option value="backups.php">Backups</option>
</select>
</div>
<div class="perm_div_2"><label for="Admin"><?php i18n('user-managment/ADMIN'); ?></label>
<input type="checkbox" id="Admin" name="Admin" value="no" />
</div>
<div class="clear"></div>
<div class="rightsec">
<p></p>
</div>
<div class="clear"></div>
<p id="submit_line" >
<span><input class="submit" type="submit" name="add-user" value="<?php i18n('user-managment/ADDUSER'); ?>" /></span>
<?php i18n('OR'); ?> <a class="cancel" href="settings.php?cancel"><?php i18n('CANCEL'); ?></a>
</p></form>
</div>
<?php
}
public function mmCheckPermissions()
{
//echo $this->mmUserFile('SETTINGS'); //only for debug purposes
//Find Current script and trim path
$current_file = $_SERVER["PHP_SELF"];
$current_file = basename(rtrim($current_file, '/'));
$current_script = $_SERVER["QUERY_STRING"];
//Settings.php permissions
if ($current_file == "settings.php") {
if ($this->mmUserFile('SETTINGS') == "no") {
die('You Do Not Have Permissions To Access This Page');
}
else {
$settings_menu ="";
}
}
if ($this->mmUserFile('SETTINGS') == "no") {
$settings_menu = ".settings {display:none !important;}";
$settings_footer = "$(\"a\").remove(\":contains('General Settings')\");";
}
else {
$settings_menu ="";
$settings_footer = "";
}
//backups.php permisions
if ($current_file == "backups.php") {
if ($this->mmUserFile('BACKUPS') == "no") {
die('You Do Not Have Permissions To Access This Page');
}
else {
$backups_menu ="";
}
}
if ($this->mmUserFile('BACKUPS') == "no") {
$backups_menu = ".backups {display:none !important;}";
$backups_footer = "$(\"a\").remove(\":contains('Backup Management')\");";
}
else {
$backups_menu ="";
$backups_footer = "";
}
//plugins.php permissions
if ($current_file == "plugins.php") {
if ($this->mmUserFile('PLUGINS') == "no") {
die('You Do Not Have Permissions To Access This Page');
}
else {
$plugins_menu ="";
}
}
if ($this->mmUserFile('PLUGINS') == "no") {
$plugins_menu = ".plugins {display:none !important;}";
$plugins_footer = "$(\"a\").remove(\":contains('Plugin Management')\");";
}
else {
$plugins_menu ="";
$plugins_footer = "";
}
//pages.php permissions - If pages is disabled, this coding will kill the pages script and redirect to the chosen alternate landing page
if ($current_file == "pages.php") {
if ($this->mmUserFile('PAGES') == "no") {
die('<meta http-equiv="refresh" content="0;url='.$this->mmUserFile('LANDING').'">');
}
else {
$pages_menu ="";
}
}
if ($this->mmUserFile('PAGES') == "no") {
$pages_menu = ".pages {display:none !important;}";
$pages_footer = "$(\"a\").remove(\":contains('Page Management')\");";
}
else {
$pages_menu ="";
$pages_footer = "";
}
//support.php & health-check.php permissions
if ($current_file == "support.php") {
if ($this->mmUserFile('SUPPORT') == "no") {
die('You Do Not Have Permissions To Access This Page');
}
else {
$support_menu = "";
}
}
if ($this->mmUserFile('SUPPORT') == "no") {
$support_menu = ".support {display:none !important;}";
$support_footer = "$(\"a\").remove(\":contains('Support')\");";
}
else {
$support_menu = "";
$support_footer = "";
}
//uploads.php (files page) permissions
if ($current_file == "upload.php") {
if ($this->mmUserFile('FILES') == "no") {
die('You Do Not Have Permissions To Access This Page');
}
else {
$files_menu = "";
$files_footer = "";
}
}
if ($this->mmUserFile('FILES') == "no") {
$files_menu = ".files {display:none !important;}";
$files_footer = "$(\"a\").remove(\":contains('File Management')\");";
}
else {
$files_menu = "";
$files_footer = "";
}
//theme.php permissions
if ($current_file == "theme.php") {
if ($this->mmUserFile('THEME') == "no") {
die('You Do Not Have Permissions To Access This Page');
}
else {
$theme_menu = "";
}
}
if ($this->mmUserFile('THEME') == "no") {
$theme_menu = ".theme {display:none !important;}";
$theme_footer = "$(\"a\").remove(\":contains('Theme Management')\");";
}
else {
$theme_menu = "";
$theme_footer = "";
}
//archive.php
if ($current_file == "archive.php") {
if ($this->mmUserFile('BACKUPS') == "no") {
die('You Do Not Have Permissions To Access This Page');
}
else {
}
}
//theme-edit.php permissions
if ($current_file == "theme-edit.php") {
if ($this->mmUserFile('THEME') == "no") {
die('You Do Not Have Permissions To Access This Page');
}
else {
}
}
//components.php permissions
if ($current_file == "components.php") {
if ($this->mmUserFile('THEME') == "no") {
die('You Do Not Have Permissions To Access This Page');
}
else {
}
}
//edit.php
if ($current_file == "edit.php") {
if ($this->mmUserFile('EDIT') == "no") {
die('You Do Not Have Permissions To Access This Page');
}
else {
$edit_menu = "";
}
}
if ($this->mmUserFile('EDIT') == "no") {
$edit_footer = "$(\"a\").remove(\":contains('reate New Page')\");";
}
else {
$edit_menu = "";
$edit_footer ="";
}
//Admin - Do not allow permissions to edit users
if ($current_script == "id=user-managment") {
if ($this->mmUserFile('ADMIN') == "no") {
die('You Do Not Have Permissions To Access This Page');
}
}
if ($this->mmUserFile('ADMIN') == "no") {
$admin_footer = "$(\"a\").remove(\":contains('User Management')\");";
}
else {
$admin_footer ="";
}
//Hide Menu Items
echo"<style type=\"text/css\">";
echo $settings_menu . $backups_menu . $plugins_menu . $pages_menu . $support_menu . $files_menu . $theme_menu;
echo "</style>";
//Hide Footer Menu Items With Jquery
echo "<script type=\"text/javascript\">";
echo "\n";
echo "$(document).ready(function() {";
echo "\n";
echo $files_footer . $settings_footer . "\n" . $backups_footer . "\n" . $plugins_footer . "\n" . $pages_footer . "\n" . $support_footer . "\n" . $theme_footer . "\n" . $edit_footer . "\n" . $admin_footer;
echo "\n";
echo " });";
echo "</script>";
}
public function DownloadPlugin($id)
{
$pluginurl = $this->DownloadPlugins($id, 'file');
$pluginfile = $this->DownloadPlugins($id, 'filename_id');
$data = file_get_contents($pluginurl);
$fp = fopen($pluginfile, "wb");
fwrite($fp, $data);
fclose($fp);
function unzip($src_file, $dest_dir=false, $create_zip_name_dir=true, $overwrite=true)
{
if ($zip = zip_open($src_file))
{
if ($zip)
{
$splitter = ($create_zip_name_dir === true) ? "." : "/";
if ($dest_dir === false) $dest_dir = substr($src_file, 0, strrpos($src_file, $splitter))."/";
// Create the directories to the destination dir if they don't already exist
create_dirs($dest_dir);
// For every file in the zip-packet
while ($zip_entry = zip_read($zip))
{
// Now we're going to create the directories in the destination directories
// If the file is not in the root dir
$pos_last_slash = strrpos(zip_entry_name($zip_entry), "/");
if ($pos_last_slash !== false)
{
// Create the directory where the zip-entry should be saved (with a "/" at the end)
create_dirs($dest_dir.substr(zip_entry_name($zip_entry), 0, $pos_last_slash+1));
}
// Open the entry
if (zip_entry_open($zip,$zip_entry,"r"))
{
// The name of the file to save on the disk
$file_name = $dest_dir.zip_entry_name($zip_entry);
// Check if the files should be overwritten or not
if ($overwrite === true || $overwrite === false && !is_file($file_name))
{
// Get the content of the zip entry
$fstream = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
file_put_contents($file_name, $fstream );
// Set the rights
chmod($file_name, 0755);
}
// Close the entry
zip_entry_close($zip_entry);
}
}
// Close the zip-file
zip_close($zip);
}
}
else
{
return false;
}
return true;
}
/**
* This function creates recursive directories if it doesn't already exist
*
* @param String The path that should be created
*
* @return void