PageClass.php 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. //验证权限
  19. CheckLevel($logininid,$loginin,$classid,"userpage");
  20. $sql=$empire->query("select classid,classname from {$dbtbpre}enewspageclass order by classid desc");
  21. ?>
  22. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  23. <html>
  24. <head>
  25. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  26. <title></title>
  27. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  28. </head>
  29. <body>
  30. <table width="98%%" border="0" align="center" cellpadding="3" cellspacing="1">
  31. <tr>
  32. <td><p>位置:<a href="ListPage.php<?=$ecms_hashur['whehref']?>">管理自定义页面</a> &gt; <a href="PageClass.php<?=$ecms_hashur['whehref']?>">管理自定义页面类别</a></p>
  33. </td>
  34. </tr>
  35. </table>
  36. <form name="form1" method="post" action="../ecmscom.php">
  37. <table width="98%%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  38. <?=$ecms_hashur['form']?>
  39. <tr class="header">
  40. <td height="25">增加自定义页面类别:
  41. <input name=enews type=hidden id="enews" value=AddPageClass>
  42. <input name=doing type=hidden value=page>
  43. </td>
  44. </tr>
  45. <tr>
  46. <td height="25" bgcolor="#FFFFFF"> 类别名称:
  47. <input name="classname" type="text" id="classname">
  48. <input type="submit" name="Submit" value="增加">
  49. <input type="reset" name="Submit2" value="重置"></td>
  50. </tr>
  51. </table>
  52. </form>
  53. <table width="98%%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  54. <tr class="header">
  55. <td width="10%"><div align="center">ID</div></td>
  56. <td width="59%" height="25"><div align="center">类别名称</div></td>
  57. <td width="31%" height="25"><div align="center">操作</div></td>
  58. </tr>
  59. <?
  60. while($r=$empire->fetch($sql))
  61. {
  62. ?>
  63. <form name=form2 method=post action=../ecmscom.php>
  64. <?=$ecms_hashur['form']?>
  65. <input type=hidden name=enews value=EditPageClass>
  66. <input name=doing type=hidden value=page>
  67. <input type=hidden name=classid value=<?=$r[classid]?>>
  68. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  69. <td><div align="center"><?=$r[classid]?></div></td>
  70. <td height="25"> <div align="center">
  71. <input name="classname" type="text" id="classname" value="<?=$r[classname]?>">
  72. </div></td>
  73. <td height="25"><div align="center">
  74. <input type="submit" name="Submit3" value="修改">
  75. &nbsp;
  76. <input type="button" name="Submit4" value="删除" onclick="self.location.href='../ecmscom.php?enews=DelPageClass&classid=<?=$r[classid]?>&doing=page<?=$ecms_hashur['href']?>';">
  77. </div></td>
  78. </tr>
  79. </form>
  80. <?
  81. }
  82. db_close();
  83. $empire=null;
  84. ?>
  85. </table>
  86. </body>
  87. </html>