pageleft.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require("../../data/dbcache/class.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  9. $editor=1;
  10. //验证用户
  11. $lur=is_login();
  12. $logininid=$lur['userid'];
  13. $loginin=$lur['username'];
  14. $loginrnd=$lur['rnd'];
  15. $loginlevel=$lur['groupid'];
  16. $loginadminstyleid=$lur['adminstyleid'];
  17. //ehash
  18. $ecms_hashur=hReturnEcmsHashStrAll();
  19. $ztid=(int)$_GET['ztid'];
  20. if(empty($class_zr[$ztid][zturl]))
  21. {$zturl=$public_r[newsurl].$class_zr[$ztid][ztpath]."/";}
  22. else
  23. {$zturl=$class_zr[$ztid][zturl];}
  24. ?>
  25. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  26. <html>
  27. <head>
  28. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  29. <title>菜单</title>
  30. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  31. <SCRIPT lanuage="JScript">
  32. function DisplayImg(ss,imgname,phome)
  33. {
  34. if(imgname=="ztimg")
  35. {
  36. img=todisplay(dozt,phome);
  37. document.images.ztimg.src=img;
  38. }
  39. else
  40. {
  41. }
  42. }
  43. function todisplay(ss,phome)
  44. {
  45. if(ss.style.display=="")
  46. {
  47. ss.style.display="none";
  48. theimg="../openpage/images/add.gif";
  49. }
  50. else
  51. {
  52. ss.style.display="";
  53. theimg="../openpage/images/noadd.gif";
  54. }
  55. return theimg;
  56. }
  57. function turnit(ss,img)
  58. {
  59. DisplayImg(ss,img,0);
  60. }
  61. </SCRIPT>
  62. </head>
  63. <body topmargin="0">
  64. <br>
  65. <table width="100%" border="0" align="center" cellpadding="4" cellspacing="1" class="tableborder" id="doztid">
  66. <tr>
  67. <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>
  68. </tr>
  69. <tbody id="dozt">
  70. <tr>
  71. <td height="25" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#EFEFEF'" onMouseOut="this.style.backgroundColor='#FFFFFF'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="AddZt.php?enews=EditZt&ztid=<?=$ztid?>&from=1<?=$ecms_hashur['ehref']?>" target="apmain">修改专题</a></td>
  72. </tr>
  73. <tr>
  74. <td height="25" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#EFEFEF'" onMouseOut="this.style.backgroundColor='#FFFFFF'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="ZtType.php?ztid=<?=$ztid?><?=$ecms_hashur['ehref']?>" target="apmain">管理专题子类</a></td>
  75. </tr>
  76. <tr>
  77. <td height="25" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#EFEFEF'" onMouseOut="this.style.backgroundColor='#FFFFFF'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="ListZtInfo.php?ztid=<?=$ztid?><?=$ecms_hashur['ehref']?>" target="apmain">管理信息</a></td>
  78. </tr>
  79. <tr>
  80. <td height="25" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#EFEFEF'" onMouseOut="this.style.backgroundColor='#FFFFFF'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="../pl/ListZtPl.php?ztid=<?=$ztid?><?=$ecms_hashur['ehref']?>" target="apmain">管理评论</a></td>
  81. </tr>
  82. <tr>
  83. <td height="25" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#EFEFEF'" onMouseOut="this.style.backgroundColor='#FFFFFF'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="TogZt.php?ztid=<?=$ztid?><?=$ecms_hashur['ehref']?>" target="apmain">组合专题</a></td>
  84. </tr>
  85. <tr>
  86. <td height="25" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#EFEFEF'" onMouseOut="this.style.backgroundColor='#FFFFFF'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="SpecialPathfile.php?ztid=<?=$ztid?><?=$ecms_hashur['ehref']?>" target="apmain">管理专题附件</a></td>
  87. </tr>
  88. <tr>
  89. <td height="25" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#EFEFEF'" onMouseOut="this.style.backgroundColor='#FFFFFF'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="../ecmschtml.php?enews=ReZtHtml&ztid=<?=$ztid?>&ecms=1<?=$ecms_hashur['href']?>" target="apmain">刷新专题页面</a></td>
  90. </tr>
  91. <tr>
  92. <td height="25" bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#EFEFEF'" onMouseOut="this.style.backgroundColor='#FFFFFF'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="<?=$zturl?>" target="_blank">预览专题</a></td>
  93. </tr>
  94. </tbody>
  95. </table>
  96. <br>
  97. </body>
  98. </html>
  99. <?php
  100. db_close();
  101. $empire=null;
  102. ?>