data\Pagination $urlManager

$urlManager public property The URL manager used for creating pagination URLs. If not set, the "urlManager" application component will be used. public yii\web\UrlManager $urlManager = null

data\Pagination $route

$route public property The route of the controller action for displaying the paged contents. If not set, it means using the currently requested route. public string $route = null

data\Pagination $totalCount

$totalCount public property Total number of items. public integer $totalCount = 0

data\Pagination $pageSizeLimit

$pageSizeLimit public property The page size limits. The first array element stands for the minimal page size, and the second the maximal page size. If this is false, it means $pageSize should always return the value of $defaultPageSize. public array|false $pageSizeLimit = [1, 50]

data\Pagination $pageSize

$pageSize public property The number of items per page. If it is less than 1, it means the page size is infinite, and thus a single page contains all items. public integer getPageSize ( )public void setPageSize ( $value, $validatePageSize = false )

data\Pagination $pageParam

$pageParam public property Name of the parameter storing the current page index. See also $params. public string $pageParam = 'page'

data\Pagination $page

$page public property The zero-based current page number. public integer getPage ( $recalculate = false )public void setPage ( $value, $validatePage = false )

data\Pagination $pageCount

$pageCount public read-only property Number of pages public integer getPageCount ( )

data\Pagination $links

$links public read-only property The links for navigational purpose. The array keys specify the purpose of the links (e.g. LINK_FIRST), and the array values are the corresponding URLs. public array getLinks ( $absolute = false )

data\Pagination $offset

$offset public read-only property The offset of the data. This may be used to set the OFFSET value for a SQL statement for fetching the current page of data. public integer getOffset ( )