tharangakothalawala / resultsetpaginator
Simple pagination module where it accepts a database connection to provide pagination support. Also supports plain pagination.
Installs: 1 270
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=5.3
Requires (Dev)
- mockery/mockery: ^0.9 || ^1.0@dev
- phpunit/phpunit: ~4.8 || ~6.0
This package is auto-updated.
Last update: 2024-10-27 23:41:46 UTC
README
This is a simple set of classes that provides you pagination data for a given query. This executes a query using a given database connection (PDO, mysqli). Also supports plain pagination.
Usage Examples
Pagination with known result total count
use TSK\ResultSetPaginator\Paginator\PaginationProvider; $page = empty($_GET['page']) ? 3 : $_GET['page']; $limit = empty($_GET['limit']) ? 10 : $_GET['limit']; $totalResultCount = $laravelModel->count(); // "SELECT COUNT(*) FROM table" for example $paginationProvider = new PaginationProvider($page, $limit, $totalResultCount); $paginationProvider->setVisiblePaginationRange(1); $modelItems => $laravelModel ->offset($paginationProvider->offset()) ->limit($limit) ->get(); $pagination = ''; foreach($paginationProvider->pages() as $page) { if ($page->isCurrentPage()) { $pagination .= " {$page->getDisplayValue()} "; continue; } $pagination .= " <a href='?page={$page->getPageNumber()}&limit={$limit}'>{$page->getDisplayValue()}</a> "; } echo $pagination;
The above example will produce the below output:
<< < 2 3 4 > >>
Example usage with a PDO connection (ex: Laravel)
use TSK\ResultSetPaginator\QueryExecerFactory; $page = empty($_GET['page']) ? 2 : $_GET['page']; $limit = empty($_GET['limit']) ? 10 : $_GET['limit']; $queryExecerFactory = new QueryExecerFactory(DB::connection()->getPdo(), $page, $limit); $queryExecer = $queryExecerFactory->getQueryExecer(); /** @var \PDOStatement $stmt */ $stmt = $queryExecer->query($sql); $records = $stmt->fetchAll(); $pagination = ''; foreach($queryExecer->paginationProvider()->pages() as $page) { if ($page->isCurrentPage()) { $pagination .= " {$page->getDisplayValue()} "; continue; } $pagination .= " <a href='?page={$page->getPageNumber()}&limit={$limit}'>{$page->getDisplayValue()}</a> "; } echo $pagination;
The above example will produce the below output:
<< < 1 2 3 4 5 > >>
Example usage with a mysqli connection
use TSK\ResultSetPaginator\QueryExecerFactory; $page = empty($_GET['page']) ? 2 : $_GET['page']; $limit = empty($_GET['limit']) ? 10 : $_GET['limit']; $dbConn = new mysqli('localhost', 'tharanga', 'qwerty', 'test'); $queryExecerFactory = new QueryExecerFactory($dbConn, $page, $limit); $queryExecer = $queryExecerFactory->getQueryExecer(); /** @var \mysqli_result $resultset */ $resultset = $queryExecer->query($sql); //while($row = $resultset->fetch_assoc()) { // $records[] = $row; //} $pagination = ''; foreach($queryExecer->paginationProvider()->pages() as $page) { if ($page->isCurrentPage()) { $pagination .= " {$page->getDisplayValue()} "; continue; } $pagination .= " <a href='?page={$page->getPageNumber()}&limit={$limit}'>{$page->getDisplayValue()}</a> "; } echo $pagination;