loveorigami/yii2-reversed-pagination Yii2 reversed pagination

behaviorslug

Yii2-reversed-pagination

Installation

Composer

The preferred way to install this extension is through Composer.

Either run php composer.phar require loveorigami/yii2-reversed-pagination "~2.0"

or add "loveorigami/yii2-reversed-pagination": "~2.0" to the require section of your composer.json

Using

Use for reversed pagination for Yii2.

In controller

    public function actionIndex()
    {
        $query = Article::find()->all();
        $countQuery = clone $query;
        $pages = new \loveorigami\pagination\ReversePagination(
            [
                'totalCount' => $countQuery->count(),
                'pageSize' => 10, // or in config Yii::$app->params['pageSize']
            ]
        );
        $pages->pageSizeParam = false;
        $models = $query->offset($pages->offset)
            ->limit($pages->limit)
            ->all();

        return $this->render('index',
            [
                'models'  => $models,
                'pages' => $pages,
            ]
        );
    }

In view

    foreach($models as $model): 
      // display a model...
    endforeach; 

    echo \loveorigami\pagination\ReverseLinkPager::widget([
        'pagination' => $pages,
        'registerLinkTags' => true
    ]);

Statistics

Downloads
GitHub Stars
GitHub Forks

Releases

  • 2.116 November 2014

Comments



2.1 is the latest of one release



MIT license
Stats
10 github stars & 2 github forks
0 downloads in the last day
2 downloads in the last 30 days
626 total downloads