pagelist列表分页标签实现数字分页前后的省略号
更新日期:2024-06-15 23:27:08 来源:网络
先上分页示例图
实现教程如下:
1、编辑列表模板,把分页标签pagelist加上一个标识pageno,dots,参考代码
{eyou:pagelist listitem='pre,next,info,index,end,pageno,dots' listsize='1' /}
2、由于每个模板分页样式不同,涉及的分页php文件官方不会在线更新覆盖,请根据步骤找到分页php文件补充相关代码。
2.1、用编辑器(非记事本工具)打开文件 core/library/paginator/driver/Eyou.php (注:Eyou.php为pc分页文件,手机端的为:Mobile.php)
2.2、在108行左右找到代码 protected function getLinks($listsize = 3) 替换成 protected function getLinks($listsize = 3, $listitemArr = [])
2.3、把109行大括号 { 开始,到对应大括号 } 结束的代码进行替换
/**
* 页码按钮
* @param string $listsize 当前页对称两边的条数
* @return string
*/
protected function getLinks($listsize = 3, $listitemArr = [])
{
这里全部代码都要被替换为2.4步骤的代码
}
替换成以下代码:
/**
* 页码按钮
* @param string $listsize 当前页对称两边的条数
* @return string
*/
protected function getLinks($listsize = 3, $listitemArr = [])
{
if ($this->simple)
return '';
$block = [
'first' => null,
'slider' => null,
'last' => null
];
$side = $listsize;
$window = $side * 2;
if ($this->lastPage < $window + 2) {
$block['first'] = $this->getUrlRange(1, $this->lastPage);
} elseif ($this->currentPage < ($side + 1)) {
$block['first'] = $this->getUrlRange(1, $window + 1);
} elseif ($this->currentPage > ($this->lastPage - $side)) {
$block['last'] = $this->getUrlRange($this->lastPage - $window, $this->lastPage);
} else {
$block['slider'] = $this->getUrlRange($this->currentPage - $side, $this->currentPage + $side);
}
$html = '';
if (is_array($block['first'])) {
$html .= $this->getUrlLinks($block['first']);
if (in_array('dots', $listitemArr)) {
if ($window + 1 < $this->lastPage) {
if ($window + 1 < $this->lastPage - 1) {
$html .= $this->getDots();
}
$html .= $this->getPageLinkWrapper2($this->url($this->lastPage), $this->lastPage);
}
}
}
if (is_array($block['slider'])) {
if (in_array('dots', $listitemArr)) {
if ($this->currentPage - $side > 1) {
$html .= $this->getPageLinkWrapper2($this->url(1), 1);
if ($this->currentPage - $side > 2) {
$html .= $this->getDots();
}
}
}
$html .= $this->getUrlLinks($block['slider']);
if (in_array('dots', $listitemArr)) {
if ($this->currentPage + $side < $this->lastPage) {
if ($this->currentPage + $side < $this->lastPage - 1) {
$html .= $this->getDots();
}
$html .= $this->getPageLinkWrapper2($this->url($this->lastPage), $this->lastPage);
}
}
}
if (is_array($block['last'])) {
if (in_array('dots', $listitemArr)) {
if ($this->lastPage - $window < $this->lastPage) {
$html .= $this->getPageLinkWrapper2($this->url(1), 1);
if ($this->lastPage - $window > 2) {
$html .= $this->getDots();
}
}
}
$html .= $this->getUrlLinks($block['last']);
}
return $html;
}
2.4、看下图找到这个代码 array_push($pageArr, $this->getLinks($listsize)); 替换成 array_push($pageArr, $this->getLinks($listsize, $listitemArr));
完结。
实现教程如下:
1、编辑列表模板,把分页标签pagelist加上一个标识pageno,dots,参考代码
{eyou:pagelist listitem='pre,next,info,index,end,pageno,dots' listsize='1' /}
2、由于每个模板分页样式不同,涉及的分页php文件官方不会在线更新覆盖,请根据步骤找到分页php文件补充相关代码。
2.1、用编辑器(非记事本工具)打开文件 core/library/paginator/driver/Eyou.php (注:Eyou.php为pc分页文件,手机端的为:Mobile.php)
2.2、在108行左右找到代码 protected function getLinks($listsize = 3) 替换成 protected function getLinks($listsize = 3, $listitemArr = [])
2.3、把109行大括号 { 开始,到对应大括号 } 结束的代码进行替换
/**
* 页码按钮
* @param string $listsize 当前页对称两边的条数
* @return string
*/
protected function getLinks($listsize = 3, $listitemArr = [])
{
这里全部代码都要被替换为2.4步骤的代码
}
替换成以下代码:
/**
* 页码按钮
* @param string $listsize 当前页对称两边的条数
* @return string
*/
protected function getLinks($listsize = 3, $listitemArr = [])
{
if ($this->simple)
return '';
$block = [
'first' => null,
'slider' => null,
'last' => null
];
$side = $listsize;
$window = $side * 2;
if ($this->lastPage < $window + 2) {
$block['first'] = $this->getUrlRange(1, $this->lastPage);
} elseif ($this->currentPage < ($side + 1)) {
$block['first'] = $this->getUrlRange(1, $window + 1);
} elseif ($this->currentPage > ($this->lastPage - $side)) {
$block['last'] = $this->getUrlRange($this->lastPage - $window, $this->lastPage);
} else {
$block['slider'] = $this->getUrlRange($this->currentPage - $side, $this->currentPage + $side);
}
$html = '';
if (is_array($block['first'])) {
$html .= $this->getUrlLinks($block['first']);
if (in_array('dots', $listitemArr)) {
if ($window + 1 < $this->lastPage) {
if ($window + 1 < $this->lastPage - 1) {
$html .= $this->getDots();
}
$html .= $this->getPageLinkWrapper2($this->url($this->lastPage), $this->lastPage);
}
}
}
if (is_array($block['slider'])) {
if (in_array('dots', $listitemArr)) {
if ($this->currentPage - $side > 1) {
$html .= $this->getPageLinkWrapper2($this->url(1), 1);
if ($this->currentPage - $side > 2) {
$html .= $this->getDots();
}
}
}
$html .= $this->getUrlLinks($block['slider']);
if (in_array('dots', $listitemArr)) {
if ($this->currentPage + $side < $this->lastPage) {
if ($this->currentPage + $side < $this->lastPage - 1) {
$html .= $this->getDots();
}
$html .= $this->getPageLinkWrapper2($this->url($this->lastPage), $this->lastPage);
}
}
}
if (is_array($block['last'])) {
if (in_array('dots', $listitemArr)) {
if ($this->lastPage - $window < $this->lastPage) {
$html .= $this->getPageLinkWrapper2($this->url(1), 1);
if ($this->lastPage - $window > 2) {
$html .= $this->getDots();
}
}
}
$html .= $this->getUrlLinks($block['last']);
}
return $html;
}
2.4、看下图找到这个代码 array_push($pageArr, $this->getLinks($listsize)); 替换成 array_push($pageArr, $this->getLinks($listsize, $listitemArr));
完结。
- PbootCMS编辑器过滤div代码解决办法(1)_1
- 织梦生成报错读取频道信息失败的解决方法
- 帝国CMS修改栏目顺序提示:您来自的链接不存在
- 去除织梦img中的style width height属性方法
- PbootCMS网站百度site网址异常的解决办法(1)_1
- 网站搬家时导入SQL Server备份文件失败
- DedeCms错误警告:连接数据库失败,可能数据库密码不对或数据库服务器出错!
- PbootCMS当前位置面包屑中的首页如何改成英文(1)_1
- 帝国CMS无法远程保存没有后缀的图片到本地空间的解决方法
- 导入SQL Server数据时提示“无法在只读列插入数据”
- 网站admin密码忘记了怎么办
- 易优cms搜索结果页如何统计关键词文章数量
- 网站源码安装后访问首页,页面错乱的处理方法
- pbootcms模板如何做好防护
- pbootcms如何设置发布内容不自动提取缩略图(1)
- PBOOTCMS中新增并开启手机端模板,以便为用户提供更好的移动设备浏览体验
- Pbootcms留言“提交成功”的提示语修改(1)
- pbootcms网站后台登录提示:”登录失败:数据库目录写入权限不足!“
- 错误内容:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server ve
- 易优cms数据表或视图不存在,请联系技术处理。
- 织梦网站admin密码忘记了怎么办
- ZBlog网站自定义单页_支持动态和静态页面生成
- imagecreatefrompng(): gd-png: libpng warning: iCCP: known incorrect sRGB profile
- 升级完后网站提示500错误怎么办
- 易优CMS文章内容页如何获取上一篇下一篇
- PbootCMS全站模板date时间标签/时间格式常见的8种调用方式
- 易优CMS网站插件:会员邀请插件介绍
- 易优cms网站后台登录不上
- SQLSTATE[HY000] [1045] Access denied for user 'cs2021'@'localhost' (using passwo
- 易优CMS资源文件加载设置与调用标签