登录  /  注册

php重写分页器CLinkPager的示例代码分享

黄舟
发布: 2017-10-31 09:13:05
原创
882人浏览过

php 重写分页器 clinkpager的实例

1、自定义的分页器类放在哪里?

有两个位置可以放,

第一种是放在 protected/extensions 中,在使用是import进来,或在config文件中import进来;

第二种是放在 protected/components 中,作为组件存在,不需要import

2、用派生方式是最好的 

class MyPager extends CLinkPager
登录后复制

入口函数是:public function run() ,当显示分页器时run()被调用,里面的输出就会显示在相应位置;

其他的完全自定义,如果你不知道上一页、下一页、首页、尾页、总页数、当前页码等信息,可以参考CLinkPager的源码,yii/frameworks/web/widgets/pagers/CLinkPager.php

<?php

class MyPager extends CLinkPager
{
  const CSS_FIRST_PAGE=&#39;first&#39;;
  const CSS_LAST_PAGE=&#39;last&#39;;
  const CSS_PREVIOUS_PAGE=&#39;previous&#39;;
  const CSS_NEXT_PAGE=&#39;next&#39;;
  const CSS_INTERNAL_PAGE=&#39;page&#39;;
  const CSS_HIDDEN_PAGE=&#39;hidden&#39;;
  const CSS_SELECTED_PAGE=&#39;selected&#39;;

  /**
   * @var string the CSS class for the first page button. Defaults to &#39;first&#39;.
   * @since 1.1.11
   */
  public $firstPageCssClass=self::CSS_FIRST_PAGE;
  /**
   * @var string the CSS class for the last page button. Defaults to &#39;last&#39;.
   * @since 1.1.11
   */
  public $lastPageCssClass=self::CSS_LAST_PAGE;
  /**
   * @var string the CSS class for the previous page button. Defaults to &#39;previous&#39;.
   * @since 1.1.11
   */
  public $previousPageCssClass=self::CSS_PREVIOUS_PAGE;
  /**
   * @var string the CSS class for the next page button. Defaults to &#39;next&#39;.
   * @since 1.1.11
   */
  public $nextPageCssClass=self::CSS_NEXT_PAGE;
  /**
   * @var string the CSS class for the internal page buttons. Defaults to &#39;page&#39;.
   * @since 1.1.11
   */
  public $internalPageCssClass=self::CSS_INTERNAL_PAGE;
  /**
   * @var string the CSS class for the hidden page buttons. Defaults to &#39;hidden&#39;.
   * @since 1.1.11
   */
  public $hiddenPageCssClass=self::CSS_HIDDEN_PAGE;
  /**
   * @var string the CSS class for the selected page buttons. Defaults to &#39;selected&#39;.
   * @since 1.1.11
   */
  public $selectedPageCssClass=self::CSS_SELECTED_PAGE;
  /**
   * @var integer maximum number of page buttons that can be displayed. Defaults to 10.
   */
  public $maxButtonCount=10;
  /**
   * @var string the text label for the next page button. Defaults to &#39;Next >&#39;.
   */
  public $nextPageLabel;
  /**
   * @var string the text label for the previous page button. Defaults to &#39;< Previous&#39;.
   */
  public $prevPageLabel;
  /**
   * @var string the text label for the first page button. Defaults to &#39;<< First&#39;.
   */
  public $firstPageLabel;
  /**
   * @var string the text label for the last page button. Defaults to &#39;Last >>&#39;.
   */
  public $lastPageLabel;
  /**
   * @var string the text shown before page buttons. Defaults to &#39;Go to page: &#39;.
   */
  public $header;
  /**
   * @var string the text shown after page buttons.
   */
  public $footer=&#39;&#39;;
  /**
   * @var mixed the CSS file used for the widget. Defaults to null, meaning
   * using the default CSS file included together with the widget.
   * If false, no CSS file will be used. Otherwise, the specified CSS file
   * will be included when using this widget.
   */
  public $cssFile;
  /**
   * @var array HTML attributes for the pager container tag.
   */
  public $htmlOptions=array();

  /**
   * Initializes the pager by setting some default property values.
   */
  public function init()
  {
    if($this->nextPageLabel===null)
      $this->nextPageLabel=Yii::t(&#39;yii&#39;,&#39;Next >&#39;);
    if($this->prevPageLabel===null)
      $this->prevPageLabel=Yii::t(&#39;yii&#39;,&#39;< Previous&#39;);
    //if($this->firstPageLabel===null)
    // $this->firstPageLabel=Yii::t(&#39;yii&#39;,&#39;<< First&#39;);
    //if($this->lastPageLabel===null)
    // $this->lastPageLabel=Yii::t(&#39;yii&#39;,&#39;Last >>&#39;);
    if($this->header===null)
      $this->header=Yii::t(&#39;yii&#39;,&#39;Go to page: &#39;);

    if(!isset($this->htmlOptions[&#39;id&#39;]))
      $this->htmlOptions[&#39;id&#39;]=$this->getId();
    if(!isset($this->htmlOptions[&#39;class&#39;]))
      $this->htmlOptions[&#39;class&#39;]=&#39;yiiPager&#39;;
  }

  /**
   * Executes the widget.
   * This overrides the parent implementation by displaying the generated page buttons.
   */
  public function run()
  {
    $this->registerClientScript();
    $buttons=$this->createPageButtons();
    if(empty($buttons))
      return;
    echo $this->header;
//   echo CHtml::tag(&#39;ul&#39;,$this->htmlOptions,implode("\n",$buttons));
    echo implode("\n",$buttons);
    echo $this->footer;
  }

  /**
   * Creates the page buttons.
   * @return array a list of page buttons (in HTML code).
   */
  protected function createPageButtons()
  {
    if(($pageCount=$this->getPageCount())<=1)
      return array();

    list($beginPage,$endPage,$ellipsis)=$this->getPageRange();

    $currentPage=$this->getCurrentPage(false); // currentPage is calculated in getPageRange()
    $buttons=array();

    // first page
    //$buttons[]=$this->createPageButton($this->firstPageLabel,0,$this->firstPageCssClass,$currentPage<=0,false);

    // prev page
    if(($page=$currentPage-1)<0)
      $page=0;
    if($currentPage == 0){
      $buttons[] = "<span style=&#39;background:#a3a3a3&#39;><上一頁</span>";
    }else{
      $buttons[]=$this->createPageButton($this->prevPageLabel,$page,$this->previousPageCssClass,$currentPage<=0,false);
    }
    // internal pages start
    // first
    $buttons[]=$this->createPageButton(1,0,$this->internalPageCssClass,false,$i==$currentPage);
    //middle
    if($ellipsis == &#39;both&#39;){
      $buttons[] = "<span style=&#39;background:#a3a3a3&#39;>...</span>";
    }
    for($i=$beginPage;$i<=$endPage;++$i){
      if($ellipsis == &#39;left&#39; && $i == $beginPage){
        $buttons[] = "<span style=&#39;background:#a3a3a3&#39;>...</span>";
      }
      $buttons[]=$this->createPageButton($i+1,$i,$this->internalPageCssClass,false,$i==$currentPage);
      if($ellipsis == &#39;right&#39; && $i == $endPage){
        $buttons[] = "<span style=&#39;background:#a3a3a3&#39;>...</span>";
      }
    }  
    if($ellipsis == &#39;both&#39;){
      $buttons[] = "<span style=&#39;background:#a3a3a3&#39;>...</span>";
    }
    // last
    $buttons[]=$this->createPageButton($pageCount,$pageCount - 1,$this->internalPageCssClass,false,$i==$currentPage);
    // internal pages end
    // next page
    if(($page=$currentPage+1)>=$pageCount-1)
      $page=$pageCount-1;
    if($currentPage == ($pageCount-1)){
      $buttons[] = "<span style=&#39;background:#a3a3a3&#39;>下一頁></span>";
    }else{
      $buttons[]=$this->createPageButton($this->nextPageLabel,$page,$this->nextPageCssClass,$currentPage>=$pageCount-1,false);
    }
    // last page
    //$buttons[]=$this->createPageButton($this->lastPageLabel,$pageCount-1,$this->lastPageCssClass,$currentPage>=$pageCount-1,false);

    return $buttons;
  }

  /**
   * Creates a page button.
   * You may override this method to customize the page buttons.
   * @param string $label the text label for the button
   * @param integer $page the page number
   * @param string $class the CSS class for the page button.
   * @param boolean $hidden whether this page button is visible
   * @param boolean $selected whether this page button is selected
   * @return string the generated button
   */
  protected function createPageButton($label,$page,$class,$hidden,$selected)
  {
    if($hidden || $selected)
      $class.=&#39; &#39;.($hidden ? $this->hiddenPageCssClass : $this->selectedPageCssClass);
    if ($selected) {
      $result = "<span>" . ++$page . "</span>";
    } else {
      $result = CHtml::link($label,$this->createPageUrl($page));
    }
    return $result;
  }

  /**
   * @return array the begin and end pages that need to be displayed.
   */
  protected function getPageRange()
  {
    $currentPage=$this->getCurrentPage();
    $pageCount=$this->getPageCount();
    /*$beginPage=max(0, $currentPage-(int)($this->maxButtonCount/2));
    if(($endPage=$beginPage+$this->maxButtonCount-1)>=$pageCount)
    {
      $endPage=$pageCount-1;
      $beginPage=max(0,$endPage-$this->maxButtonCount+1);
    }*/
    if($pageCount > $this->maxButtonCount){
      if($currentPage > 4 && $currentPage < ($pageCount - 4)){
        // print_r(&#39;a&#39;);
        $beginPage = $currentPage - 2;
        $endPage = $currentPage + 2;
        $ellipsis = &#39;both&#39;;
      }else{
        $beginPage=max(1, $currentPage-(int)($this->maxButtonCount/2));
        if($beginPage == 1){
          $ellipsis = &#39;right&#39;;
        }else{
          $ellipsis = &#39;left&#39;;
        }
        if(($endPage=$beginPage+$this->maxButtonCount-1)>=$pageCount)
        {
          // print_r(&#39;b&#39;);
          $endPage=$pageCount-2;
          $beginPage=max(1,$endPage-$this->maxButtonCount+1);
        }elseif(($endPage=$beginPage+$this->maxButtonCount-1)>=$pageCount-2){
          // print_r(&#39;c&#39;);
          $endPage=$pageCount-2;
        }

      }
    }else{
      $beginPage=max(1, $currentPage-(int)($this->maxButtonCount/2));
      if(($endPage=$beginPage+$this->maxButtonCount-1)>=$pageCount)
      {
        $endPage=$pageCount-2;
        $beginPage=max(1,$endPage-$this->maxButtonCount+1);
      }
    }

    return array($beginPage,$endPage, $ellipsis);
  }

  /**
   * Registers the needed client scripts (mainly CSS file).
   */
  public function registerClientScript()
  {
    if($this->cssFile!==false)
      self::registerCssFile($this->cssFile);
  }

  /**
   * Registers the needed CSS file.
   * @param string $url the CSS URL. If null, a default CSS URL will be used.
   */
  public static function registerCssFile($url=null)
  {
    if($url===null)
      $url=CHtml::asset(Yii::getPathOfAlias(&#39;system.web.widgets.pagers.pager&#39;).&#39;.css&#39;);
    Yii::app()->getClientScript()->registerCssFile($url);
  }
}
登录后复制

3、调用方式

在View里的相应widget,定义pager的class为自定义的分页器类名即可,参考:

$this->widget(&#39;zii.widgets.CListView&#39;, array(
  &#39;dataProvider&#39;=>$dataProvider,
  &#39;itemView&#39;=>&#39;_view_t&#39;,
  &#39;pager&#39;=>array(
  &#39;class&#39;=>&#39;MyPager&#39;,
 )
));
登录后复制

以上就是php重写分页器CLinkPager的示例代码分享的详细内容,更多请关注php中文网其它相关文章!

智能AI问答
PHP中文网智能助手能迅速回答你的编程问题,提供实时的代码和解决方案,帮助你解决各种难题。不仅如此,它还能提供编程资源和学习指导,帮助你快速提升编程技能。无论你是初学者还是专业人士,AI智能助手都能成为你的可靠助手,助力你在编程领域取得更大的成就。
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
关于CSS思维导图的课件在哪? 课件
凡人来自于2024-04-16 10:10:18
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2024 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号