CheckCj.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../class/connect.php");
  4. require("../class/db_sql.php");
  5. require("../class/functions.php");
  6. require("../data/dbcache/class.php");
  7. require LoadLang("pub/fun.php");
  8. $link=db_connect();
  9. $empire=new mysqlquery();
  10. //验证用户
  11. $lur=is_login();
  12. $logininid=$lur['userid'];
  13. $loginin=$lur['username'];
  14. $loginrnd=$lur['rnd'];
  15. $loginlevel=$lur['groupid'];
  16. $loginadminstyleid=$lur['adminstyleid'];
  17. //ehash
  18. $ecms_hashur=hReturnEcmsHashStrAll();
  19. //验证权限
  20. CheckLevel($logininid,$loginin,$classid,"cj");
  21. $line=50;
  22. $page_line=12;
  23. $classid=(int)$_GET['classid'];
  24. $page=(int)$_GET['page'];
  25. $page=RepPIntvar($page);
  26. $start=0;
  27. $offset=$page*$line;
  28. //节点名称
  29. $cr=$empire->fetch1("select classname,newsclassid,tbname,hiddenload from {$dbtbpre}enewsinfoclass where classid='$classid'");
  30. $addwhere=" and checked=0";
  31. //显示已导入的信息
  32. if($cr['hiddenload'])
  33. {
  34. $addwhere="";
  35. }
  36. $query="select * from {$dbtbpre}ecms_infotmp_".$cr[tbname]." where classid='$classid'".$addwhere;
  37. $totalquery="select count(*) as total from {$dbtbpre}ecms_infotmp_".$cr[tbname]." where classid='$classid'".$addwhere;
  38. $num=$empire->gettotal($totalquery);
  39. $query.=" order by id desc limit $offset,$line";
  40. $sql=$empire->query($query);
  41. //栏目名称
  42. $newsclassid=$cr[newsclassid];
  43. $newsclassname=$class_r[$newsclassid][classname];
  44. $newsbclassname=$class_r[$class_r[$newsclassid][bclassid]][classname];
  45. $newsclass="<font color=red>".$newsbclassname."&nbsp;>&nbsp;".$newsclassname."</font>";
  46. $checked=" checked";
  47. $search="&classid=$classid".$ecms_hashur['ehref'];
  48. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  49. if($_GET['from'])
  50. {
  51. $listclasslink="ListPageInfoClass.php";
  52. }
  53. else
  54. {
  55. $listclasslink="ListInfoClass.php";
  56. }
  57. ?>
  58. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  59. <html>
  60. <head>
  61. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  62. <title>审核采集</title>
  63. <link href="adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  64. <script>
  65. function CheckAll(form)
  66. {
  67. for (var i=0;i<form.elements.length;i++)
  68. {
  69. var e = form.elements[i];
  70. if(e.name=='checked'||e.name=='uptime')
  71. {
  72. continue;
  73. }
  74. if (e.name != 'chkall')
  75. e.checked = form.chkall.checked;
  76. }
  77. }
  78. function LoadIn(obj)
  79. {
  80. var checkedval=0;
  81. var uptimeval=0;
  82. if(confirm("确认操作?"))
  83. {
  84. if(obj.checked.checked)
  85. {
  86. checkedval=1;
  87. }
  88. if(obj.uptime.checked)
  89. {
  90. uptimeval=1;
  91. }
  92. self.location.href='ecmscj.php?<?=$ecms_hashur['href']?>&enews=CjNewsIn_all&from=<?=RepPostStr($_GET['from'],1)?>&classid='+obj.classid.value+'&checked='+checkedval+'&uptime='+uptimeval;
  93. }
  94. }
  95. </script>
  96. </head>
  97. <body>
  98. <table width="100%" border="0" cellspacing="0" cellpadding="3">
  99. <tr>
  100. <td width="90%" height="25">位置:采集 &gt; <a href="<?=$listclasslink?><?=$ecms_hashur['whehref']?>">管理节点</a> &gt; <a href="CheckCj.php?classid=<?=$classid?>&from=<?=ehtmlspecialchars($_GET['from'])?><?=$ecms_hashur['ehref']?>">审核采集</a>
  101. &gt; 节点名称:
  102. <?=$cr[classname]?>
  103. &nbsp;(共<b><font color=red>
  104. <?=$num?>
  105. </font></b>条未入库记录) </td>
  106. <td width="10%"><div align="right" class="emenubutton">
  107. <input type="button" name="Submit6" value="数据更新中心" onclick="window.open('ReHtml/ChangeData.php<?=$ecms_hashur['whehref']?>#ReIfInfoHtml');">
  108. </div></td>
  109. </tr>
  110. <tr>
  111. <td height="25" colspan="2">入库栏目:
  112. <?=$newsclass?>
  113. </td>
  114. </tr>
  115. </table>
  116. <form name="listform" method="post" action="ecmscj.php" onsubmit="return confirm('确认操作?');">
  117. <?=$ecms_hashur['form']?>
  118. <input type=hidden name=from value="<?=ehtmlspecialchars($_GET['from'])?>">
  119. <input type=hidden name=classid value=<?=$classid?>>
  120. <input type=hidden name=enews value=DelCjNews_all>
  121. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  122. <tr class="header">
  123. <td width="3%"><div align="center"></div></td>
  124. <td width="7%" height="25"><div align="center">ID</div></td>
  125. <td width="38%" height="25"><div align="center">标题</div></td>
  126. <td width="14%" height="25"><div align="center">采集者</div></td>
  127. <td width="16%" height="25"><div align="center">采集时间</div></td>
  128. <td width="8%" height="25"><div align="center">采集地址</div></td>
  129. <td width="14%" height="25"><div align="center">操作</div></td>
  130. </tr>
  131. <?
  132. while($r=$empire->fetch($sql))
  133. {
  134. $r[title]=stripSlashes(sub($r[title],0,30,false));
  135. if($r[checked])
  136. {
  137. $tcolor="";
  138. }
  139. else
  140. {
  141. $tcolor=" bgcolor='#FFFFFF'";
  142. }
  143. ?>
  144. <tr<?=$tcolor?> id=news<?=$r[id]?>>
  145. <td><div align="center">
  146. <input name="id[]" type="checkbox" id="id[]" onclick="if(this.checked){news<?=$r[id]?>.style.backgroundColor='#DBEAF5';}else{news<?=$r[id]?>.style.backgroundColor='#ffffff';}" value="<?=$r[id]?>"<?=$checked?>>
  147. </div></td>
  148. <td height="25"><div align="center">
  149. <?=$r[id]?>
  150. </div></td>
  151. <td height="25"><div align="left"><a href="EditCjNews.php?classid=<?=$classid?>&id=<?=$r[id]?>&enews=EditCjNews&from=<?=ehtmlspecialchars($_GET['from'])?><?=$ecms_hashur['ehref']?>" title="查看">
  152. <?=$r[title]?>
  153. </a></div></td>
  154. <td height="25"><div align="center">
  155. <?=$r[username]?>
  156. </div></td>
  157. <td height="25"><div align="center">
  158. <?=$r[tmptime]?>
  159. </div></td>
  160. <td height="25"><div align="center"><a href="<?=$r[oldurl]?>" target="_blank">查看地址</a></div></td>
  161. <td height="25"><div align="center"><a href="EditCjNews.php?classid=<?=$classid?>&id=<?=$r[id]?>&enews=EditCjNews&from=<?=ehtmlspecialchars($_GET['from'])?><?=$ecms_hashur['ehref']?>">修改</a>
  162. | <a href="ecmscj.php?enews=DelCjNews&classid=<?=$classid?>&id=<?=$r[id]?>&from<?=ehtmlspecialchars($_GET['from'])?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a></div></td>
  163. </tr>
  164. <?
  165. }
  166. db_close();
  167. $empire=null;
  168. ?>
  169. <tr bgcolor="#FFFFFF">
  170. <td><div align="center">
  171. <input type=checkbox name=chkall value=on onclick=CheckAll(this.form) title="全选">
  172. </div></td>
  173. <td height="25" colspan="6"><div align="right">
  174. <input name="checked" type="checkbox" id="checked" value="1"<?=$checked?>>
  175. 直接审核
  176. <input name="uptime" type="checkbox" id="uptime" value="1">
  177. 发布时间设为入库时间
  178. <input type="submit" name="Submit32" value="入库选中" onclick="document.listform.enews.value='CjNewsIn';">
  179. &nbsp;&nbsp;
  180. <input type="button" name="Submit" value="入库全部信息" onclick="return LoadIn(document.listform)">
  181. &nbsp;&nbsp;
  182. <input type="submit" name="Submit3" value="删除" onclick="document.listform.enews.value='DelCjNews_all';">
  183. &nbsp;&nbsp; </div></td>
  184. </tr>
  185. <tr bgcolor="#FFFFFF">
  186. <td height="25">
  187. </td>
  188. <td height="25" colspan="6"><?=$returnpage?></td>
  189. </tr>
  190. <tr bgcolor="#FFFFFF">
  191. <td height="25" colspan="7"><font color="#666666">说明:已入库的信息为蓝色背景;入库不生成html页面,需要到数据更新刷新当天信息.</font></td>
  192. </tr>
  193. </table>
  194. </form>
  195. </body>
  196. </html>