Paginator\Adapter\Model

extends abstract class Phalcon\Paginator\Adapter

implements Phalcon\Paginator\AdapterInterface

Source on GitHub

This adapter allows to paginate data using a Phalcon\Mvc\Model resultset as a base.

1
2
3
4
5
6
7
8
9
10
11
use Phalcon\Paginator\Adapter\Model;
 
 $paginator = new Model(
     [
         'data'  => Robots::find(),
         'limit' => 25,
         'page'  => $currentPage
     ]
 );
 
 $paginate = $paginator->getPaginate();

Methods

public __construct (array $config)

Phalcon\Paginator\Adapter\Model constructor

public getPaginate ()

Returns a slice of the resultset to show in the pagination

public setCurrentPage (mixed $page) inherited from Phalcon\Paginator\Adapter

Set the current page number

public setLimit (mixed $limitRows) inherited from Phalcon\Paginator\Adapter

Set current rows limit

public getLimit () inherited from Phalcon\Paginator\Adapter

Get current rows limit

doc_Phalcon
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.