AdClass.php 5.6 KB

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