You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
272 lines
7.9 KiB
272 lines
7.9 KiB
<?php
|
|
define('EmpireCMSAdmin','1');
|
|
require("../../class/connect.php");
|
|
require("../../class/db_sql.php");
|
|
require("../../class/functions.php");
|
|
$link=db_connect();
|
|
$empire=new mysqlquery();
|
|
$editor=1;
|
|
//验证用户
|
|
$lur=is_login();
|
|
$logininid=$lur['userid'];
|
|
$loginin=$lur['username'];
|
|
$loginrnd=$lur['rnd'];
|
|
$loginlevel=$lur['groupid'];
|
|
$loginadminstyleid=$lur['adminstyleid'];
|
|
//ehash
|
|
$ecms_hashur=hReturnEcmsHashStrAll();
|
|
//验证权限
|
|
CheckLevel($logininid,$loginin,$classid,"pl");
|
|
|
|
//批量删除评论(条件)
|
|
function DelMorePl($add,$logininid,$loginin){
|
|
global $empire,$dbtbpre,$public_r,$class_r;
|
|
CheckLevel($logininid,$loginin,$classid,"pl");//验证权限
|
|
//变量处理
|
|
$restb=(int)$add['restb'];
|
|
$username=RepPostVar($add['username']);
|
|
$sayip=RepPostVar($add['sayip']);
|
|
$saytext=RepPostStr($add['saytext']);
|
|
$startplid=(int)$add['startplid'];
|
|
$endplid=(int)$add['endplid'];
|
|
$startsaytime=RepPostVar($add['startsaytime']);
|
|
$endsaytime=RepPostVar($add['endsaytime']);
|
|
$checked=(int)$add['checked'];
|
|
$ismember=(int)$add['ismember'];
|
|
$classid=(int)$add['classid'];
|
|
$id=RepPostVar($add['id']);
|
|
if(!$restb||!strstr($public_r['pldatatbs'],','.$restb.','))
|
|
{
|
|
printerror("EmptyDelMorePl","history.go(-1)");
|
|
}
|
|
$where='';
|
|
//栏目
|
|
if($classid)
|
|
{
|
|
if(empty($class_r[$classid][islast]))//中级栏目
|
|
{
|
|
$cwhere=ReturnClass($class_r[$classid][sonclass]);
|
|
}
|
|
else//终极栏目
|
|
{
|
|
$cwhere="classid='$classid'";
|
|
}
|
|
$where.=" and ".$cwhere;
|
|
}
|
|
//信息ID
|
|
if($id)
|
|
{
|
|
$idr=explode(',',$id);
|
|
$ids='';
|
|
$dh='';
|
|
$count=count($idr);
|
|
for($i=0;$i<$count;$i++)
|
|
{
|
|
$ids.=$dh.intval($idr[$i]);
|
|
$dh=',';
|
|
}
|
|
$where.=" and id in (".$ids.")";
|
|
}
|
|
//是否会员
|
|
if($ismember)
|
|
{
|
|
if($ismember==1)
|
|
{
|
|
$where.=" and userid=0";
|
|
}
|
|
else
|
|
{
|
|
$where.=" and userid>0";
|
|
}
|
|
}
|
|
//发布者
|
|
if($username)
|
|
{
|
|
$where.=" and username like '%$username%'";
|
|
}
|
|
//发布IP
|
|
if($sayip)
|
|
{
|
|
$where.=" and sayip like '%$sayip%'";
|
|
}
|
|
//发布内容
|
|
if($saytext)
|
|
{
|
|
$twhere='';
|
|
$or='';
|
|
$tr=explode('|',$saytext);
|
|
$count=count($tr);
|
|
for($i=0;$i<$count;$i++)
|
|
{
|
|
$twhere.=$or."saytext like '%".$tr[$i]."%'";
|
|
$or=' or ';
|
|
}
|
|
$where.=' and ('.$twhere.')';
|
|
}
|
|
//评论ID
|
|
if($endplid)
|
|
{
|
|
$where.=' and plid BETWEEN '.$startplid.' and '.$endplid;
|
|
}
|
|
//发布时间
|
|
if($startsaytime&&$endsaytime)
|
|
{
|
|
$startsaytime=to_time($startsaytime.' 00:00:00');
|
|
$endsaytime=to_time($endsaytime.' 23:59:59');
|
|
$where.=" and saytime>='$startsaytime' and saytime<='$endsaytime'";
|
|
}
|
|
//是否审核
|
|
if($checked)
|
|
{
|
|
$checkval=$checked==1?0:1;
|
|
$where.=" and checked='$checkval'";
|
|
}
|
|
if(!$where)
|
|
{
|
|
printerror("EmptyDelMorePl","history.go(-1)");
|
|
}
|
|
$where=substr($where,5);
|
|
$sql=$empire->query("select plid,id,classid,pubid from {$dbtbpre}enewspl_".$restb." where ".$where);
|
|
$dh='';
|
|
$b=0;
|
|
while($r=$empire->fetch($sql))
|
|
{
|
|
$b=1;
|
|
$startid=$r['plid'];
|
|
if($class_r[$r[classid]][tbname]&&$r['pubid']>0)
|
|
{
|
|
$index_r=$empire->fetch1("select checked from {$dbtbpre}ecms_".$class_r[$r[classid]][tbname]."_index where id='$r[id]' limit 1");
|
|
//返回表
|
|
$infotb=ReturnInfoMainTbname($class_r[$r[classid]][tbname],$index_r['checked']);
|
|
$empire->query("update ".$infotb." set plnum=plnum-1 where id='$r[id]'");
|
|
}
|
|
}
|
|
$sql=$empire->query("delete from {$dbtbpre}enewspl_".$restb." where ".$where);
|
|
insert_dolog("restb=$restb");//操作日志
|
|
printerror("DelPlSuccess","DelMorePl.php".hReturnEcmsHashStrHref2(1));
|
|
}
|
|
|
|
$enews=$_POST['enews'];
|
|
if($enews)
|
|
{
|
|
hCheckEcmsRHash();
|
|
include("../../data/dbcache/class.php");
|
|
@set_time_limit(0);
|
|
}
|
|
if($enews=='DelMorePl')
|
|
{
|
|
DelMorePl($_POST,$logininid,$loginin);
|
|
}
|
|
|
|
//分表
|
|
$plsetr=$empire->fetch1("select pldatatbs from {$dbtbpre}enewspl_set limit 1");
|
|
$pltbr=explode(',',$plsetr['pldatatbs']);
|
|
$restbs='';
|
|
$tbcount=count($pltbr)-1;
|
|
for($i=1;$i<$tbcount;$i++)
|
|
{
|
|
$restbs.='<option value="'.$pltbr[$i].'">'.$dbtbpre.'enewspl_'.$pltbr[$i].'</option>';
|
|
}
|
|
//栏目
|
|
$fcfile="../../data/fc/ListEnews.php";
|
|
$class="<script src=../../data/fc/cmsclass.js></script>";
|
|
if(!file_exists($fcfile))
|
|
{$class=ShowClass_AddClass("",$classid,0,"|-",0,0);}
|
|
|
|
db_close();
|
|
$empire=null;
|
|
?>
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>批量删除评论</title>
|
|
<link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
|
|
<script type="text/javascript" src="../ecmseditor/js/jstime/WdatePicker.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
|
|
<tr>
|
|
<td>位置:<a href=ListAllPl.php<?=$ecms_hashur['whehref']?>>管理评论</a> > 批量删除评论</td>
|
|
</tr>
|
|
</table>
|
|
<form name="form1" method="post" action="DelMorePl.php" onsubmit="return confirm('确认要删除?');">
|
|
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
|
|
<?=$ecms_hashur['form']?>
|
|
<tr class="header">
|
|
<td height="25" colspan="2">多条件批量删除评论
|
|
<input name="enews" type="hidden" id="enews" value="DelMorePl"></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">选择分表</td>
|
|
<td height="25"><select name="restb" id="restb">
|
|
<?=$restbs?>
|
|
</select> </td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td width="19%" height="25">发布者包含字符:</td>
|
|
<td width="81%" height="25"><input name=username type=text id="username"></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">是否会员发布:</td>
|
|
<td height="25"><input name="ismember" type="radio" value="0" checked>
|
|
不限 <input type="radio" name="ismember" value="1">
|
|
游客发布
|
|
<input type="radio" name="ismember" value="2">
|
|
会员发布</td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">评论IP包含:</td>
|
|
<td height="25"><input name=sayip type=text id="sayip"></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">评论内容包含字符:<br>
|
|
<br>
|
|
<font color="#666666">(多个字符用“|”隔开)</font></td>
|
|
<td height="25"><textarea name="saytext" cols="70" rows="6" id="saytext"></textarea></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td rowspan="2">所属信息:</td>
|
|
<td height="25">所属栏目:
|
|
<select name="classid" id="classid">
|
|
<option value=0>不限</option>
|
|
<?=$class?>
|
|
</select> <font color="#666666">(如选择父栏目,将应用于所有子栏目)</font></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">信息ID :
|
|
<input name="id" type="text" id="id">
|
|
<font color="#666666">(多个ID用“,”半角逗号隔开)</font></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">评论ID 介于:</td>
|
|
<td height="25"><input name="startplid" type="text" id="startplid">
|
|
--
|
|
<input name="endplid" type="text" id="endplid"></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25" valign="top">评论时间 介于:</td>
|
|
<td height="25"><input name="startsaytime" type="text" id="startsaytime" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
|
|
--
|
|
<input name="endsaytime" type="text" id="endsaytime" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
|
|
<font color="#666666">(格式:2011-01-27)</font></td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25">是否审核:</td>
|
|
<td height="25"><input name="checked" type="radio" value="0" checked>
|
|
不限
|
|
<input name="checked" type="radio" value="1">
|
|
已审核评论
|
|
<input name="checked" type="radio" value="2">
|
|
未审核评论</td>
|
|
</tr>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25"> </td>
|
|
<td height="25"><input type="submit" name="Submit" value="删除评论"> </td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<br>
|
|
</body>
|
|
</html>
|
|
|