<?php define('EmpireCMSAdmin','1'); require("../../class/connect.php"); require("../../class/db_sql.php"); require("../../class/functions.php"); require "../".LoadLang("pub/fun.php"); require("../../data/dbcache/class.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(); $ztid=(int)$_GET['ztid']; //验证权限 //CheckLevel($logininid,$loginin,$ztid,"zt"); $returnandlevel=CheckAndUsernamesLevel('dozt',$ztid,$logininid,$loginin,$loginlevel); $search=''; $search.=$ecms_hashur['ehref']; //专题 $ztr=$empire->fetch1("select ztid,ztname,restb from {$dbtbpre}enewszt where ztid='$ztid' limit 1"); if(!$ztr['ztid']) { printerror('ErrorUrl',''); } $pubid='-'.$ztid; $start=0; $page=(int)$_GET['page']; $page=RepPIntvar($page); //每页显示 $line=(int)$_GET['line']; if($line>0&&$line<1000) { $search.='&line='.$line; } else { $line=30; } $page_line=12; $offset=$page*$line; $search.="&ztid=$ztid"; $add=''; //推荐 $isgood=(int)$_GET['isgood']; if($isgood) { $add.=' and isgood=1'; $search.="&isgood=$isgood"; } //审核 $checked=(int)$_GET['checked']; if($checked) { $add.=" and checked='".($checked==1?0:1)."'"; $search.="&checked=$checked"; } //搜索 $keyboard=RepPostVar2($_GET['keyboard']); if($keyboard) { $show=(int)$_GET['show']; if($show==1) { $where="username like '%".$keyboard."%'"; } elseif($show==3) { $where="saytext like '%".$keyboard."%'"; } else { $where="sayip like '%".$keyboard."%'"; } $add.=' and '.$where; $search.="&keyboard=$keyboard&show=$show"; } $query="select plid,username,saytime,sayip,checked,zcnum,fdnum,userid,isgood,saytext,pubid,eipport from {$dbtbpre}enewspl_".$ztr['restb']." where pubid='$pubid'".$add; $totalquery="select count(*) as total from {$dbtbpre}enewspl_".$ztr['restb']." where pubid='$pubid'".$add; //取得总条数 $totalnum=(int)$_GET['totalnum']; if($totalnum>0) { $num=$totalnum; } else { $num=$empire->gettotal($totalquery); } $query.=" order by plid desc limit $offset,$line"; $sql=$empire->query($query); $search.='&totalnum='.$num; $returnpage=page2($num,$line,$page_line,$start,$page,$search); //导航 $zturl=sys_ReturnBqZtname($ztr); $url='<a href="'.$zturl.'" target="_blank">'.$ztr['ztname'].'</a> > 管理评论'; ?> <!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> function CheckAll(form) { for (var i=0;i<form.elements.length;i++) { var e = form.elements[i]; if (e.name != 'chkall') e.checked = form.chkall.checked; } } </script> <style> .ecomment {margin:0;padding:0;} .ecomment {margin-bottom:12px;overflow-x:hidden;overflow-y:hidden;padding-bottom:3px;padding-left:3px;padding-right:3px;padding-top:3px;background:#FFFFEE;padding:3px;border:solid 1px #999;} .ecommentauthor {float:left; color:#F96; font-weight:bold;} .ecommenttext {clear:left;margin:0;padding:0;} </style> </head> <body> <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1"> <tr> <td>位置:<?=$url?></td> </tr> </table> <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1"> <form name="form2" method="get" action="ListZtPl.php"> <?=$ecms_hashur['eform']?> <tr> <td>关键字: <input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>"> <select name="show" id="show"> <option value="1"<?=$show==1?' selected':''?>>发表者</option> <option value="2"<?=$show==2?' selected':''?>>IP地址</option> <option value="3"<?=$show==3?' selected':''?>>评论内容</option> </select> <select name="checked" id="checked"> <option value="0"<?=$checked==0?' selected':''?>>不限</option> <option value="1"<?=$checked==1?' selected':''?>>已审核</option> <option value="2"<?=$checked==2?' selected':''?>>未审核</option> </select> <input name="isgood" type="checkbox" id="isgood" value="1"<?=$isgood==1?' checked':''?>> 推荐 <select name="line" id="line"> <option value="30"<?=$line==30?' selected':''?>>每页30条</option> <option value="50"<?=$line==50?' selected':''?>>每页50条</option> <option value="100"<?=$line==100?' selected':''?>>每页100条</option> </select> <input type="submit" name="Submit2" value="搜索评论"> <input name=ztid type=hidden id="ztid" value=<?=$ztid?>> </td> </tr> </form> </table> <form name="form1" method="post" action="../ecmspl.php"> <?=$ecms_hashur['form']?> <input type=hidden name=ztid value=<?=$ztid?>> <input name="isgood" type="hidden" id="isgood" value="1"> <input type=hidden name=restb value=<?=$ztr['restb']?>> <input name="docheck" type="hidden" id="docheck" value="0"> <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" style="WORD-BREAK: break-all; WORD-WRAP: break-word"> <tr class="header"> <td width="4%" height="25"><div align="center">选择</div></td> <td width="19%" height="25"><div align="center">网名</div></td> <td width="49%" height="25"><div align="center">评论内容</div></td> <td width="14%" height="25"><div align="center">发表时间</div></td> <td width="14%" height="25"><div align="center">IP</div></td> </tr> <?php while($r=$empire->fetch($sql)) { if(!empty($r[checked])) { $checked=" title='未审核' style='background:#99C4E3'"; $checkednc='<br>NC'; } else { $checked=""; $checkednc=''; } if($r['userid']) { $r['username']="<a href='../member/AddMember.php?enews=EditMember&userid=$r[userid]".$ecms_hashur['ehref']."' target='_blank'><b>$r[username]</b></a>"; } if(empty($r['username'])) { $r['username']='匿名'; } $r['saytime']=date('Y-m-d H:i:s',$r['saytime']); if($r[isgood]) { $r[saytime]='<font color=red>'.$r[saytime].'</font>'; } //替换表情 $saytext=RepPltextFace(stripSlashes($r['saytext'])); ?> <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'" id=pl<?=$r[plid]?>> <td height="25" valign="top"><div align="center"> <input name="plid[]" type="checkbox" id="plid[]" value="<?=$r[plid]?>"<?=$checked?>><?=$checkednc?> </div></td> <td height="25" valign="top"><div align="center"> <?=$r[username]?> </div></td> <td height="25" valign="top"> <?=$saytext?> </td> <td height="25" valign="top"><div align="center"> <?=$r['saytime']?> </div></td> <td height="25" valign="top"><div align="center"> <?=$r[sayip]?>:<?=$r[eipport]?> </div></td> </tr> <? } db_close(); $empire=null; ?> <tr bgcolor="#FFFFFF"> <td height="25"> <div align="center"> <input type=checkbox name=chkall value=on onclick=CheckAll(this.form)> </div></td> <td height="25" colspan="4"> <div align="right"> <input type="submit" name="Submit" value="审核评论" onClick="document.form1.enews.value='CheckPl_all';document.form1.docheck.value='0';"> <input type="submit" name="Submit" value="取消审核评论" onClick="document.form1.enews.value='CheckPl_all';document.form1.docheck.value='1';"> <input type="submit" name="Submit3" value="推荐评论" onClick="document.form1.enews.value='DoGoodPl_all';document.form1.isgood.value='1';"> <input type="submit" name="Submit4" value="取消推荐评论" onClick="document.form1.enews.value='DoGoodPl_all';document.form1.isgood.value='0';"> <input type="submit" name="Submit" value="删除" onClick="document.form1.enews.value='DelPl_all';"> <input name="enews" type="hidden" id="enews" value="DelPl_all"> </div></td> </tr> <tr bgcolor="#FFFFFF"> <td height="25"> </td> <td height="25" colspan="4"> <?=$returnpage?> </td> </tr> <tr bgcolor="#FFFFFF"> <td height="25" colspan="5"><font color="#666666">说明:多选框为蓝色代表未审核评论,加粗网名为登陆会员,发布时间红色为推荐评论</font></td> </tr> </table> </form> </body> </html>