【1】自己修改帝國cms默認的分頁樣式(css),這樣做的好處是你不用去改動帝國的核心文件,方便以後升級。
【2】自己動手去修改帝國的分頁(php+css),帝國的分頁在e>class>下的t_functions.php這個文件裡。
===============================================
列表頁模板[!--show.page--]:分頁導航(下拉式) 大概在10-98行;
列表頁模板[!--show.listpage--]:分頁導航(列表式) 在101-169行;
內容頁模板(返回內容分頁):分頁導航 在172-228行;
內容頁模板(返回下拉式內容分頁導航):標題式分頁導航 在231-262行。
===============================================
上面大概介紹了下這個文件下有那些分頁,那下面我們就來修改程序分頁,但是又不會在升級程序時候帶來麻煩。
第一步:進入帝國cms後臺,點擊系統設置->系統參數設置->信息設置:裡面有個"列表分頁函數(列表)"選項,將裡面的函數名修改為user_ShowListMorePage
第二部:複製t_function.php列表式分頁代碼到 e/class/userfun.php <?php ?> 之間
下面我把分頁導航(列表式)拿出來,並帶上了註釋,如下:
- //列表模板之列表式分页
- function sys_ShowListMorePage($num,$page,$dolink,$type,$totalpage,$line,$ok,$search="",$add){
- global $fun_r,$public_r
- //num是取得的当前总的文章数,line是栏目设定里的一页显示多少文章数。如果当前文章总数少于设定数,中断程序返回,并且什么也不显示。
- if($num<=$line)
- {
- $pager['showpage']='';
- return $pager;
- }
- //文件名
- if(empty($add['dofile']))
- {
- $add['dofile']='index';
- }
- //静态页数
- $repagenum=$add['repagenum'];
- //listpagelistnum是"系统参数设置" 里的 "信息设置" 下的 "列表分页函数(列表)"下的 "每页显示12个页码"这一项。
- $page_line=$public_r['listpagelistnum'];
- //这个$snum可以控制 "当前页" 显示的位置,设置成2,当前页就显示在第3个位置。
- $snum=2;
- //$totalpage=ceil($num/$line);//取得总页数
- $firststr='<a title="Total record"> <b>'.$num.'</b> </a> ';//显示总文章数
- //上一页
- if($page<>1)
- {
- //若当前页不是第一页,则显示它的上一页链接
- //$dolink是栏目的地址,$type是网页文件的扩展名,比如 .html ,那个$type之前有个点,是起连接作用的连接符,也就是说$type里面的内容是 .html
- $toppage='<a href="'.$dolink.$add['dofile'].$type.'">'.$fun_r['startpage'].'</a> ';
- $pagepr=$page-1;
- if($pagepr==1)
- {
- $prido=$add['dofile'].$type;
- }
- else
- {
- $prido=$add['dofile'].'_'.$pagepr.$type;
- }
- $prepage='<a href="'.$dolink.$prido.'">'.$fun_r['pripage'].'</a>';
- }
- //下一页
- 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=' <a href="'.$nextpagelink.'">'.$fun_r['nextpage'].'</a>';
- $lastpage=' <a href="'.$lastpagelink.'">'.$fun_r['lastpage'].'</a>';
- }
- //通过判断当前页码与上面讲述的snum的大小,确定页码显示的状态。如果$page-$snum<1,$starti赋值为1,否则$starti赋值为$page-$snum。
- $starti=$page-$snum<1?1:$page-$snum;
- $no=0;
- //此处的for循环就是用来显示页码的,包括从第几个页码开始显示,以及当前页码加粗和显示多少个页码
- for($i=$starti;$i<=$totalpage&&$no<$page_line;$i++)
- {
- $no++;
- //如果是当前页码,则加粗,有需要修改当前页码样式的可在此修改
- if($page==$i)
- {
- $is_1="<b>";
- $is_2="</b>";
- }
- //如果当前页是首页
- elseif($i==1)
- {
- $is_1='<a href="'.$dolink.$add['dofile'].$type.'">';
- $is_2="</a>";
- }
- //其余的页码,可以通过给a加样式来修改显示效果
- else
- {
- $thispagelink=$repagenum&&$repagenum<$i?eReturnRewritePageLink2($add,$i):$dolink.$add['dofile'].'_'.$i.$type;
- $is_1='<a href="'.$thispagelink.'">';
- $is_2="</a>";
- }
- $returnstr.=' '.$is_1.$i.$is_2;//$returnstr即是生成的显示页号的代码
- }
- $returnstr=$firststr.$toppage.$prepage.$returnstr.$nextpage.$lastpage;
- $pager['showpage']=$returnstr;
- return $pager;
- }
複製代碼 接下來是自定義部分:
第一步:進入帝國cms後臺,點擊系統設置->系統參數設置->信息設置:裡面有個"列表分頁函數(列表)"選項,將裡面的函數名修改為user_ShowListMorePage
第二部:到 e/class/userfun.php <?php ?> 之間插入下面代碼
- function user_ShowListMorePage($num,$page,$dolink,$type,$totalpage,$line,$ok,$search=""){
- global $fun_r,$public_r;
- if($num<=$line)
- {
- $pager['showpage']='';
- return $pager;
- }
- $page_line=$public_r['listpagelistnum'];
- $snum=2;
-
- //上一页
- if($page<>1)
- {
- $toppage='<a href="'.$dolink.'index'.$type.'" class="disabled">'.$fun_r['startpage'].'</a>'; //首页
- $pagepr=$page-1;
- if($pagepr==1)
- {
- $prido="index".$type;
- }
- else
- {
- $prido="index_".$pagepr.$type;
- }
- $prepage='<a href="'.$dolink.$prido.'" class="disabled">'.$fun_r['pripage'].'</a>'; //上一页
- }
- //下一页
- if($page!=$totalpage)
- {
- $pagenex=$page+1;
- $nextpage='<a href="'.$dolink.'index_'.$pagenex.$type.'" class="disabled">'.$fun_r['nextpage'].'</a>'; //下一页
- $lastpage='<a href="'.$dolink.'index_'.$totalpage.$type.'" class="disabled">'.$fun_r['lastpage'].'</a>'; //最后一页
- }
- $starti=$page-$snum<1?1:$page-$snum;
- $no=0;
- for($i=$starti;$i<=$totalpage&&$no<$page_line;$i++) //详细页码信息
- {
- $no++;
- if($page==$i)
- {
- $is_1="<a class='cur'>"; //当前
- $is_2="</a>";
- }
- elseif($i==1)
- {
- $is_1='<a href="'.$dolink.'index'.$type.'">'; //第一页
- $is_2="</a>";
- }
- else
- {
- $is_1='<a href="'.$dolink.'index_'.$i.$type.'">'; //其他页
- $is_2="</a>";
- }
- $returnstr.=$is_1.$i.$is_2;
- }
- $returnstr=$firststr.$toppage.$prepage.$returnstr.$nextpage.$lastpage;
- $pager['showpage']=$returnstr;
- return $pager;
- }
複製代碼 第三步:在你的列表頁中寫上分頁就好了【[!--show.listpage--]】
=============================================================
下面就來看看我最後的成果把
我們在來看看代碼結構
- <div class="pageBox pTB20"><a class="cur">1</a><a href="#">2</a><a href="#">3</a><a href="#">4</a><a href="#">5</a><a href="/liaotian/index_6.html">6</a><a href="#">7</a><a href="#">8</a><a href="#" class="disabled">下一页</a><a href="#" class="disabled">尾页</a></div>
複製代碼 下面是css代碼
- /*** page
- -------------------------------------------------------------- ****/
- .pageBox {text-align: center;}
- .pageBox a {border:1px solid #ddd;display:inline-block;margin-right:6px;color: #707070;width:34px;height:34px;font:bold 14px/34px arial;}
- .pageBox a:hover,.pageBox a:active{background:#3aa9f2;color: #FFFFFF;text-decoration: none;}
- .pageBox .cur { background: #3aa9f2;border: 1px solid #3aa9f2;text-decoration: none;}
- .pageBox a.cur {color: #fff;}
- .pageBox .disabled {width: 79px;}
複製代碼
|