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

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

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

  修改e/class/t_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,教程结束!大家赶紧去测试吧!