MenuClass.php
9.08 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
<?php
define('EmpireCMSAdmin','1');
require("../../class/connect.php");
require("../../class/db_sql.php");
require("../../class/functions.php");
$link=db_connect();
$empire=new mysqlquery();
$editor=1;
//驗證用戶
$lur=is_login();
$logininid=$lur['userid'];
$loginin=$lur['username'];
$loginrnd=$lur['rnd'];
$loginlevel=$lur['groupid'];
$loginadminstyleid=$lur['adminstyleid'];
//ehash
$ecms_hashur=hReturnEcmsHashStrAll();
//驗證權限
CheckLevel($logininid,$loginin,$classid,"menu");
//顯示導航
function MenuClassToShow(){
global $empire,$dbtbpre;
//常用菜單
$showfastmenu=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsmenuclass where classtype=1 limit 1");
if($showfastmenu)
{
echo"<script>if(parent.document.getElementById('dofastmenu')==null||parent.document.getElementById('dofastmenu')=='undefined'){}else{parent.document.getElementById('dofastmenu').style.display='';}</script>";
}
$showextmenu=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsmenuclass where classtype=3 limit 1");
if($showextmenu)
{
echo"<script>if(parent.document.getElementById('doextmenu')==null||parent.document.getElementById('doextmenu')=='undefined'){}else{parent.document.getElementById('doextmenu').style.display='';}</script>";
}
}
//增加菜單分類
function AddMenuClass($add,$userid,$username){
global $empire,$dbtbpre;
$classtype=(int)$add['classtype'];
if(!$add[classname])
{
printerror("EmptyMenuClass","history.go(-1)");
}
//驗證權限
CheckLevel($userid,$username,$classid,"menu");
$myorder=(int)$add['myorder'];
$add['classname']=hRepPostStr($add['classname'],1);
$sql=$empire->query("insert into {$dbtbpre}enewsmenuclass(classname,myorder,classtype) values('".$add[classname]."','$myorder','$classtype');");
$lastid=$empire->lastid();
if($sql)
{
MenuClassToShow();
//操作日誌
insert_dolog("classid=".$lastid."<br>classname=".$add[classname]);
printerror("AddMenuClassSuccess","MenuClass.php".hReturnEcmsHashStrHref2(1));
}
else
{printerror("DbError","history.go(-1)");}
}
//修改菜單分類
function EditMenuClass($add,$userid,$username){
global $empire,$dbtbpre;
$classid=$add['classid'];
$delclassid=$add['delclassid'];
$classname=$add['classname'];
$myorder=$add['myorder'];
$classtype=$add['classtype'];
$count=count($classid);
if(!$count)
{
printerror("EmptyMenuClass","history.go(-1)");
}
//驗證權限
CheckLevel($userid,$username,$classid,"menu");
//刪除
$del=0;
$ids='';
$delcount=count($delclassid);
if($delcount)
{
$dh='';
for($j=0;$j<$delcount;$j++)
{
$ids.=$dh.intval($delclassid[$j]);
$dh=',';
}
$empire->query("delete from {$dbtbpre}enewsmenuclass where classid in (".$ids.")");
$empire->query("delete from {$dbtbpre}enewsmenu where classid in (".$ids.")");
$del=1;
}
//修改
for($i=0;$i<$count;$i++)
{
$classid[$i]=(int)$classid[$i];
if(strstr(','.$ids.',',','.$classid[$i].','))
{
continue;
}
$myorder[$i]=(int)$myorder[$i];
$classtype[$i]=(int)$classtype[$i];
$classname[$i]=hRepPostStr($classname[$i],1);
$empire->query("update {$dbtbpre}enewsmenuclass set classname='".$classname[$i]."',myorder='".$myorder[$i]."',classtype='".$classtype[$i]."' where classid='".$classid[$i]."'");
}
MenuClassToShow();
//操作日誌
insert_dolog("del=$del");
printerror("EditMenuClassSuccess","MenuClass.php".hReturnEcmsHashStrHref2(1));
}
//修改菜單分類用戶權限
function EditMenuClassGroup($add,$userid,$username){
global $empire,$dbtbpre;
$classid=(int)$add['classid'];
if(!$classid)
{
printerror("EmptyMenuClass","history.go(-1)");
}
//驗證權限
CheckLevel($userid,$username,$classid,"menu");
$cr=$empire->fetch1("select classid,classname from {$dbtbpre}enewsmenuclass where classid='$classid'");
if(!$cr['classid'])
{
printerror("EmptyMenuClass","history.go(-1)");
}
$groupid=$add['groupid'];
$groupids='';
$count=count($groupid);
if($count)
{
for($i=0;$i<$count;$i++)
{
$gid=(int)$groupid[$i];
if(!$gid)
{
continue;
}
$groupids.=','.$gid;
}
if($groupids)
{
$groupids.=',';
}
}
$sql=$empire->query("update {$dbtbpre}enewsmenuclass set groupids='$groupids' where classid='$classid';");
if($sql)
{
MenuClassToShow();
//操作日誌
insert_dolog("classid=".$classid."<br>classname=".$cr[classname]);
printerror("EditMenuClassSuccess","ListMenu.php?classid=$classid".hReturnEcmsHashStrHref2(0));
}
else
{printerror("DbError","history.go(-1)");}
}
$enews=$_POST['enews'];
if(empty($enews))
{$enews=$_GET['enews'];}
if($enews)
{
hCheckEcmsRHash();
}
if($enews=="AddMenuClass")//增加菜單分類
{
AddMenuClass($_POST,$logininid,$loginin);
}
elseif($enews=="EditMenuClass")//修改菜單分類
{
EditMenuClass($_POST,$logininid,$loginin);
}
elseif($enews=="EditMenuClassGroup")//修改菜單分類用戶權限
{
EditMenuClassGroup($_POST,$logininid,$loginin);
}
else
{}
$sql=$empire->query("select classid,classname,issys,myorder,classtype from {$dbtbpre}enewsmenuclass order by myorder,classid");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>管理菜單</title>
<link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
<script>
function CheckAll(form)
{
for (var i=0;i<form.elements.length;i++)
{
var e = form.elements[i];
if (e.name != 'chkall')
e.checked = form.chkall.checked;
}
}
</script>
</head>
<body>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td width="38%">
<p>位置:<a href="MenuClass.php<?=$ecms_hashur['whehref']?>">管理菜單</a></p></td>
<td><div align="right"> </div></td>
</tr>
</table>
<br>
<table width="100%" border="0" cellpadding="3" cellspacing="1" class="tableborder">
<form name="form2" method="post" action="MenuClass.php" onsubmit="return confirm('確認要提交?');">
<?=$ecms_hashur['form']?>
<tr class="header">
<td width="6%"><div align="center">刪除</div></td>
<td width="8%">顯示順序</td>
<td width="40%" height="25">分類名稱</td>
<td width="14%">菜單類型</td>
<td width="32%" height="25"><div align="center">管理菜單</div></td>
</tr>
<?php
while($r=$empire->fetch($sql))
{
if($r['issys'])
{
$checkbox='';
}
else
{
$checkbox='<input name="delclassid[]" type="checkbox" id="delclassid[]" value="'.$r[classid].'">';
}
?>
<tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#DBEAF5'">
<td><div align="center">
<?=$checkbox?>
</div></td>
<td> <input name="myorder[]" type="text" id="myorder[]" value="<?=$r[myorder]?>" size="4">
</td>
<td height="25"> <input name="classname[]" type="text" id="classname[]" value="<?=$r[classname]?>">
<input name="classid[]" type="hidden" id="classid[]" value="<?=$r[classid]?>">
</td>
<td><select name="classtype[]" id="classtype[]">
<option value="1"<?=$r[classtype]==1?' selected':''?>>常用操作</option>
<option value="2"<?=$r[classtype]==2?' selected':''?>>插件菜單</option>
<option value="3"<?=$r[classtype]==3?' selected':''?>>擴展菜單</option>
</select></td>
<td height="25"><div align="center">[<a href="ListMenu.php?classid=<?=$r[classid]?><?=$ecms_hashur['ehref']?>">管理菜單</a>]</div></td>
</tr>
<?php
}
?>
<tr bgcolor="#FFFFFF">
<td><div align="center">
<input type=checkbox name=chkall value=on onclick=CheckAll(this.form)>
</div></td>
<td height="25" colspan="4"><input type="submit" name="Submit2" value="提交">
<input name="enews" type="hidden" id="enews" value="EditMenuClass">
<font color="#666666">(說明:順序值越小顯示越前面) </font></td>
</tr>
</form>
</table>
<br>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<form name="form1" method="post" action="MenuClass.php">
<?=$ecms_hashur['form']?>
<tr class="header">
<td height="25">增加菜單分類:
<input name=enews type=hidden id="enews" value=AddMenuClass>
</td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> 分類名稱:
<input name="classname" type="text" id="classname">
類型:
<select name="classtype" id="classtype">
<option value="1">常用操作</option>
<option value="2">插件菜單</option>
<option value="3" selected>擴展菜單</option>
</select>
顯示順序:
<input name="myorder" type="text" id="myorder" value="0" size="4">
<input type="submit" name="Submit" value="增加">
</td>
</tr>
</form>
</table>
</body>
</html>
<?php
db_close();
$empire=null;
?>