您现在的位置是:首页 > 教程 > dedecms教程dedecms教程
织梦火车采集器采集完文章并更新栏目页的方法
梁尉寒2023-09-11 23:38:49dedecms教程已有人查阅
导读打开文件 /dede/inc/inc_archives_functions.php1、在最后增加方法2、找到function GetUpdateTest() 方法,在 return $revalue;前调用上面新增方法。
打开文件 /dede/inc/inc_archives_functions.php
1、在最后增加方法
1、在最后增加方法
/*火车头采集自动更新主页*/
function MakeIndex()
{
global $dsql,$cfg_basedir,$cfg_templets_dir,$cfg_df_style;
require_once(DEDEINC.'/arc.partview.class.php');
$envs = $_sys_globals = array();
$envs['aid'] = 0;
$pv = new PartView();
$row = $pv->dsql->GetOne('SELECT * FROM `dede_homepageset`');
$templet = str_replace("{style}", $cfg_df_style, $row['templet']);
$homeFile = dirname(__FILE__).'/../'.$row['position'];
$homeFile = str_replace("//", "/", str_replace("\\", "/", $homeFile));
$fp = fopen($homeFile, 'w') or die("无法更新网站主页到:$homeFile 位置");
fclose($fp);
$tpl = $cfg_basedir.$cfg_templets_dir.'/'.$templet;
if(!file_exists($tpl))
{
$tpl = $cfg_basedir.$cfg_templets_dir.'/default/index.htm';
if(!file_exists($tpl)) exit("无法找到主页模板:$tpl ");
}
$GLOBALS['_arclistEnv'] = 'index';
$pv->SetTemplet($tpl);
$pv->SaveToHtml($homeFile);
$pv->Close();
}
/*火车头采集自动更新栏目*/
function MakeParentType($typeid)
{
global $dsql;
$typediarr = array();
array_push($typediarr,$typeid);
$row3 = $dsql->GetOne("Select reid,topid From `dede_arctype` where id=".$typeid);
if(!in_array($row3['reid'],$typediarr) and $row3['reid']!=0) array_push($typediarr,$row3['reid']);
if(!in_array($row3['topid'],$typediarr) and $row3['topid']!=0) array_push($typediarr,$row3['topid']);
require_once(DEDEDATA."/cache/inc_catalog_base.inc");
require_once(DEDEINC."/channelunit.func.php");
require_once(DEDEINC."/arc.listview.class.php");
foreach($typediarr as $typeid)
{
$lv = new ListView($typeid);
$lv->MakeHtml(1,$maxpagesize);
}
}
/*火车头采集自动更新上下篇*/
function MakePreNext($aid,$typeid)
{
global $dsql;
require_once(DEDEINC.'/arc.archives.class.php');
$aid = intval($aid);
$preRow = $dsql->GetOne("SELECT id FROM `dede_arctiny` WHERE id<$aid AND arcrank>-1 AND typeid='$typeid' ORDER BY id DESC");
$nextRow = $dsql->GetOne("SELECT id FROM `dede_arctiny` WHERE id>$aid AND arcrank>-1 AND typeid='$typeid' ORDER BY id ASC");
if(is_array($preRow))
{
$envs['aid'] = $preRow['id'];
$arc = new Archives($preRow['id']);
$arc->MakeHtml();
}
if(is_array($nextRow))
{
$envs['aid'] = $nextRow['id'];
$arc = new Archives($nextRow['id']);
$arc->MakeHtml();
}
}
2、找到function GetUpdateTest() 方法,在 return $revalue;前调用上面新增方法。
MakePreNext($arcID,$typeid);
MakeIndex();
MakeParentType($typeid);
return $revalue;
本文标签:
很赞哦! ()
相关文章
随机图文
-
dedecms织梦tag标签不支持大写字母的修改方法
dedecms默认情况下大写字母的tag标签点击无效,因为dedecms5.7版本的tag标签根本就不支持大写字母,所以我们需要对其进行修复,下面是具体的解决办法: -
织梦dedecms后台文档发布和对已发布文档修改空白的解决方法
今天在对后台的一个栏目进行文档发布的时候,突然出现了空白,编辑了一条已发布的文档也是空白,这就奇怪了。第一反应是可能后台的发布和编辑文件变动造成的,可是最 -
dede织梦自带的广告插件管理全站广告的实现方法
广告是网站的收入之一,初用dedecms程序的站长,对程序不太了解,或许不知道织梦本身自带有广告管理的功能,这个广告插件让我们能直接在后台增、删、改网站所有的广告,非常方便。 -
让dedecms文章内容中链接新窗口打开的方法
使用织梦模板的朋友肯定对链接默认本地打开非常烦恼,为什么?我来举例说明下:比如说在新添的文章内容里面输入www.ebingou.cn,织梦模板默认是在本地打开的
留言与评论 (共有 条评论) |