dedecms5.7文章二次开发实现阅读全文功能的方法

资源来源网络,如需授权,请更换源码,模块仅供学习,如需商用请购买正版授权,本栏目不提供技术服务,积分不够请签到!如何签到?系统升级暂停签到,恢复关注公告!
如遇下载链接蓝奏网盘打不开lanzous替换成lanzoux尝试! 广告

本文实例讲述了dedecms5.7文章二次开发实现阅读全文功能的方法。分享给大家供大家参考。具体分析如下:

阅读全文功能其实在很多的流行站点都有的,比如网易,新浪等,随着文章内容的增加,当一个页面有多个分页的时候,就会显示出这个“在本页阅读全文”的链接,点击这个链接之后出现的,将是这篇文章以没有分页出现的型式,那么在dedecms5.7如何在文章内容页添加阅读全文功能呢?

这个阅读全文有什么用呢?说白了,也就是提高用户体验,下面让我们看看,怎么简单现实这个功能.

修改文件:include/arc.archives.class.php

注意:做任何修改前都要备份好原文件.

领先步:打开include/arc.archives.class.php

文件查找://issystem==-1

往下 大概 145行 找到:
复制代码
代码如下:
$this->Fields[‘userip’] = $this->addTableRow[‘userip’];

在下面一行添加:
复制代码
代码如下:
$this->Fields[‘body2’] = $this->addTableRow[‘body’];

第二步查找:
复制代码
代码如下:
$this->dsql->ExecuteNoneQuery(“Update `dede_archives` SET ismake=1 WHERE id='”.$this->ArcID.”‘”);

在上一行添加以下代码:

复制代码
代码如下:
//阅读全文开始
if($this->TotalPage > 1) {
//用正则匹配把分页符去掉
$this->Fields[‘body2’] = preg_replace(‘/# p#副标题# e#/U’, ”,$this->Fields[‘body2’]);
$this->SplitFields = explode(“#p2222#”,$this->Fields[‘body2’]);
$this->Fields[‘tmptitle’] = (emptyempty($this->Fields[‘tmptitle’]) ? $this->Fields[‘title’] : $this->Fields[‘tmptitle’]);
$this->Fields[‘title’] = $this->Fields[‘tmptitle’];
$this->TotalPage = count($this->SplitFields);
$this->Fields[‘totalpage’] = $this->TotalPage;
$TRUEfilenameall = $this->GetTruePath().$fileFirst.”_all.”.$this->ShortName;
$this->ParseDMFields(1,0);
$this->dtp->SaveTo($TRUEfilenameall);

if($cfg_remote_site==’Y’ && $isremote == 1)
{

//分析远程文件路径
$remotefile = str_replace(DEDEROOT, ”, $TRUEfilename);
$localfile = ‘..’.$remotefile;
//创建远程文件夹
$remotedir = preg_replace(“#[^\/]*\.html#”, ”, $remotefile);
$this->ftp->rmkdir($remotedir);
$this->ftp->upload($localfile, $remotefile, ‘ascii’);
}
}
//阅读全文结束

第三步:查找 获得静态页面分页列表,代码如下:

复制代码
代码如下:
/**
* 获得静态页面分页列表
*
* @access public
* @param int $totalPage 总页数
* @param int $nowPage 当前页数
* @param int $aid 文档id
* @return string
*/
function GetPagebreak($totalPage, $nowPage, $aid)
{
if($totalPage==1)
{
return “”;
}
//$PageList = “<li><a>共”.$totalPage.”页: </a></li>”;
$PageList = “”;
$nPage = $nowPage-1;
$lPage = $nowPage+1;
if($nowPage==1)
{
$PageList.=”<a href=’javascript:void(0);’><</a>”;
}
else
{
if($nPage==1)
{
$PageList.=”<a href='”.$this->NameFirst.”.”.$this->ShortName.”‘ target=’_self’><</a>”;
}
else
{
$PageList.=”<a href='”.$this->NameFirst.”_”.$nPage.”.”.$this->ShortName.”‘ target=’_self’><</a>”;
}
}
for($i=1;$i<=$totalPage;$i++)
{
if($i==1)
{
if($nowPage!=1)
{
$PageList.=”<a href='”.$this->NameFirst.”.”.$this->ShortName.”‘ target=’_self’>1</a>”;
}
else
{
$PageList.=”<a class=\”here\” href=’javascript:void(0);’ target=’_self’>1</a>”;
}
}
else
{
$n = $i;
if($nowPage!=$i)
{
$PageList.=”<a href='”.$this->NameFirst.”_”.$i.”.”.$this->ShortName.”‘ target=’_self’>”.$n.”</a>”;
}
else
{
$PageList.=”<a class=\”here\” href=’javascript:void(0);’ target=’_self’>{$n}</a>”;
}
}
}
if($lPage <= $totalPage)
{
$PageList.=”<a href='”.$this->NameFirst.”_”.$lPage.”.”.$this->ShortName.”‘ target=’_self’>></a>”;
}
else
{
$PageList.= “<a href=’javascript:void(0);’>></a>”;
}
$PageList.= “<a href='”.$this->NameFirst.”_all.”.$this->ShortName.”‘>阅读全文</a>”;
return $PageList;
}

也就是在return $PageList 上一行添加了一行代码:

复制代码
代码如下:
$PageList.= “<a href='”.$this->NameFirst.”_all.”.$this->ShortName.”‘>阅读全文</a>”;

修改完成后,保存文件,更新一下页面就可以看到效果了.

希望本文所述对大家的dedecms建站有所帮助。

©下载资源版权归作者所有;本站所有资源均来源于网络,仅供学习使用,请支持正版!
风格酷模板网 » dedecms5.7文章二次开发实现阅读全文功能的方法
NOTICE:【咨询风格酷】客服QQ:1131734965
NOTICE:【咨询风格酷】客服微信:wwwxmamnet
NOTICE:【风格酷模板网②群】QQ群:288678775
☉免责声明:本站所有模板均来自用户分享和网络收集,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服,我们核实后会立即删除。
☉如果源码网盘地址失效!或有其他问题,请点我报错,谢谢合作!
☉人民币与积分汇率为1比10,即1元=10积分.有任何疑问请联系客服
☉如有其他问题,请加网站客服QQ(1131734965)进行交流。
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
☉源码、模板等资源会随着技术、环境的升级而存在部分问题,还请慎重选择。

发表评论

风格酷模板网www.xmam.net分享优质网站模板

立即查看 了解详情