ListAllPl.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  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. //验证权限
  21. CheckLevel($logininid,$loginin,$classid,"pl");
  22. $search='';
  23. $start=0;
  24. $page=(int)$_GET['page'];
  25. $page=RepPIntvar($page);
  26. //每页显示
  27. $line=(int)$_GET['line'];
  28. if($line>0&&$line<1000)
  29. {
  30. $search.='&line='.$line;
  31. }
  32. else
  33. {
  34. $line=30;
  35. }
  36. $page_line=12;
  37. $offset=$page*$line;
  38. $search.=$ecms_hashur['ehref'];
  39. $add='';
  40. $and='';
  41. //评论表
  42. $restb=(int)$_GET['restb'];
  43. if($restb)
  44. {
  45. if(!strstr($public_r['pldatatbs'],','.$restb.','))
  46. {
  47. printerror('ErrorUrl','');
  48. }
  49. $search.='&restb='.$restb;
  50. }
  51. else
  52. {
  53. $restb=$public_r['pldeftb'];
  54. }
  55. //单个
  56. $id=(int)$_GET['id'];
  57. if($id)
  58. {
  59. $add.=" where id='$id'";
  60. $search.="&id=$id";
  61. }
  62. //专题ID
  63. $ztid=(int)$_GET['ztid'];
  64. if($ztid)
  65. {
  66. $sztr=$empire->fetch1("select ztid,restb from {$dbtbpre}enewszt where ztid='$ztid'");
  67. if($sztr['ztid'])
  68. {
  69. $and=empty($add)?' where ':' and ';
  70. $add.=$and."pubid='-$ztid'";
  71. $restb=$sztr['restb'];
  72. }
  73. $search.="&ztid=$ztid";
  74. }
  75. //单个
  76. $classid=(int)$_GET['classid'];
  77. if($classid)
  78. {
  79. $and=empty($add)?' where ':' and ';
  80. if($class_r[$classid][islast])
  81. {
  82. $add.=$and."classid='$classid'";
  83. }
  84. else
  85. {
  86. $add.=$and.'('.ReturnClass($class_r[$classid][sonclass]).')';
  87. }
  88. $search.="&classid=$classid";
  89. }
  90. //审核
  91. $checked=(int)$_GET['checked'];
  92. if($checked)
  93. {
  94. $and=empty($add)?' where ':' and ';
  95. $add.=$and."checked='".($checked==1?0:1)."'";
  96. $search.="&checked=$checked";
  97. }
  98. //推荐
  99. $isgood=(int)$_GET['isgood'];
  100. if($isgood)
  101. {
  102. $and=empty($add)?' where ':' and ';
  103. $add.=$and."isgood=1";
  104. $search.="&isgood=$isgood";
  105. }
  106. //搜索
  107. $keyboard=RepPostVar2($_GET['keyboard']);
  108. if($keyboard)
  109. {
  110. $and=empty($add)?' where ':' and ';
  111. $show=(int)$_GET['show'];
  112. if($show==1)//发表者
  113. {
  114. $add.=$and."(username like '%".$keyboard."%')";
  115. }
  116. elseif($show==2)//ip
  117. {
  118. $add.=$and."(sayip like '%".$keyboard."%')";
  119. }
  120. elseif($show==3)//内容
  121. {
  122. $add.=$and."(saytext like '%".$keyboard."%')";
  123. }
  124. $search.="&keyboard=$keyboard&show=$show";
  125. }
  126. $totalquery="select count(*) as total from {$dbtbpre}enewspl_".$restb.$add;
  127. $query="select plid,username,saytime,sayip,id,classid,checked,zcnum,fdnum,userid,isgood,saytext,pubid,eipport from {$dbtbpre}enewspl_".$restb.$add;
  128. //取得总条数
  129. $totalnum=(int)$_GET['totalnum'];
  130. if($totalnum>0)
  131. {
  132. $num=$totalnum;
  133. }
  134. else
  135. {
  136. $num=$empire->gettotal($totalquery);
  137. }
  138. $query.=" order by plid desc limit $offset,$line";
  139. $sql=$empire->query($query);
  140. $search.='&totalnum='.$num;
  141. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  142. //位置
  143. $url="<a href=ListAllPl.php?restb=$restb".$ecms_hashur['ehref'].">管理评论 - 分表".$restb."</a>";
  144. ?>
  145. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  146. <html>
  147. <head>
  148. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  149. <title>管理评论</title>
  150. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  151. <script>
  152. function CheckAll(form)
  153. {
  154. for (var i=0;i<form.elements.length;i++)
  155. {
  156. var e = form.elements[i];
  157. if (e.name != 'chkall')
  158. e.checked = form.chkall.checked;
  159. }
  160. }
  161. </script>
  162. <style>
  163. .ecomment {margin:0;padding:0;}
  164. .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;}
  165. .ecommentauthor {float:left; color:#F96; font-weight:bold;}
  166. .ecommenttext {clear:left;margin:0;padding:0;}
  167. </style>
  168. </head>
  169. <body>
  170. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  171. <tr>
  172. <td width="38%">位置:
  173. <?=$url?>
  174. </td>
  175. <td width="62%"><div align="right" class="emenubutton">
  176. <input type="button" name="Submit5" value="管理评论表情" onclick="self.location.href='plface.php<?=$ecms_hashur['whehref']?>';">&nbsp;&nbsp;&nbsp;
  177. <input type="button" name="Submit5" value="设置评论参数" onclick="self.location.href='SetPl.php<?=$ecms_hashur['whehref']?>';">&nbsp;&nbsp;&nbsp;
  178. <input type="button" name="Submit5" value="自定义评论字段" onclick="self.location.href='ListPlF.php<?=$ecms_hashur['whehref']?>';">&nbsp;&nbsp;&nbsp;
  179. <input type="button" name="Submit5" value="管理评论分表" onclick="self.location.href='ListPlDataTable.php<?=$ecms_hashur['whehref']?>';">&nbsp;&nbsp;&nbsp;
  180. <input type="button" name="Submit52" value="批量删除评论" onclick="self.location.href='DelMorePl.php<?=$ecms_hashur['whehref']?>';">
  181. </div></td>
  182. </tr>
  183. </table>
  184. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  185. <form name="form2" method="get" action="ListAllPl.php">
  186. <?=$ecms_hashur['eform']?>
  187. <tr>
  188. <td>信息ID:
  189. <input name="id" type="text" id="id" value="<?=$id?>" size="6">
  190. 专题ID:
  191. <input name="ztid" type="text" id="ztid" value="<?=$ztid?>" size="6">
  192. 关键字:
  193. <input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>">
  194. <select name="show" id="show">
  195. <option value="1"<?=$show==1?' selected':''?>>发表者</option>
  196. <option value="2"<?=$show==2?' selected':''?>>IP地址</option>
  197. <option value="3"<?=$show==3?' selected':''?>>评论内容</option>
  198. </select>
  199. <select name="checked" id="checked">
  200. <option value="0"<?=$checked==0?' selected':''?>>不限</option>
  201. <option value="1"<?=$checked==1?' selected':''?>>已审核</option>
  202. <option value="2"<?=$checked==2?' selected':''?>>未审核</option>
  203. </select>
  204. <span id="listplclassnav"></span>
  205. <input name="isgood" type="checkbox" id="isgood" value="1"<?=$isgood==1?' checked':''?>>
  206. 推荐
  207. <select name="line" id="line">
  208. <option value="30"<?=$line==30?' selected':''?>>每页30条</option>
  209. <option value="50"<?=$line==50?' selected':''?>>每页50条</option>
  210. <option value="100"<?=$line==100?' selected':''?>>每页100条</option>
  211. </select>
  212. &nbsp;
  213. <input type="submit" name="Submit2" value="搜索评论">
  214. <input type=hidden name=restb value=<?=$restb?>>
  215. </td>
  216. </tr>
  217. <tr>
  218. <td> </td>
  219. </tr>
  220. </form>
  221. </table>
  222. <form name="form1" method="post" action="../ecmspl.php" onsubmit="return confirm('确认要操作?');">
  223. <?=$ecms_hashur['form']?>
  224. <input type=hidden name=classid value=<?=$classid?>>
  225. <input type=hidden name=id value=<?=$id?>>
  226. <input type=hidden name=restb value=<?=$restb?>>
  227. <input name="isgood" type="hidden" id="isgood" value="1">
  228. <input name="docheck" type="hidden" id="docheck" value="0">
  229. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder" style="WORD-BREAK: break-all; WORD-WRAP: break-word">
  230. <tr class="header">
  231. <td width="4%" height="25"><div align="center">选择</div></td>
  232. <td width="21%" height="25"><div align="center">网名</div></td>
  233. <td width="51%" height="25"><div align="center">评论内容(双击内容,进入信息评论页)</div></td>
  234. <td width="24%" height="25"><div align="center">所属信息</div></td>
  235. </tr>
  236. <?php
  237. while($r=$empire->fetch($sql))
  238. {
  239. if(!empty($r[checked]))
  240. {
  241. $checked=" title='未审核' style='background:#99C4E3'";
  242. $checkednc='<br>NC';
  243. }
  244. else
  245. {
  246. $checked="";
  247. $checkednc='';
  248. }
  249. if($r['userid'])
  250. {
  251. $r['username']="<a href='../member/AddMember.php?enews=EditMember&userid=$r[userid]".$ecms_hashur['ehref']."' target='_blank'><b>$r[username]</b></a>";
  252. }
  253. if(empty($r['username']))
  254. {
  255. $r['username']='匿名';
  256. }
  257. $r['saytime']=date('Y-m-d H:i:s',$r['saytime']);
  258. if($r[isgood])
  259. {
  260. $r[saytime]='<font color=red>'.$r[saytime].'</font>';
  261. }
  262. //替换表情
  263. $saytext=RepPltextFace(stripSlashes($r['saytext']));
  264. //专题
  265. $title='';
  266. if($r['pubid']<0)
  267. {
  268. $ztr['ztid']=$r['classid'];
  269. $titleurl=sys_ReturnBqZtname($ztr);
  270. $title="<a href='$titleurl' target='_blank'>".$class_zr[$r['classid']]['ztname']."</a>";
  271. $pagefunr=eReturnRewritePlUrl($r['classid'],0,'dozt',0,0,1);
  272. $plurl=$pagefunr['pageurl'];
  273. }
  274. else//信息
  275. {
  276. if($class_r[$r[classid]][tbname])
  277. {
  278. $index_r=$empire->fetch1("select checked from {$dbtbpre}ecms_".$class_r[$r[classid]][tbname]."_index where id='$r[id]' limit 1");
  279. //返回表
  280. $infotb=ReturnInfoMainTbname($class_r[$r[classid]][tbname],$index_r['checked']);
  281. $infor=$empire->fetch1("select isurl,titleurl,classid,id,title from ".$infotb." where id='$r[id]' limit 1");
  282. $titleurl=sys_ReturnBqTitleLink($infor);
  283. $title="<a href='$titleurl' target='_blank'>".stripSlashes($infor[title])."</a>";
  284. }
  285. $pagefunr=eReturnRewritePlUrl($r['classid'],$r['id'],'doinfo',0,0,1);
  286. $plurl=$pagefunr['pageurl'];
  287. }
  288. ?>
  289. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'" id=pl<?=$r[plid]?>>
  290. <td height="25" valign="top"> <div align="center">
  291. <input name="plid[]" type="checkbox" id="plid" value="<?=$r[plid]?>"<?=$checked?>><?=$checkednc?>
  292. </div></td>
  293. <td height="25" valign="top"><div align="center">
  294. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  295. <tr>
  296. <td width="20%">网名</td>
  297. <td width="80%">
  298. <?=$r[username]?>
  299. </td>
  300. </tr>
  301. <tr>
  302. <td>IP</td>
  303. <td>
  304. <?=$r[sayip]?>:<?=$r[eipport]?>
  305. </td>
  306. </tr>
  307. <tr>
  308. <td>时间</td>
  309. <td>
  310. <?=$r['saytime']?>
  311. </td>
  312. </tr>
  313. </table>
  314. </div></td>
  315. <td height="25" valign="top" ondblclick="window.open('<?=$plurl?>');">
  316. <?=$saytext?>
  317. </td>
  318. <td height="25"><div align="center">
  319. <?=$title?>
  320. </div></td>
  321. </tr>
  322. <?php
  323. }
  324. db_close();
  325. $empire=null;
  326. ?>
  327. <tr bgcolor="#FFFFFF">
  328. <td height="25"> <div align="center">
  329. <input type=checkbox name=chkall value=on onclick=CheckAll(this.form)>
  330. </div></td>
  331. <td height="25" colspan="3"> <div align="right">
  332. <input type="submit" name="Submit" value="审核评论" onClick="document.form1.enews.value='CheckPl_all';document.form1.docheck.value='0';">
  333. &nbsp;&nbsp;&nbsp;
  334. <input type="submit" name="Submit" value="取消审核评论" onClick="document.form1.enews.value='CheckPl_all';document.form1.docheck.value='1';">
  335. &nbsp;&nbsp;&nbsp;
  336. <input type="submit" name="Submit3" value="推荐评论" onClick="document.form1.enews.value='DoGoodPl_all';document.form1.isgood.value='1';">
  337. &nbsp;&nbsp;&nbsp;
  338. <input type="submit" name="Submit4" value="取消推荐评论" onClick="document.form1.enews.value='DoGoodPl_all';document.form1.isgood.value='0';">
  339. &nbsp;&nbsp;&nbsp;
  340. <input type="submit" name="Submit" value="删除" onClick="document.form1.enews.value='DelPl_all';">
  341. <input name="enews" type="hidden" id="enews" value="DelPl_all">
  342. </div></td>
  343. </tr>
  344. <tr bgcolor="#FFFFFF">
  345. <td height="25">&nbsp;</td>
  346. <td height="25" colspan="3">
  347. <?=$returnpage?>
  348. </td>
  349. </tr>
  350. <tr bgcolor="#FFFFFF">
  351. <td height="25" colspan="4"><font color="#666666">说明:多选框为蓝色代表未审核评论,加粗网名为登陆会员,发布时间红色为推荐评论</font></td>
  352. </tr>
  353. </table>
  354. </form>
  355. <IFRAME frameBorder="0" id="showclassnav" name="showclassnav" scrolling="no" src="../ShowClassNav.php?ecms=6&classid=<?=$classid?><?=$ecms_hashur['ehref']?>" style="HEIGHT:0;VISIBILITY:inherit;WIDTH:0;Z-INDEX:1"></IFRAME>
  356. </body>
  357. </html>