首页站内杂志技术文摘
文章内容页

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

  • 作者:雨祺
  • 来源: 原创
  • 发表于2024-09-08 23:33:41
  • 被阅读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> 

     
    【审核人:站长】

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

        本文链接:https://www.meiweny.cn/zazhi/zhongwangjiaocheng/1117.html

        赞一下

        深度阅读

        • 您也可以注册成为美文苑的作者,发表您的原创作品、分享您的心情!

        阅读记录

          关注美文苑