DelMorePl.php 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  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,"pl");
  20. //批量删除评论(条件)
  21. function DelMorePl($add,$logininid,$loginin){
  22. global $empire,$dbtbpre,$public_r,$class_r;
  23. CheckLevel($logininid,$loginin,$classid,"pl");//验证权限
  24. //变量处理
  25. $restb=(int)$add['restb'];
  26. $username=RepPostVar($add['username']);
  27. $sayip=RepPostVar($add['sayip']);
  28. $saytext=RepPostStr($add['saytext']);
  29. $startplid=(int)$add['startplid'];
  30. $endplid=(int)$add['endplid'];
  31. $startsaytime=RepPostVar($add['startsaytime']);
  32. $endsaytime=RepPostVar($add['endsaytime']);
  33. $checked=(int)$add['checked'];
  34. $ismember=(int)$add['ismember'];
  35. $classid=(int)$add['classid'];
  36. $id=RepPostVar($add['id']);
  37. if(!$restb||!strstr($public_r['pldatatbs'],','.$restb.','))
  38. {
  39. printerror("EmptyDelMorePl","history.go(-1)");
  40. }
  41. $where='';
  42. //栏目
  43. if($classid)
  44. {
  45. if(empty($class_r[$classid][islast]))//中级栏目
  46. {
  47. $cwhere=ReturnClass($class_r[$classid][sonclass]);
  48. }
  49. else//终极栏目
  50. {
  51. $cwhere="classid='$classid'";
  52. }
  53. $where.=" and ".$cwhere;
  54. }
  55. //信息ID
  56. if($id)
  57. {
  58. $idr=explode(',',$id);
  59. $ids='';
  60. $dh='';
  61. $count=count($idr);
  62. for($i=0;$i<$count;$i++)
  63. {
  64. $ids.=$dh.intval($idr[$i]);
  65. $dh=',';
  66. }
  67. $where.=" and id in (".$ids.")";
  68. }
  69. //是否会员
  70. if($ismember)
  71. {
  72. if($ismember==1)
  73. {
  74. $where.=" and userid=0";
  75. }
  76. else
  77. {
  78. $where.=" and userid>0";
  79. }
  80. }
  81. //发布者
  82. if($username)
  83. {
  84. $where.=" and username like '%$username%'";
  85. }
  86. //发布IP
  87. if($sayip)
  88. {
  89. $where.=" and sayip like '%$sayip%'";
  90. }
  91. //发布内容
  92. if($saytext)
  93. {
  94. $twhere='';
  95. $or='';
  96. $tr=explode('|',$saytext);
  97. $count=count($tr);
  98. for($i=0;$i<$count;$i++)
  99. {
  100. $twhere.=$or."saytext like '%".$tr[$i]."%'";
  101. $or=' or ';
  102. }
  103. $where.=' and ('.$twhere.')';
  104. }
  105. //评论ID
  106. if($endplid)
  107. {
  108. $where.=' and plid BETWEEN '.$startplid.' and '.$endplid;
  109. }
  110. //发布时间
  111. if($startsaytime&&$endsaytime)
  112. {
  113. $startsaytime=to_time($startsaytime.' 00:00:00');
  114. $endsaytime=to_time($endsaytime.' 23:59:59');
  115. $where.=" and saytime>='$startsaytime' and saytime<='$endsaytime'";
  116. }
  117. //是否审核
  118. if($checked)
  119. {
  120. $checkval=$checked==1?0:1;
  121. $where.=" and checked='$checkval'";
  122. }
  123. if(!$where)
  124. {
  125. printerror("EmptyDelMorePl","history.go(-1)");
  126. }
  127. $where=substr($where,5);
  128. $sql=$empire->query("select plid,id,classid,pubid from {$dbtbpre}enewspl_".$restb." where ".$where);
  129. $dh='';
  130. $b=0;
  131. while($r=$empire->fetch($sql))
  132. {
  133. $b=1;
  134. $startid=$r['plid'];
  135. if($class_r[$r[classid]][tbname]&&$r['pubid']>0)
  136. {
  137. $index_r=$empire->fetch1("select checked from {$dbtbpre}ecms_".$class_r[$r[classid]][tbname]."_index where id='$r[id]' limit 1");
  138. //返回表
  139. $infotb=ReturnInfoMainTbname($class_r[$r[classid]][tbname],$index_r['checked']);
  140. $empire->query("update ".$infotb." set plnum=plnum-1 where id='$r[id]'");
  141. }
  142. }
  143. $sql=$empire->query("delete from {$dbtbpre}enewspl_".$restb." where ".$where);
  144. insert_dolog("restb=$restb");//操作日志
  145. printerror("DelPlSuccess","DelMorePl.php".hReturnEcmsHashStrHref2(1));
  146. }
  147. $enews=$_POST['enews'];
  148. if($enews)
  149. {
  150. hCheckEcmsRHash();
  151. include("../../data/dbcache/class.php");
  152. @set_time_limit(0);
  153. }
  154. if($enews=='DelMorePl')
  155. {
  156. DelMorePl($_POST,$logininid,$loginin);
  157. }
  158. //分表
  159. $plsetr=$empire->fetch1("select pldatatbs from {$dbtbpre}enewspl_set limit 1");
  160. $pltbr=explode(',',$plsetr['pldatatbs']);
  161. $restbs='';
  162. $tbcount=count($pltbr)-1;
  163. for($i=1;$i<$tbcount;$i++)
  164. {
  165. $restbs.='<option value="'.$pltbr[$i].'">'.$dbtbpre.'enewspl_'.$pltbr[$i].'</option>';
  166. }
  167. //栏目
  168. $fcfile="../../data/fc/ListEnews.php";
  169. $class="<script src=../../data/fc/cmsclass.js></script>";
  170. if(!file_exists($fcfile))
  171. {$class=ShowClass_AddClass("",$classid,0,"|-",0,0);}
  172. db_close();
  173. $empire=null;
  174. ?>
  175. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  176. <html>
  177. <head>
  178. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  179. <title>批量删除评论</title>
  180. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  181. <script type="text/javascript" src="../ecmseditor/js/jstime/WdatePicker.js"></script>
  182. </head>
  183. <body>
  184. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  185. <tr>
  186. <td>位置:<a href=ListAllPl.php<?=$ecms_hashur['whehref']?>>管理评论</a>&nbsp;>&nbsp;批量删除评论</td>
  187. </tr>
  188. </table>
  189. <form name="form1" method="post" action="DelMorePl.php" onsubmit="return confirm('确认要删除?');">
  190. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  191. <?=$ecms_hashur['form']?>
  192. <tr class="header">
  193. <td height="25" colspan="2">多条件批量删除评论
  194. <input name="enews" type="hidden" id="enews" value="DelMorePl"></td>
  195. </tr>
  196. <tr bgcolor="#FFFFFF">
  197. <td height="25">选择分表</td>
  198. <td height="25"><select name="restb" id="restb">
  199. <?=$restbs?>
  200. </select> </td>
  201. </tr>
  202. <tr bgcolor="#FFFFFF">
  203. <td width="19%" height="25">发布者包含字符:</td>
  204. <td width="81%" height="25"><input name=username type=text id="username"></td>
  205. </tr>
  206. <tr bgcolor="#FFFFFF">
  207. <td height="25">是否会员发布:</td>
  208. <td height="25"><input name="ismember" type="radio" value="0" checked>
  209. 不限 <input type="radio" name="ismember" value="1">
  210. 游客发布
  211. <input type="radio" name="ismember" value="2">
  212. 会员发布</td>
  213. </tr>
  214. <tr bgcolor="#FFFFFF">
  215. <td height="25">评论IP包含:</td>
  216. <td height="25"><input name=sayip type=text id="sayip"></td>
  217. </tr>
  218. <tr bgcolor="#FFFFFF">
  219. <td height="25">评论内容包含字符:<br>
  220. <br>
  221. <font color="#666666">(多个字符用“|”隔开)</font></td>
  222. <td height="25"><textarea name="saytext" cols="70" rows="6" id="saytext"></textarea></td>
  223. </tr>
  224. <tr bgcolor="#FFFFFF">
  225. <td rowspan="2">所属信息:</td>
  226. <td height="25">所属栏目:
  227. <select name="classid" id="classid">
  228. <option value=0>不限</option>
  229. <?=$class?>
  230. </select> <font color="#666666">(如选择父栏目,将应用于所有子栏目)</font></td>
  231. </tr>
  232. <tr bgcolor="#FFFFFF">
  233. <td height="25">信息ID&nbsp;&nbsp;:
  234. <input name="id" type="text" id="id">
  235. <font color="#666666">(多个ID用“,”半角逗号隔开)</font></td>
  236. </tr>
  237. <tr bgcolor="#FFFFFF">
  238. <td height="25">评论ID 介于:</td>
  239. <td height="25"><input name="startplid" type="text" id="startplid">
  240. --
  241. <input name="endplid" type="text" id="endplid"></td>
  242. </tr>
  243. <tr bgcolor="#FFFFFF">
  244. <td height="25" valign="top">评论时间 介于:</td>
  245. <td height="25"><input name="startsaytime" type="text" id="startsaytime" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  246. --
  247. <input name="endsaytime" type="text" id="endsaytime" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  248. <font color="#666666">(格式:2011-01-27)</font></td>
  249. </tr>
  250. <tr bgcolor="#FFFFFF">
  251. <td height="25">是否审核:</td>
  252. <td height="25"><input name="checked" type="radio" value="0" checked>
  253. 不限
  254. <input name="checked" type="radio" value="1">
  255. 已审核评论
  256. <input name="checked" type="radio" value="2">
  257. 未审核评论</td>
  258. </tr>
  259. <tr bgcolor="#FFFFFF">
  260. <td height="25">&nbsp;</td>
  261. <td height="25"><input type="submit" name="Submit" value="删除评论"> </td>
  262. </tr>
  263. </table>
  264. </form>
  265. <br>
  266. </body>
  267. </html>