PicClass.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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,"picnews");
  20. //增加图片信息分类
  21. function AddPicClass($classname,$userid,$username){
  22. global $empire,$dbtbpre;
  23. if(!$classname)
  24. {printerror("EmptyPicNewsClass","history.go(-1)");}
  25. //验证权限
  26. CheckLevel($userid,$username,$classid,"picnews");
  27. $classname=hRepPostStr($classname,1);
  28. $sql=$empire->query("insert into {$dbtbpre}enewspicclass(classname) values('$classname');");
  29. $classid=$empire->lastid();
  30. if($sql)
  31. {
  32. //操作日志
  33. insert_dolog("classid=".$classid."<br>classname=".$classname);
  34. printerror("AddPicNewsClassSuccess","PicClass.php".hReturnEcmsHashStrHref2(1));
  35. }
  36. else
  37. {printerror("DbError","history.go(-1)");}
  38. }
  39. //修改图片信息分类
  40. function EditPicClass($classid,$classname,$userid,$username){
  41. global $empire,$dbtbpre;
  42. $classid=(int)$classid;
  43. if(!$classname||!$classid)
  44. {printerror("EmptyPicNewsClass","history.go(-1)");}
  45. //验证权限
  46. CheckLevel($userid,$username,$classid,"picnews");
  47. $classname=hRepPostStr($classname,1);
  48. $sql=$empire->query("update {$dbtbpre}enewspicclass set classname='$classname' where classid='$classid'");
  49. if($sql)
  50. {
  51. //操作日志
  52. insert_dolog("classid=".$classid."<br>classname=".$classname);
  53. printerror("EditPicNewsClassSuccess","PicClass.php".hReturnEcmsHashStrHref2(1));
  54. }
  55. else
  56. {printerror("DbError","history.go(-1)");}
  57. }
  58. //删除图片信息分类
  59. function DelPicClass($classid,$userid,$username){
  60. global $empire,$dbtbpre;
  61. $classid=(int)$classid;
  62. if(!$classid)
  63. {printerror("NotPicNewsClassid","history.go(-1)");}
  64. //验证权限
  65. CheckLevel($userid,$username,$classid,"picnews");
  66. $r=$empire->fetch1("select classname from {$dbtbpre}enewspicclass where classid='$classid'");
  67. $sql=$empire->query("delete from {$dbtbpre}enewspicclass where classid='$classid'");
  68. $sql1=$empire->query("delete from {$dbtbpre}enewspic where classid='$classid'");
  69. if($sql)
  70. {
  71. //操作日志
  72. insert_dolog("classid=".$classid."<br>classname=".$r[classname]);
  73. printerror("DelPicNewsClassSuccess","PicClass.php".hReturnEcmsHashStrHref2(1));
  74. }
  75. else
  76. {printerror("DbError","history.go(-1)");}
  77. }
  78. $enews=$_POST['enews'];
  79. if(empty($enews))
  80. {$enews=$_GET['enews'];}
  81. if($enews)
  82. {
  83. hCheckEcmsRHash();
  84. }
  85. //增加图片新闻分类
  86. if($enews=="AddPicClass")
  87. {
  88. $classname=$_POST['classname'];
  89. AddPicClass($classname,$logininid,$loginin);
  90. }
  91. //修改图片新闻分类
  92. elseif($enews=="EditPicClass")
  93. {
  94. $classname=$_POST['classname'];
  95. $classid=$_POST['classid'];
  96. EditPicClass($classid,$classname,$logininid,$loginin);
  97. }
  98. //删除图片新闻分类
  99. elseif($enews=="DelPicClass")
  100. {
  101. $classid=$_GET['classid'];
  102. DelPicClass($classid,$logininid,$loginin);
  103. }
  104. $sql=$empire->query("select classid,classname from {$dbtbpre}enewspicclass order by classid desc");
  105. ?>
  106. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  107. <html>
  108. <head>
  109. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  110. <title></title>
  111. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  112. </head>
  113. <body>
  114. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  115. <tr>
  116. <td>位置:<a href=ListPicNews.php<?=$ecms_hashur['whehref']?>>管理图片信息</a>&nbsp;&gt;&nbsp;<a href="PicClass.php<?=$ecms_hashur['whehref']?>">管理图片信息分类</a></td>
  117. </tr>
  118. </table>
  119. <form name="form1" method="post" action="PicClass.php">
  120. <input type=hidden name=enews value=AddPicClass>
  121. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  122. <?=$ecms_hashur['form']?>
  123. <tr class="header">
  124. <td height="25">增加图片信息类别:</td>
  125. </tr>
  126. <tr>
  127. <td height="25" bgcolor="#FFFFFF"> 类别名称:
  128. <input name="classname" type="text" id="classname">
  129. <input type="submit" name="Submit" value="增加">
  130. <input type="reset" name="Submit2" value="重置"></td>
  131. </tr>
  132. </table>
  133. </form>
  134. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  135. <tr class="header">
  136. <td width="10%"><div align="center">ID</div></td>
  137. <td width="59%" height="25"><div align="center">类别名称</div></td>
  138. <td width="31%" height="25"><div align="center">操作</div></td>
  139. </tr>
  140. <?
  141. while($r=$empire->fetch($sql))
  142. {
  143. ?>
  144. <form name=form2 method=post action=PicClass.php>
  145. <?=$ecms_hashur['form']?>
  146. <input type=hidden name=enews value=EditPicClass>
  147. <input type=hidden name=classid value=<?=$r[classid]?>>
  148. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  149. <td><div align="center"><?=$r[classid]?></div></td>
  150. <td height="25"> <div align="center">
  151. <input name="classname" type="text" id="classname" value="<?=$r[classname]?>">
  152. </div></td>
  153. <td height="25"><div align="center">
  154. <input type="submit" name="Submit3" value="修改">
  155. &nbsp;
  156. <input type="button" name="Submit4" value="删除" onclick="if(confirm('确认要删除?')){self.location.href='PicClass.php?enews=DelPicClass&classid=<?=$r[classid]?><?=$ecms_hashur['href']?>';}">
  157. </div></td>
  158. </tr>
  159. </form>
  160. <?
  161. }
  162. db_close();
  163. $empire=null;
  164. ?>
  165. </table>
  166. </body>
  167. </html>