ListZtPl.php 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require "../".LoadLang("pub/fun.php");
  7. require("../../data/dbcache/class.php");
  8. $link=db_connect();
  9. $empire=new mysqlquery();
  10. $editor=1;
  11. //验证用户
  12. $lur=is_login();
  13. $logininid=$lur['userid'];
  14. $loginin=$lur['username'];
  15. $loginrnd=$lur['rnd'];
  16. $loginlevel=$lur['groupid'];
  17. $loginadminstyleid=$lur['adminstyleid'];
  18. //ehash
  19. $ecms_hashur=hReturnEcmsHashStrAll();
  20. $ztid=(int)$_GET['ztid'];
  21. //验证权限
  22. //CheckLevel($logininid,$loginin,$ztid,"zt");
  23. $returnandlevel=CheckAndUsernamesLevel('dozt',$ztid,$logininid,$loginin,$loginlevel);
  24. $search='';
  25. $search.=$ecms_hashur['ehref'];
  26. //专题
  27. $ztr=$empire->fetch1("select ztid,ztname,restb from {$dbtbpre}enewszt where ztid='$ztid' limit 1");
  28. if(!$ztr['ztid'])
  29. {
  30. printerror('ErrorUrl','');
  31. }
  32. $pubid='-'.$ztid;
  33. $start=0;
  34. $page=(int)$_GET['page'];
  35. $page=RepPIntvar($page);
  36. //每页显示
  37. $line=(int)$_GET['line'];
  38. if($line>0&&$line<1000)
  39. {
  40. $search.='&line='.$line;
  41. }
  42. else
  43. {
  44. $line=30;
  45. }
  46. $page_line=12;
  47. $offset=$page*$line;
  48. $search.="&ztid=$ztid";
  49. $add='';
  50. //推荐
  51. $isgood=(int)$_GET['isgood'];
  52. if($isgood)
  53. {
  54. $add.=' and isgood=1';
  55. $search.="&isgood=$isgood";
  56. }
  57. //审核
  58. $checked=(int)$_GET['checked'];
  59. if($checked)
  60. {
  61. $add.=" and checked='".($checked==1?0:1)."'";
  62. $search.="&checked=$checked";
  63. }
  64. //搜索
  65. $keyboard=RepPostVar2($_GET['keyboard']);
  66. if($keyboard)
  67. {
  68. $show=(int)$_GET['show'];
  69. if($show==1)
  70. {
  71. $where="username like '%".$keyboard."%'";
  72. }
  73. elseif($show==3)
  74. {
  75. $where="saytext like '%".$keyboard."%'";
  76. }
  77. else
  78. {
  79. $where="sayip like '%".$keyboard."%'";
  80. }
  81. $add.=' and '.$where;
  82. $search.="&keyboard=$keyboard&show=$show";
  83. }
  84. $query="select plid,username,saytime,sayip,checked,zcnum,fdnum,userid,isgood,saytext,pubid,eipport from {$dbtbpre}enewspl_".$ztr['restb']." where pubid='$pubid'".$add;
  85. $totalquery="select count(*) as total from {$dbtbpre}enewspl_".$ztr['restb']." where pubid='$pubid'".$add;
  86. //取得总条数
  87. $totalnum=(int)$_GET['totalnum'];
  88. if($totalnum>0)
  89. {
  90. $num=$totalnum;
  91. }
  92. else
  93. {
  94. $num=$empire->gettotal($totalquery);
  95. }
  96. $query.=" order by plid desc limit $offset,$line";
  97. $sql=$empire->query($query);
  98. $search.='&totalnum='.$num;
  99. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  100. //导航
  101. $zturl=sys_ReturnBqZtname($ztr);
  102. $url='<a href="'.$zturl.'" target="_blank">'.$ztr['ztname'].'</a>&nbsp;>&nbsp;管理评论';
  103. ?>
  104. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  105. <html>
  106. <head>
  107. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  108. <title>管理评论</title>
  109. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  110. <script>
  111. function CheckAll(form)
  112. {
  113. for (var i=0;i<form.elements.length;i++)
  114. {
  115. var e = form.elements[i];
  116. if (e.name != 'chkall')
  117. e.checked = form.chkall.checked;
  118. }
  119. }
  120. </script>
  121. <style>
  122. .ecomment {margin:0;padding:0;}
  123. .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;}
  124. .ecommentauthor {float:left; color:#F96; font-weight:bold;}
  125. .ecommenttext {clear:left;margin:0;padding:0;}
  126. </style>
  127. </head>
  128. <body>
  129. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  130. <tr>
  131. <td>位置:<?=$url?></td>
  132. </tr>
  133. </table>
  134. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  135. <form name="form2" method="get" action="ListZtPl.php">
  136. <?=$ecms_hashur['eform']?>
  137. <tr>
  138. <td>关键字:
  139. <input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>">
  140. <select name="show" id="show">
  141. <option value="1"<?=$show==1?' selected':''?>>发表者</option>
  142. <option value="2"<?=$show==2?' selected':''?>>IP地址</option>
  143. <option value="3"<?=$show==3?' selected':''?>>评论内容</option>
  144. </select>
  145. <select name="checked" id="checked">
  146. <option value="0"<?=$checked==0?' selected':''?>>不限</option>
  147. <option value="1"<?=$checked==1?' selected':''?>>已审核</option>
  148. <option value="2"<?=$checked==2?' selected':''?>>未审核</option>
  149. </select>
  150. <input name="isgood" type="checkbox" id="isgood" value="1"<?=$isgood==1?' checked':''?>>
  151. 推荐
  152. <select name="line" id="line">
  153. <option value="30"<?=$line==30?' selected':''?>>每页30条</option>
  154. <option value="50"<?=$line==50?' selected':''?>>每页50条</option>
  155. <option value="100"<?=$line==100?' selected':''?>>每页100条</option>
  156. </select>
  157. <input type="submit" name="Submit2" value="搜索评论">
  158. <input name=ztid type=hidden id="ztid" value=<?=$ztid?>>
  159. </td>
  160. </tr>
  161. </form>
  162. </table>
  163. <form name="form1" method="post" action="../ecmspl.php">
  164. <?=$ecms_hashur['form']?>
  165. <input type=hidden name=ztid value=<?=$ztid?>>
  166. <input name="isgood" type="hidden" id="isgood" value="1">
  167. <input type=hidden name=restb value=<?=$ztr['restb']?>>
  168. <input name="docheck" type="hidden" id="docheck" value="0">
  169. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" style="WORD-BREAK: break-all; WORD-WRAP: break-word">
  170. <tr class="header">
  171. <td width="4%" height="25"><div align="center">选择</div></td>
  172. <td width="19%" height="25"><div align="center">网名</div></td>
  173. <td width="49%" height="25"><div align="center">评论内容</div></td>
  174. <td width="14%" height="25"><div align="center">发表时间</div></td>
  175. <td width="14%" height="25"><div align="center">IP</div></td>
  176. </tr>
  177. <?php
  178. while($r=$empire->fetch($sql))
  179. {
  180. if(!empty($r[checked]))
  181. {
  182. $checked=" title='未审核' style='background:#99C4E3'";
  183. $checkednc='<br>NC';
  184. }
  185. else
  186. {
  187. $checked="";
  188. $checkednc='';
  189. }
  190. if($r['userid'])
  191. {
  192. $r['username']="<a href='../member/AddMember.php?enews=EditMember&userid=$r[userid]".$ecms_hashur['ehref']."' target='_blank'><b>$r[username]</b></a>";
  193. }
  194. if(empty($r['username']))
  195. {
  196. $r['username']='匿名';
  197. }
  198. $r['saytime']=date('Y-m-d H:i:s',$r['saytime']);
  199. if($r[isgood])
  200. {
  201. $r[saytime]='<font color=red>'.$r[saytime].'</font>';
  202. }
  203. //替换表情
  204. $saytext=RepPltextFace(stripSlashes($r['saytext']));
  205. ?>
  206. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'" id=pl<?=$r[plid]?>>
  207. <td height="25" valign="top"><div align="center">
  208. <input name="plid[]" type="checkbox" id="plid[]" value="<?=$r[plid]?>"<?=$checked?>><?=$checkednc?>
  209. </div></td>
  210. <td height="25" valign="top"><div align="center">
  211. <?=$r[username]?>
  212. </div></td>
  213. <td height="25" valign="top">
  214. <?=$saytext?>
  215. </td>
  216. <td height="25" valign="top"><div align="center">
  217. <?=$r['saytime']?>
  218. </div></td>
  219. <td height="25" valign="top"><div align="center">
  220. <?=$r[sayip]?>:<?=$r[eipport]?>
  221. </div></td>
  222. </tr>
  223. <?
  224. }
  225. db_close();
  226. $empire=null;
  227. ?>
  228. <tr bgcolor="#FFFFFF">
  229. <td height="25"> <div align="center">
  230. <input type=checkbox name=chkall value=on onclick=CheckAll(this.form)>
  231. </div></td>
  232. <td height="25" colspan="4"> <div align="right">
  233. <input type="submit" name="Submit" value="审核评论" onClick="document.form1.enews.value='CheckPl_all';document.form1.docheck.value='0';">
  234. &nbsp;&nbsp;&nbsp;
  235. <input type="submit" name="Submit" value="取消审核评论" onClick="document.form1.enews.value='CheckPl_all';document.form1.docheck.value='1';">
  236. &nbsp;&nbsp;&nbsp;
  237. <input type="submit" name="Submit3" value="推荐评论" onClick="document.form1.enews.value='DoGoodPl_all';document.form1.isgood.value='1';">
  238. &nbsp;&nbsp;&nbsp;
  239. <input type="submit" name="Submit4" value="取消推荐评论" onClick="document.form1.enews.value='DoGoodPl_all';document.form1.isgood.value='0';">
  240. &nbsp;&nbsp; &nbsp;
  241. <input type="submit" name="Submit" value="删除" onClick="document.form1.enews.value='DelPl_all';">
  242. <input name="enews" type="hidden" id="enews" value="DelPl_all">
  243. </div></td>
  244. </tr>
  245. <tr bgcolor="#FFFFFF">
  246. <td height="25">&nbsp; </td>
  247. <td height="25" colspan="4">
  248. <?=$returnpage?>
  249. </td>
  250. </tr>
  251. <tr bgcolor="#FFFFFF">
  252. <td height="25" colspan="5"><font color="#666666">说明:多选框为蓝色代表未审核评论,加粗网名为登陆会员,发布时间红色为推荐评论</font></td>
  253. </tr>
  254. </table>
  255. </form>
  256. </body>
  257. </html>