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
|
<?php require_once( realpath(dirname(__FILE__)) . '/../common/config.php'); require_once( realpath(dirname(__FILE__)) . '/function_is_login.php'); if (!is_login()) { header("Location: index.php"); exit; }
// Get users $conditions = array(); switch ($_SESSION['webadmin']['role']) { case 'superadmin': break; case 'admin': $conditions[] = 'role <> ?'; $conditions[] = 'superadmin'; break; case 'user': default: $conditions[] = 'id = ?'; $conditions[] = (int)$_SESSION['webadmin']['id']; break; } $users = SysCmsUser::all(array( 'conditions' => $conditions, 'order' => 'user_name ASC, id DESC', )); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <title>Content Management System (CMS) - Powered by One Solution Limited</title> <link rel="stylesheet" type="text/css" href="css/style.css" /> <script type="text/javascript" src="js/jquery-1.8.2.min.js"></script> <?php // Main Menu ?> <link rel="stylesheet" type="text/css" href="css/menu.css" /> <script type="text/javascript" src="js/ddaccordion.js"></script> <script type="text/javascript" src="js/menuddaccordion.js"></script> <?php // End Main Menu ?> <script type="text/javascript" src="js/jquery.blockUI.js"></script> <script type="text/javascript" src="js/webadmin_common.js"></script> </head>
<body> <table width="1000" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="200" align="left" valign="top"><table width="200" border="0" cellpadding="0" cellspacing="0"> <tr> <td height="70" align="left" valign="middle"> </td> </tr> <tr> <td width="200" align="left" valign="top"><!-- Main Menu --> <?php require( realpath(dirname(__FILE__)) . '/menu.php');?> <!-- End Main Menu --></td> </tr> </table></td> <td width="800" align="left" valign="top"><table width="800" border="0" cellpadding="0" cellspacing="0"> <tr> <td><table width="800" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="70" class="pagetitletxt"> </td> <td width="50" align="center" class="icontxt"><?php if (in_array($_SESSION['webadmin']['role'], array('superadmin', 'admin'))) { ?> <a href="cms_user_form.php"><img src="images/iconNew.png" alt="Add" width="32" height="32" border="0" /><br /> Add </a> <?php } ?></td> </tr> </table></td> </tr> <tr> <td class="pagetitletxt"> <b><img alt="" src="images/iconList.jpg" width="48" height="48" style="vertical-align:middle;" /> CMS User Management </b></td> </tr> <tr> <td height="25" align="left" valign="middle" class="msg"><?php echo $_GET['msg']; ?></td> </tr> <tr> <td align="left" valign="middle"><table width="800" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="10" class="listtitletxt"></td> <td width="150" class="listtitletxt">User name</td> <td width="150" class="listtitletxt">Login name</td> <td width="400" class="listtitletxt">Role</td> <td width="50" class="listtitletxt">Status</td> <td width="20" class="listtitletxt"></td> <td width="20" class="listtitletxt"></td> </tr> <?php foreach ($users as $user) { ?> <tr> <td class="listtxt" style="padding-left:5"> </td> <td class="listtxt" style="padding-left:5"><?=$user->user_name?></td> <td class="listtxt" style="padding-left:5"><?=$user->login_name?></td> <td class="listtxt" style="padding-left:5"><?=$user->role?></td> <td class="listtxt" align="center"> <?php // Status ?> <a href="cms_user_status.php?id=<?=$user->id?>"> <img src="images/<?=$user->actived == '1' ? 'tick' : 'cross'?>.png" title="Status" alt="Status" border="0" hspace="2" /></a> </td> <?php // Modify ?> <td class="listtxt" align="right"><a href="#" onclick="window.location='cms_user_form.php?id=<?=$user->id?>'"><img src="images/btnModify.png" title="Modify" alt="Modify" hspace="2" border="0" /></a></td> <td class="listtxt" style="padding-left:5"> </td> </tr> <?php } ?> </table></td> </tr> </table></td> </tr> </table> </body> </html>
|