当前位置:首页 > CMS教程 > 其它CMS > 列表

Yii使用CLinkPager分页实例详解

发布:smiling 来源: PHP粉丝网  添加日期:2021-03-23 12:00:52 浏览: 评论:0 

这篇文章主要介绍了Yii使用CLinkPager分页的方法,需要的朋友可以参考下

本文主要讲解了YII中使用CLinkPager分页的方法,这里我们采用物件的形式来定义分页:

首先在components中自定义LinkPager,并继承CLinkPager

具体代码如下:

  1. <?php 
  2. /** 
  3.  * CLinkPager class file. 
  4.  * 
  5.  * @link http://www.yiiframework.com/ 
  6.  * @copyright Copyright © 2008-2011 Yii Software LLC 
  7.  * @license http://www.yiiframework.com/license/ 
  8.  */ 
  9.  
  10. /** 
  11.  * CLinkPager displays a list of hyperlinks that lead to different pages of target. 
  12.  * 
  13.  * @version $Id$ 
  14.  * @package system.web.widgets.pagers 
  15.  * @since 1.0 
  16.  */ 
  17. class LinkPager extends CLinkPager 
  18.  const CSS_TOTAL_PAGE='total_page'
  19.  const CSS_TOTAL_ROW='total_row'
  20.    
  21.  /** 
  22.  * @var string the text label for the first page button. Defaults to '<< First'. 
  23.  */ 
  24.  public $totalPageLabel
  25.  /** 
  26.  * @var string the text label for the last page button. Defaults to 'Last >>'. 
  27.  */ 
  28.  public $totalRowLabel
  29.    
  30.  /** 
  31.  * Creates the page buttons. 
  32.  * @return array a list of page buttons (in HTML code). 
  33.  */ 
  34.  protected function createPageButtons() 
  35.  { 
  36.    
  37.  
  38.     $this->maxButtonCount=8;  
  39.     $this->firstPageLabel="首页"
  40.     $this->lastPageLabel='末页';  
  41.     $this->nextPageLabel='下一页'
  42.     $this->prevPageLabel='上一页';  
  43.     $this->header=""
  44.    
  45.  if(($pageCount=$this->getPageCount())<=1) 
  46.   return array(); 
  47.    
  48.  list($beginPage,$endPage)=$this->getPageRange(); 
  49.  $currentPage=$this->getCurrentPage(false); // currentPage is calculated in getPageRange() 
  50.  $buttons=array(); 
  51.    
  52.  // first page 
  53.  $buttons[]=$this->createPageButton($this->firstPageLabel,0,self::CSS_FIRST_PAGE,$currentPage<=0,false); 
  54.  
  55.  // prev page 
  56.  if(($page=$currentPage-1)<0) 
  57.   $page=0; 
  58.  $buttons[]=$this->createPageButton($this->prevPageLabel,$page,self::CSS_PREVIOUS_PAGE,$currentPage<=0,false); 
  59.  
  60.  // internal pages 
  61.  for($i=$beginPage;$i<=$endPage;++$i
  62.   $buttons[]=$this->createPageButton($i+1,$i,self::CSS_INTERNAL_PAGE,false,$i==$currentPage); 
  63.  
  64.  // next page 
  65.  if(($page=$currentPage+1)>=$pageCount-1) 
  66.   $page=$pageCount-1; 
  67.  $buttons[]=$this->createPageButton($this->nextPageLabel,$page,self::CSS_NEXT_PAGE,$currentPage>=$pageCount-1,false); 
  68.  
  69.  // last page 
  70.  $buttons[]=$this->createPageButton($this->lastPageLabel,$pageCount-1,self::CSS_LAST_PAGE,$currentPage>=$pageCount-1,false); 
  71.    
  72.  // 页数统计 
  73.  $buttons[]=$this->createTotalButton(($currentPage+1)."/{$pageCount}",self::CSS_TOTAL_PAGE,false,false); 
  74.    
  75.  // 条数统计 
  76.  $buttons[]=$this->createTotalButton("共{$this->getItemCount()}条",self::CSS_TOTAL_ROW,false,false); 
  77.  
  78.  return $buttons
  79.  } 
  80.    
  81.  protected function createTotalButton($label,$class,$hidden,$selected
  82.  { 
  83.  if($hidden || $selected
  84.   $class.=' '.($hidden ? self::CSS_HIDDEN_PAGE : self::CSS_SELECTED_PAGE); 
  85.  return '<li class="'.$class.'">'.CHtml::label($label,false).'</li>'
  86.  } 
  87.    
  88.  /** 
  89.  * Registers the needed client scripts (mainly CSS file). 
  90.  */ 
  91.  public function registerClientScript() 
  92.  { 
  93.  if($this->cssFile!==false) 
  94.   self::registerCssFile($this->cssFile); 
  95.  } 
  96.    
  97.  /** 
  98.  * Registers the needed CSS file. 
  99.  * @param string $url the CSS URL. If null, a default CSS URL will be used. 
  100.  */ 
  101.  public static function registerCssFile($url=null) 
  102.  { 
  103.  if($url===null) 
  104.   $url=CHtml::asset(Yii::getPathOfAlias('application.components.views.LinkPager.pager').'.css'); 
  105.  Yii::app()->getClientScript()->registerCssFile($url); 
  106.  } 

定义CSS样式

  1. /** 
  2.  * 翻页样式 
  3.  */ 
  4. .page_blue{ 
  5.  margin3px
  6.  padding3px
  7.  text-aligncenter
  8.  font12px verdanaarialhelveticasans-serif
  9. ul.bluePager,ul.yiiPager 
  10.  font-size:11px
  11.  border:0
  12.  margin:0
  13.  padding:0
  14.  line-height:100%
  15.  display:inline
  16.  text-aligin:center
  17.  
  18. ul.bluePager li,ul.yiiPager li 
  19.  display:inline
  20.  
  21. ul.bluePager a:link,ul.yiiPager a:link, 
  22. ul.bluePager a:visited,ul.yiiPager a:visited, 
  23. ul.bluePager .total_page label,ul.yiiPager .total_page label, 
  24. ul.bluePager .total_row label,ul.yiiPager .total_row label 
  25.  border#ddd 1px solid
  26.  color#888888 !important
  27.  padding:2px 5px
  28.  text-decoration:none
  29.  
  30. ul.bluePager .page a,ul.yiiPager .page a 
  31.  font-weight:normal
  32.  
  33. ul.bluePager a:hover,ul.yiiPager a:hover 
  34.  color:#FFF !importantborder:#156a9a 1px solidbackground-color:#2b78a3 
  35.  
  36. ul.bluePager .selected a,ul.yiiPager bluePager .selected a 
  37.  color:#3aa1d0 !important
  38.  border1px solid #3aa1d0
  39.  
  40. ul.bluePager .selected a:hover,ul.yiiPager .selected a:hover 
  41.  color:#FFF !important
  42.  
  43. ul.bluePager .hidden a,ul.yiiPager .hidden a 
  44.  border:solid 1px #DEDEDE
  45.  color:#888888
  46.  
  47. ul.bluePager .hidden,ul.yiiPager .hidden 
  48.  display:none

controller中操作:

  1. //分页操作 
  2. $criteria=new CDbCriteria; 
  3. $criteria->order='id DESC'
  4. $criteria->select=array('id','uid','username','title','thumb','url','clicks','time','dateline','countfavorite','quality'); 
  5. $criteria->condition=$sql
  6. $total = Video::model()->count($criteria); 
  7.  
  8. $pages = new CPagination($total);   
  9. $pages->pageSize=self::PAGE_SIZE; 
  10. $pages->applyLimit($criteria); 
  11.     
  12. $list = Video::model()->findAll($criteria); 
  13.  
  14. $title = CommonClass::model()->find(array
  15.  'select'=>array('cname'), 
  16.  'condition'=>'id = '.$id
  17. ));   
  18.  
  19. $this->render('application.views.video.list',array
  20.  'array'=>$array
  21.  'arr'=>$arr
  22.  'result'=>$result
  23.  'list'=>$list
  24.  'pages'=>$pages
  25.  'title'=>$title
  26. )); 

在views/video/list.php中引用:

$this->widget('LinkPager', array('pages' => $pages,));

Tags: CLinkPager分页

分享到: