ListPl.php 9.4 KB

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