Yii 如何将bootstrap.widgets.TbGridView分页更改为粘贴在下面的图像?

Yii 如何将bootstrap.widgets.TbGridView分页更改为粘贴在下面的图像?,yii,pagination,yii-booster,Yii,Pagination,Yii Booster,我的小部件是:- $this->widget('bootstrap.widgets.TbGridView',array( 'type'=>'striped bordered condensed', 'id'=>'accounts-grid', 'dataProvider'=>$model->search(), 'columns'=>array( array(

我的小部件是:-

$this->widget('bootstrap.widgets.TbGridView',array(
        'type'=>'striped bordered condensed',
        'id'=>'accounts-grid',
        'dataProvider'=>$model->search(),
        'columns'=>array(
                array(
                'name'=>'id',
                   'header'=>'ID',
                   'type'=>'raw',
                   'value'=>'$data->id',
                   'htmlOptions'=>array('width'=>'40'),
                        'url'=>'Yii::app()->createUrl("/meetings/view", array("id"=>$data["id"]))',
           ),
                'name',
                'phone',
                'mobile',
                'type',
                'account_manager',
                'status',
                array(
                        'class'=>'bootstrap.widgets.TbButtonColumn',
                ),
        ),
));
我需要对这个小部件进行这种分页


如果您有任何想法,请帮助我。

创建一个php文件CustomPager.php并将其放入components文件夹

<?php
class CustomPager extends CLinkPager {

    /**
     * @var string the text shown before page buttons. Defaults to ''.
     */
    public $header = '';

    /**
     * @var string the URL of the CSS file used by this pager.
     * Defaults to false, meaning that no CSS will be included.
     */
    public $cssFile = false;

    /**
     * @var boolean whether to display the first and last items.
     */
    public $displayFirstAndLast = false;

    /**
     * Initializes the pager by setting some default property values.
     */
    public function init() {
        if ($this->nextPageLabel === null)
            $this->nextPageLabel = Yii::t('bootstrap', 'Next') . ' &rarr;';
        if ($this->prevPageLabel === null)
            $this->prevPageLabel = '&larr; ' . Yii::t('bootstrap', 'Previous');
        if ($this->firstPageLabel === null)
            $this->firstPageLabel = Yii::t('bootstrap', 'First');
        if ($this->lastPageLabel === null)
            $this->lastPageLabel = Yii::t('bootstrap', 'Last');
        if (!isset($this->htmlOptions['class']))
            $this->htmlOptions['class'] = ''; // would default to yiiPager
        parent::init();
    }

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

        if (($pageCount = $this->getPageCount()) <= 1)
            return array();
        list ($beginPage, $endPage) = $this->getPageRange();
        $currentPage = $this->getCurrentPage(false); // currentPage is calculated in getPageRange()
        $buttons = array();
        /**
        * first page
        */
        if ($this->displayFirstAndLast)
            $buttons[] = $this->createPageButton($this->firstPageLabel, 0, 'first', $currentPage <= 0, false);
        /**
        * previous page
        */
        if (($page = $currentPage - 1) < 0)
            $page = 0;
        $buttons[] = $this->createPageButton($this->prevPageLabel, $page, 'previous', $currentPage <= 0, false);
        /**
        * internal page
        */
        $buttons[] = '<li class=""><a herf="">Current Page: '.($currentPage+1).' of ' .  $totalpages .' </a><li>';

        /**
        * next page
        */
        if (($page = $currentPage + 1) >= $pageCount - 1)
            $page = $pageCount - 1;
        $buttons[] = $this->createPageButton($this->nextPageLabel, $page, 'next', $currentPage >= ($pageCount - 1), false);

        /**
        * last page
        */

        if ($this->displayFirstAndLast)
            $buttons[] = $this->createPageButton($this->lastPageLabel, $pageCount - 1, 'last', $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. This could be 'page', 'first', 'last', 'next' or 'previous'.
     * @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 .= ' ' . ($hidden ? 'disabled' : 'active');
        return CHtml::tag('li', array('class' => $class), CHtml::link($label, $this->createPageUrl($page)));
    }



  }
?>

请看答案:@Ulugbek Komilovich请看我发送的信息,我需要的是分页的镜头,而不是正常的。
'pager'=>array(
        'class'=>'CustomPager',
        ),