pageleft.php
4.21 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
<?php
define('EmpireCMSAdmin','1');
require("../../class/connect.php");
require("../../class/db_sql.php");
require("../../class/functions.php");
require("../../data/dbcache/class.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();
$ztid=(int)$_GET['ztid'];
if(empty($class_zr[$ztid][zturl]))
{$zturl=$public_r[newsurl].$class_zr[$ztid][ztpath]."/";}
else
{$zturl=$class_zr[$ztid][zturl];}
?>
<!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 lanuage="JScript">
function DisplayImg(ss,imgname,phome)
{
if(imgname=="ztimg")
{
img=todisplay(dozt,phome);
document.images.ztimg.src=img;
}
else
{
}
}
function todisplay(ss,phome)
{
if(ss.style.display=="")
{
ss.style.display="none";
theimg="../openpage/images/add.gif";
}
else
{
ss.style.display="";
theimg="../openpage/images/noadd.gif";
}
return theimg;
}
function turnit(ss,img)
{
DisplayImg(ss,img,0);
}
</SCRIPT>
</head>
<body topmargin="0">
<br>
<table width="100%" border="0" align="center" cellpadding="4" cellspacing="1" class="tableborder" id="doztid">
<tr>
<td height="25" class="header"><img src="../openpage/images/noadd.gif" name="ztimg" width="20" height="9" border="0"><a href="#ecms" onMouseUp=turnit(dozt,"ztimg"); style="CURSOR: hand">當前專題管理</a></td>
</tr>
<tbody id="dozt">
<tr>
<td height="25" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#EFEFEF'" onMouseOut="this.style.backgroundColor='#FFFFFF'"> <a href="AddZt.php?enews=EditZt&ztid=<?=$ztid?>&from=1<?=$ecms_hashur['ehref']?>" target="apmain">修改專題</a></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#EFEFEF'" onMouseOut="this.style.backgroundColor='#FFFFFF'"> <a href="ZtType.php?ztid=<?=$ztid?><?=$ecms_hashur['ehref']?>" target="apmain">管理專題子類</a></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#EFEFEF'" onMouseOut="this.style.backgroundColor='#FFFFFF'"> <a href="ListZtInfo.php?ztid=<?=$ztid?><?=$ecms_hashur['ehref']?>" target="apmain">管理信息</a></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#EFEFEF'" onMouseOut="this.style.backgroundColor='#FFFFFF'"> <a href="../pl/ListZtPl.php?ztid=<?=$ztid?><?=$ecms_hashur['ehref']?>" target="apmain">管理評論</a></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#EFEFEF'" onMouseOut="this.style.backgroundColor='#FFFFFF'"> <a href="TogZt.php?ztid=<?=$ztid?><?=$ecms_hashur['ehref']?>" target="apmain">組合專題</a></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#EFEFEF'" onMouseOut="this.style.backgroundColor='#FFFFFF'"> <a href="SpecialPathfile.php?ztid=<?=$ztid?><?=$ecms_hashur['ehref']?>" target="apmain">管理專題附件</a></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#EFEFEF'" onMouseOut="this.style.backgroundColor='#FFFFFF'"> <a href="../ecmschtml.php?enews=ReZtHtml&ztid=<?=$ztid?>&ecms=1<?=$ecms_hashur['href']?>" target="apmain">刷新專題頁面</a></td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#EFEFEF'" onMouseOut="this.style.backgroundColor='#FFFFFF'"> <a href="<?=$zturl?>" target="_blank">預覽專題</a></td>
</tr>
</tbody>
</table>
<br>
</body>
</html>
<?php
db_close();
$empire=null;
?>