Dedecms v5.7实现点击图片进入下一页详解
发布:smiling 来源: PHP粉丝网 添加日期:2014-03-12 11:27:41 浏览: 评论:0
现在有很多友利用dedecms来做图片站,那么图片站有一个特点就是点击当前图片自动进行下一页,下面我来给大家介绍Dedecms v5.7实现点击图片进入下一页方法,有需要的同学可参考.
今天在弄一个图片站的时候发现别人的网站都可以实现点击一张图片直接进入到下一页中,于是百度搜索了一下,发现个方法,经过测试可行.
按以下五个步骤进行修改就行了,修改 include/arc.archives.class.php.
1.查找“//解析模板,对内容里的变动进行赋值”字段,在这段话上面添加以下代码:
- function ClickPicNext($ismake=1,$aid,&$body)
- {
- global $cfg_rewrite;
- if($this->NowPage!=$this->TotalPage)
- {
- $lPage=$this->NowPage+1;
- if($ismake=0)
- {
- $body=preg_replace(“/<(img|IMG)(.*)(src|SRC)=["|'| ]{0,}((.*)>)/isU”,”点击图片,进入下一页
$this->NameFirst.”_”.$lPage.”.”.$this->ShortName.”‘>”.”${0}”.””,$body);- }
- else
- {
- //静态页
- $PageList=”$this->NameFirst.”_”.$lPage.”.”.$this->ShortName.”‘>”.”${0}”.””;
- //动态页
- //$PageList=””.”${0}”.””;
- if($cfg_rewrite == ‘Y’)
- {
- $PageList = str_replace(“.php?aid=”,”-”,$PageList);
- $PageList = preg_replace(“/&pageno=(d+)/i”,’-\1.html’,$PageList);
- }
- $body=preg_replace(“/<(img|IMG)(.*)(src|SRC)=["|'| ]{0,}((.*)>)/isU”,$PageList,$body);
- }
- }
- else
- {
- $body=preg_replace(“/<(img|IMG)(.*)(src|SRC)=["|'| ]{0,}((.*)>)/isU”,$this->GetPreNext(‘imgnext’),$body);
- }
- return $body;
- }
2.查找$this->Fields[$this->SplitPageField] = $this->SplitFields[$pageNo - 1];在其下面添加:
- if($ClickPicNext){
- $this->Fields[$this->SplitPageField]=$this->Fields[$this->SplitPageField];
- }else{
- $this->Fields[$this->SplitPageField]=$this->ClickPicNext($ismake,$this->Fields['id'],$this->Fields[$this->SplitPageField]);
- }
3.查找$this->PreNext['next'] = “下一篇:{$nextRow['title']} “;在其下面添加:
$this->PreNext['imgnext'] =””.”${0}”.””;
4.查找$this->PreNext['next'] = “下一篇:没有了 “;在其下面添加
$this->PreNext['imgnext'] =”${0}”;
5.查找如下代码:
- else if($gtype==’next’)
- {
- $rs = $this->PreNext['next'];
- }
在其下面添加如下代码:
- else if($gtype==’imgnext’)
- {
- $rs = $this->PreNext['imgnext'];
- }
Tags: Dedecms v5 7 进入下一页
相关文章
- ·dedecms漏洞防护(2013-11-15)
- ·DedeCMS Error: (PHP 5.3 and above) Please set request_or (2013-11-15)
- ·dedecms文章内容页中的收藏功能收藏的文章路径错误问题解决(2013-11-15)
- ·给织梦DedeCMS文章标题增加自动加长尾关键词的方法(2013-11-15)
- ·dedecms列表页上一页下一页翻页单独调用(2013-11-15)
- ·dedecms php.ini register_globals must is Off(2013-11-28)
- ·dedecms 问答系统如何取消积分与用户登陆验证(2013-11-28)
- ·dedecms上传图片文件时提示 Upload filetype not allow(2013-12-04)
- ·DedeCMS图集中缩略图不能显示的解决方法(2014-01-09)
- ·安装dedecms:Call to undefined function get_magic_quotes_gpc()(2014-01-09)
- ·Dedecms怎么在首页调用最新评论(2014-01-09)
- ·dedecms自定义模型之独立模型在首页、列表页、内容调用内容(2014-03-11)
- ·织梦DedeCMS子目录移动到根目录的方法(2014-03-11)
- ·DEDECMS织梦短标题标签调用与字数修改方法(2014-03-11)
- ·织梦DedeCMS列表摘要 description 长度控制方法(2014-03-11)
- ·dedecms5.6,5.7去掉系统默认的友情链接链(2014-03-11)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)