织梦 实现中英文分页功能分享一下,dedecms
导读:dedecmsdedecms1、打开include/arc.listview.class.php(本文以DedeCMS5.6为例) 找到(约29行) var $remoteDir; 在其下dede商城模板织梦cms模板。
1、打开include/arc.listview.class.php(本文以DedeCMS5.6为例) 找到(约29行)
var $remoteDir;
在其下面加上一个新行
var $pagelang;
找到(约528行)
$list_len = trim($ctag->GetAtt("listsize"));
在其下面加上一个新行
$pagelang = trim($ctag->GetAtt("pagelang"));
找到(约531行)
if($list_len=="") { $list_len = 3; }
在其下面加上
if($pagelang=="") { $pagelang = 'cn'; }
修改(约545行)
$this->dtp->Assign($tagid,$this->GetPageListST($list_len,$listitem));
为
$this->dtp->Assign($tagid,$this->GetPageListST($list_len,$listitem,$pagelang));
修改(新增)
function GetPageListST($list_len,$listitem="index,end,pre,next,pageno")
为
function GetPageListST($list_len,$织梦手机模板listitem="index,end,pre,next,pageno",$pagelang='cn')
修改(约826行)
return "<li><span class=\"pageinfo\">共 <strong>1</strong> 页 <strong>".$this->TotalResult."</strong> 条记录</span></li>\r\n";
为
if($pagelang=='cn') {
return "<li><span class=\"pageinfo\">共 <strong>1</strong> 页 <strong>".$this->TotalResult."</织梦首页模板strong> 条记录</span></li>\r\n"; } else { return "<li><span class=\"pageinfo\">Total <strong>1</strong> Page <strong> ".$this->TotalResult."</strong> Records</span></li>\r\n"; }
修改
return "<li><span class=\"pageinfo\">共 <strong>0</strong> 页 <strong>".$this->TotalResult."</strong> 条记录</span></li>\r\n";
为
if($pagelang=='cn') { return "<li><span class=\"pageinfo\">共 <strong>0</strong> 页 <strong>".$this->TotalResult."</strong> 条记录</span></li>\r\n"; } else { return "<li><span class=\"pageinfo\">Total <strong>0</strong> Page <strong> ".$this->TotalResult."</strong> Records</span></li>\r\n"; }
修改
$maininfo = "<li><span class=\"pageinfo\">共 <strong>{$totalpage}</strong> 页 <strong>".$this->TotalResult."</strong> 条</span></li>\r\n";
声明: 本文由我的SEOUC技术文章主页发布于:2023-07-18 ,文章织梦 实现中英文分页功能分享一下,dedecms主要讲述分页,中英文,织梦网站建设源码以及服务器配置搭建相关技术文章。转载请保留链接: https://www.seouc.com/article/web_29219.html