SimplePagination implements PaginationInterface
Table of Contents
Interfaces
- PaginationInterface
- An interface that defines methods needed to implement a pagination
Properties
Methods
- __construct() : mixed
- getAllPageNumbers() : array<string|int, int>
- Must return a list of all page numbers.
- getEndRecordNumber() : int
- Must return the human-readable index of the last paginated item
- getFirstPageNumber() : int
- Must return the first page number, usually this will return 1
- getLastPageNumber() : int
- Must return the last page number, usually this will return the total amount of pages
- getNextPageNumber() : int|null
- Must return the next page number
- getPreviousPageNumber() : int|null
- Must return the previous page number
- getStartRecordNumber() : int
- Must return the human-readable index of the first paginated item
Properties
$paginator
protected
PaginatorInterface
$paginator
Methods
__construct()
public
__construct(PaginatorInterface $paginator) : mixed
Parameters
- $paginator : PaginatorInterface
getAllPageNumbers()
Must return a list of all page numbers.
public
getAllPageNumbers() : array<string|int, int>
Return values
array<string|int, int>getEndRecordNumber()
Must return the human-readable index of the last paginated item
public
getEndRecordNumber() : int
Example: given a set of 10 total items, 5 items per page and the current page being 2, the end record number is 10.
Page 1: Records 1-5 Page 2: Records 6-10
Return values
intgetFirstPageNumber()
Must return the first page number, usually this will return 1
public
getFirstPageNumber() : int
Return values
intgetLastPageNumber()
Must return the last page number, usually this will return the total amount of pages
public
getLastPageNumber() : int
Return values
intgetNextPageNumber()
Must return the next page number
public
getNextPageNumber() : int|null
Is allowed to return null to indicate that there is no next page, e.g. when being on the last page
Return values
int|nullgetPreviousPageNumber()
Must return the previous page number
public
getPreviousPageNumber() : int|null
Is allowed to return null to indicate that there is no previous page, e.g. when being on the first page
Return values
int|nullgetStartRecordNumber()
Must return the human-readable index of the first paginated item
public
getStartRecordNumber() : int
Example: given a set of 10 total items, 5 items per page and the current page being 2, the start record number is 6:
Page 1: Records 1-5 Page 2: Records 6-10