ListtempClass.php 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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,"template");
  20. $sql=$empire->query("select classid,classname from {$dbtbpre}enewslisttempclass 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="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  31. <tr>
  32. <td width="50%">
  33. <p>位置:<a href="ListListtemp.php<?=$ecms_hashur['whehref']?>">管理列表模板</a> &gt; <a href="ListtempClass.php<?=$ecms_hashur['whehref']?>">管理列表模板分类</a></p></td>
  34. <td>&nbsp;</td>
  35. </tr>
  36. </table>
  37. <form name="form1" method="post" action="../ecmscom.php">
  38. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  39. <?=$ecms_hashur['form']?>
  40. <tr class="header">
  41. <td height="25">增加列表模板分类:
  42. <input name=enews type=hidden id="enews" value=AddListtempClass>
  43. <input name=doing type=hidden value=listtemp>
  44. </td>
  45. </tr>
  46. <tr>
  47. <td height="25" bgcolor="#FFFFFF"> 类别名称:
  48. <input name="classname" type="text" id="classname">
  49. <input type="submit" name="Submit" value="增加">
  50. <input type="reset" name="Submit2" value="重置"></td>
  51. </tr>
  52. </table>
  53. </form>
  54. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  55. <tr class="header">
  56. <td width="10%"><div align="center">ID</div></td>
  57. <td width="59%" height="25"><div align="center">类别名称</div></td>
  58. <td width="31%" height="25"><div align="center">操作</div></td>
  59. </tr>
  60. <?
  61. while($r=$empire->fetch($sql))
  62. {
  63. ?>
  64. <form name=form2 method=post action=../ecmscom.php>
  65. <?=$ecms_hashur['form']?>
  66. <input type=hidden name=enews value=EditListtempClass>
  67. <input name=doing type=hidden value=listtemp>
  68. <input type=hidden name=classid value=<?=$r[classid]?>>
  69. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  70. <td><div align="center"><?=$r[classid]?></div></td>
  71. <td height="25"> <div align="center">
  72. <input name="classname" type="text" id="classname" value="<?=$r[classname]?>">
  73. </div></td>
  74. <td height="25"><div align="center">
  75. <input type="submit" name="Submit3" value="修改">
  76. &nbsp;
  77. <input type="button" name="Submit4" value="删除" onclick="self.location.href='../ecmscom.php?enews=DelListtempClass&classid=<?=$r[classid]?>&doing=listtemp<?=$ecms_hashur['href']?>';">
  78. </div></td>
  79. </tr>
  80. </form>
  81. <?
  82. }
  83. db_close();
  84. $empire=null;
  85. ?>
  86. </table>
  87. </body>
  88. </html>