找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1356|回复: 0

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

[复制链接]
发表于 2018-6-24 09:17:25 | 显示全部楼层 |阅读模式 来自 中国–河南–新乡
本文实例讲述了dedecms5.7文章二次开发实现阅读全文功能的方法。分享给大家供大家参考。具体分析如下:
阅读全文功能其实在很多的流行站点都有的,比如网易,新浪等,随着文章内容的增加,当一个页面有多个分页的时候,就会显示出这个“在本页阅读全文”的链接,点击这个链接之后出现的,将是这篇文章以没有分页出现的型式,那么在dedecms5.7如何在文章内容页添加阅读全文功能呢?
这个阅读全文有什么用呢?说白了,也就是提高用户体验,下面让我们看看,怎么简单现实这个功能.
修改文件:include/arc.archives.class.php
注意:做任何修改前都要备份好原文件.
第一步:打开include/arc.archives.class.php
文件查找://issystem==-1
往下 大概 145行 找到:
代码如下:
  1. $this->Fields['userip'] = $this->addTableRow['userip'];
复制代码

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

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

在上一行添加以下代码:

代码如下:
  1. //阅读全文开始
  2. if($this->TotalPage > 1) {
  3. //用正则匹配把分页符去掉
  4. $this->Fields['body2'] = preg_replace('/# p#副标题# e#/U', '',$this->Fields['body2']);
  5. $this->SplitFields = explode("#p2222#",$this->Fields['body2']);
  6. $this->Fields['tmptitle'] = (emptyempty($this->Fields['tmptitle']) ? $this->Fields['title'] : $this->Fields['tmptitle']);
  7. $this->Fields['title'] = $this->Fields['tmptitle'];
  8. $this->TotalPage = count($this->SplitFields);
  9. $this->Fields['totalpage'] = $this->TotalPage;
  10. $TRUEfilenameall = $this->GetTruePath().$fileFirst."_all.".$this->ShortName;
  11. $this->ParseDMFields(1,0);
  12. $this->dtp->SaveTo($TRUEfilenameall);

  13. if($cfg_remote_site=='Y' && $isremote == 1)
  14. {

  15. //分析远程文件路径
  16. $remotefile = str_replace(DEDEROOT, '', $TRUEfilename);
  17. $localfile = '..'.$remotefile;
  18. //创建远程文件夹
  19. $remotedir = preg_replace("#[^\/]*\.html#", '', $remotefile);
  20. $this->ftp->rmkdir($remotedir);
  21. $this->ftp->upload($localfile, $remotefile, 'ascii');
  22. }
  23. }
  24. //阅读全文结束
复制代码

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

代码如下:
  1. /**
  2. * 获得静态页面分页列表
  3. *
  4. * @access public
  5. * @param int $totalPage 总页数
  6. * @param int $nowPage 当前页数
  7. * @param int $aid 文档id
  8. * @return string
  9. */
  10. function GetPagebreak($totalPage, $nowPage, $aid)
  11. {
  12. if($totalPage==1)
  13. {
  14. return "";
  15. }
  16. //$PageList = "<li><a>共".$totalPage."页: </a></li>";
  17. $PageList = "";
  18. $nPage = $nowPage-1;
  19. $lPage = $nowPage+1;
  20. if($nowPage==1)
  21. {
  22. $PageList.="<a href='javascript:void(0);'><</a>";
  23. }
  24. else
  25. {
  26. if($nPage==1)
  27. {
  28. $PageList.="<a href='".$this->NameFirst.".".$this->ShortName."' target='_self'><</a>";
  29. }
  30. else
  31. {
  32. $PageList.="<a href='".$this->NameFirst."_".$nPage.".".$this->ShortName."' target='_self'><</a>";
  33. }
  34. }
  35. for($i=1;$i<=$totalPage;$i++)
  36. {
  37. if($i==1)
  38. {
  39. if($nowPage!=1)
  40. {
  41. $PageList.="<a href='".$this->NameFirst.".".$this->ShortName."' target='_self'>1</a>";
  42. }
  43. else
  44. {
  45. $PageList.="<a class="here" href='javascript:void(0);' target='_self'>1</a>";
  46. }
  47. }
  48. else
  49. {
  50. $n = $i;
  51. if($nowPage!=$i)
  52. {
  53. $PageList.="<a href='".$this->NameFirst."_".$i.".".$this->ShortName."' target='_self'>".$n."</a>";
  54. }
  55. else
  56. {
  57. $PageList.="<a class="here" href='javascript:void(0);' target='_self'>{$n}</a>";
  58. }
  59. }
  60. }
  61. if($lPage <= $totalPage)
  62. {
  63. $PageList.="<a href='".$this->NameFirst."_".$lPage.".".$this->ShortName."' target='_self'>></a>";
  64. }
  65. else
  66. {
  67. $PageList.= "<a href='javascript:void(0);'>></a>";
  68. }
  69. $PageList.= "<a href='".$this->NameFirst."_all.".$this->ShortName."'>阅读全文</a>";
  70. return $PageList;
  71. }
复制代码

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

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

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

发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;

如何回报帮助你解决问题的坛友,好办法就是点击帖子下方的评分按钮给对方加【金币】不会扣除自己的积分,做一个热心并受欢迎的人!

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则 需要先绑定手机号

关闭

站长推荐上一条 /1 下一条

QQ|侵权投诉|广告报价|手机版|小黑屋|西部数码代理|飘仙建站论坛 ( 豫ICP备2022021143号-1 )

GMT+8, 2025-1-10 16:02 , Processed in 0.048461 second(s), 9 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

快速回复 返回顶部 返回列表