Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gargron/paginator
Minimal PHP paginator class. Generates pagination navigation based on total items number and offset.
https://github.com/gargron/paginator
Last synced: 13 days ago
JSON representation
Minimal PHP paginator class. Generates pagination navigation based on total items number and offset.
- Host: GitHub
- URL: https://github.com/gargron/paginator
- Owner: Gargron
- Created: 2012-03-23T16:33:41.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-01-27T12:36:19.000Z (almost 12 years ago)
- Last Synced: 2024-10-04T18:23:32.461Z (about 1 month ago)
- Language: PHP
- Homepage:
- Size: 101 KB
- Stars: 8
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Paginator
Very small PHP class to generate pagination links.
## Usage
In your controller/route:
'to_persist_on_paginator_links');
$paginator = new Gargron\Paginator('/example/url', $offset, $per_page, $total_items, $query_items);
?>In your view or wherever you want the links rendered:
links(); ?>
## Alternative usage
If you don't want to count the total number of results (as it may be an expensive and unneccessary query),
the paginator can render simple next/previous links instead, but guessing if the respective link is needed.'to_persist_on_paginator_links');
$paginator = new Gargron\Paginator('/example/url', $offset, $per_page, null, $query_items);
$paginator->currentFetched = $fetched;In your view or where you want the links rendered:
links(); ?>
The logic behind this is very simple. If the number of actually fetched items is greater than the number
of items we want to display per page, it means there *is* a next page available. As for the previous link,
if the offset is greater than 0, there must be a previous page.## Localization (and dependency)
The class uses the function `__()` when rendering the links. If you are not using a framework
that already defines that function, you can define it as follows:function __($key)
{
$translations = array(
'pagination.first' => 'First',
'pagination.previous' => 'Previous',
'pagination.next' => 'Next',
'pagination.last' => 'Last',
);
return array_key_exists($key, $translations) ? $translations[$key] : $key;
}I understand that adding a makedo function like that may not seem optimal, but if you are ever going
to localize your application, you'll be happy your Paginator class doesn't need any monkeypatching!## Example of generated mark-up
### License
Paginator is released under the [MIT license](http://www.opensource.org/licenses/MIT).