技术文摘

帝国CMS后台管理采集节点界面显示未入库的信息数

作者:雨祺   发表于:
浏览:55次    字数:1153  原创
级别: 站长   总稿: 69 篇,  月稿: 0
帝国CMS论坛某坛友提问到:在管理采集节点界面,审核采集按钮后能否显示未入库的信息数?(在审核采集后面显示未入库的文章数量,方便了解哪些节点下还有多少篇未入库的文章。)。其实呢,这个很简单的,下面开始讲解解决的方法,让帝国CMS后台管理采集节点界面显示未入库的信息数。方法如下:

打开/e/admin/ListInfoClass.php
搜索$classurl=sys_ReturnBqClassname($getcurlr,9);
在后面添加
  1. //节点名称 
  2. $cr=$empire->fetch1("select classname,newsclassid,tbname,hiddenload from {$dbtbpre}enewsinfoclass where classid='".$r[classid]."'"); 
  3.  $addwhere=" and checked=0"
  4. //显示已导入的信息 
  5.  if($cr['hiddenload']) 
  6.  { 
  7.  $addwhere=""
  8.  } 
  9. $query="select * from {$dbtbpre}ecms_infotmp_".$cr[tbname]." where classid='".$r[classid]."'".$addwhere; 
  10.  $totalquery="select count(*) as total from {$dbtbpre}ecms_infotmp_".$cr[tbname]." where classid='".$r[classid]."'".$addwhere; 
  11. $num=$empire->gettotal($totalquery); 
  1. 搜索<td height=25><div align=center><a href=CheckCj.php?classid=".$r[classid].$ecms_hashur['ehref'].">".$fun_r['CheckCj']."</a></div></td> 
  1. 改成<td height=25><div align=center><a href=CheckCj.php?classid=".$r[classid].$ecms_hashur['ehref'].">".$fun_r['CheckCj']."(<font color=red> [".$num."]</font></b>条未入库) </a></div></td> 
管理采集节点界面(分页)也是也一样,打开/e/admin/ListPageInfoClass.php
搜索$classurl=sys_ReturnBqClassname($getcurlr,9);
在后面添加
  1. //节点名称 
  2. $cr=$empire->fetch1("select classname,newsclassid,tbname,hiddenload from {$dbtbpre}enewsinfoclass where classid='".$r[classid]."'"); 
  3. $addwhere=" and checked=0"
  4. //显示已导入的信息 
  5. if($cr['hiddenload']) 
  6. $addwhere=""
  7. $query="select * from {$dbtbpre}ecms_infotmp_".$cr[tbname]." where classid='".$r[classid]."'".$addwhere; 
  8. $totalquery="select count(*) as total from {$dbtbpre}ecms_infotmp_".$cr[tbname]." where classid='".$r[classid]."'".$addwhere; 
  9. $num=$empire->gettotal($totalquery); 
  1. 搜索<td height="25"> <div align="center"><a href='CheckCj.php?classid=<?=$r[classid]?>&from=1<?=$ecms_hashur['ehref']?>'
  2.           <?=$fun_r['CheckCj']?></a></div></td> 
  1. 改成<td height="25"> <div align="center"><a href='CheckCj.php?classid=<?=$r[classid]?>&from=1<?=$ecms_hashur['ehref']?>'
  2.           <?=$fun_r['CheckCj']?> 
  3.           (<font color=red> [<?=$num?>]</font></b>条未入库)</a></div></td> 

 

【审核人:站长】

收藏   加好友   生成海报   分享
点赞(0)
打赏
Tags: CMS 帝国CMS 帝国

发布者资料

热门文章

技术文摘

查看更多技术文摘
首页
栏目
搜索
会员
投稿