Ecmsphp开发中心

1252

帖子

19

跟帖

8

粉丝

用户组:普通会员

头    衔:白银会员

版主

积分
356930
登陆
2134 次
私信
注册时间
2014-06-21 14:06:06
最后登陆时间
2023-09-24 16:04:46

帝国cms模板 show.listpage 分页标签修改为bootstrap分页样式的方法!(很简单的)

 [只看主题]
楼主
0 |
发表: 3 年前
| |
| |
跳转

  帝国cms模板 show.listpage 分页标签修改为bootstrap分页样式的方法!(很简单的)

  帝国CMS程序建站,经常会碰到很多的问题,例如经常会有很多小伙伴问到国cms模板 show.listpage 分页标签怎么修改为bootstrap分页样式呢?今天帝国CMS模板小编就针对这个问题来为大家分享,告诉大家帝国cms模板 show.listpage 分页标签修改为bootstrap分页样式的方法,下面一起跟帝国cms模板网一起来看看吧:

  帝国[!--show.listpage--]分页标签修改为bootstrap分页样式

  修改eclasst_functions.php的sys_ShowListMorePage分页函数,直接复制过去用

  $firststr 总页数

  $toppage 首页

  $prepage 上一页

  $returnstr 当前页、第1页、其它页,具体可看下面原代码的注释

  $nextpage 下一页

  $lastpage 尾页

<?php
//列表模板之列表式分页
function sys_ShowListMorePage($num,$page,$dolink,$type,$totalpage,$line,$ok,$search="",$add){
    global $fun_r,$public_r;
    if($num<=$line)
    {
        $pager['showpage']='';
        return $pager;
    }
    //文件名
    if(empty($add['dofile']))
    {
        $add['dofile']='index';
    }
    //静态页数
    $repagenum=$add['repagenum'];
    $page_line=$public_r['listpagelistnum'];
    $snum=2;
    //$totalpage=ceil($num/$line);//取得总页数
    //$firststr  总页数
    $firststr='<li class=""><span style="margin-right:10px;"><b>'.$num.'</b></span></li>';
    //上一页
    if($page<>1)
    {
        //$toppage  首页
        $toppage='<li><a href="'.$dolink.$add['dofile'].$type.'" aria-label="Previous"><span aria-hidden="true">««</span></a></li>';
 
        $pagepr=$page-1;
        if($pagepr==1)
        {
            $prido=$add['dofile'].$type;
        }
        else
        {
            $prido=$add['dofile'].'_'.$pagepr.$type;
        }
        //$prepage  上一页
        $prepage='<li><a href="'.$dolink.$prido.'" aria-label="Previous"><span aria-hidden="true">«</span></a></li>';
    }
    //下一页
    if($page!=$totalpage)
    {
        $pagenex=$page+1;
        $nextpagelink=$repagenum&&$repagenum<$pagenex?eReturnRewritePageLink2($add,$pagenex):$dolink.$add['dofile'].'_'.$pagenex.$type;
        $lastpagelink=$repagenum&&$repagenum<$totalpage?eReturnRewritePageLink2($add,$totalpage):$dolink.$add['dofile'].'_'.$totalpage.$type;
        //$nextpage  下一页
        $nextpage='<li><a aria-label="Next" href="'.$nextpagelink.'"><span aria-hidden="true">»</span></a></li>';
        //$lastpage  尾页
        $lastpage='<li><a aria-label="Next" href="'.$lastpagelink.'"><span aria-hidden="true">»»</span></a></li>';
    }
    $starti=$page-$snum<1?1:$page-$snum;
    $no=0;
    for($i=$starti;$i<=$totalpage&&$no<$page_line;$i++)
    {
        $no++;
        if($page==$i)
        {
            //$is_1.$i.$is_2 当前页
            $is_1='<li class="active"><span style="border: 1px solid #ddd;">';
            $is_2='<span class="sr-only"></span></span></li>';
        }
        elseif($i==1)
        {
            //$is_1.$i.$is_2 第1页
            $is_1='<li><a href="'.$dolink.$add['dofile'].$type.'" class="lis">';
            $is_2="</a></li>";
        }
        else
        {
            //$is_1.$i.$is_2 其他页(不算第1页)
            $thispagelink=$repagenum&&$repagenum<$i?eReturnRewritePageLink2($add,$i):$dolink.$add['dofile'].'_'.$i.$type;
            $is_1='<li><a href="'.$thispagelink.'" class="lis">';
            $is_2="</a></li>";
        }
        $returnstr.=$is_1.$i.$is_2;
    }
    $returnstr=$firststr.$toppage.$prepage.$returnstr.$nextpage.$lastpage;
    $pager['showpage']=$returnstr;
    return $pager;
}

  OK,教程结束!大家赶紧去测试吧!


ecmsphp开发中心
ecmsphp开发中心
验证码 换一个

当前在线人数: 0
取消

感谢您的支持,我们会继续努力!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

×

打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮

帝国cms模板 show.listpage 分页标签修改为bootstrap分页样式的方法!(很简单的)