A framework agnostic, smart pagination library for PHP. Just a few lines of code and fully functional pagination is ready.
Paginate your records with Strana. Strana will slice(limit and offset) these records, generate pagination links for you and reads page number from them, all automatically.
- Built-in adapters for Doctrine, Eloquent (Laravel), Pixie, PHP Array and you can do it manually.
- Readable syntax
- Add Infinite Scroll with one line
- It automatically detects which DBAL you are using.
- Styles automatically with Twitter Bootstrap, Zurb Foundation and most of other CSS frameworks.
Basically Strana makes it very easy, like the code below:
$paginator = $strana->perPage(10)->make($records);
That's basically it.
// Make sure you have Composer's autoload file included
require 'vendor/autoload.php';
$strana = new \Strana\Paginator();
$records = array(1, 2, 3, .... 100);
$paginator = $strana->perPage(10)->make($records);
// Loop paginated items
foreach ($paginator as $item) {
echo $item['field_name'] . '<br>';
}
// Print pagination links
echo '<br><br>' . $paginator;
There are some advanced options which are documented below. Sold? Lets install.
Strana uses Composer to make things easy, its a requirement.
Learn to use composer and add this to require section (in your composer.json):
"usmanhalalit/strana": "1.*@dev"
And run:
composer update
Library on Packagist.
Strana has built in adapters for Doctrine Dbal, Laravel Eloquent, Pixie and PHP native arrays. If you want to paginate from any of these then you're in luck. More adapters will come according to feedback.
Prepare your database or array records:
Doctrine Dbal Example:
$records = $qb->select('*')->from('sample', 'sample');
Laravel Eloquent (or Query Builder) Example:
$records = Capsule::select('*')->from('sample');
Pixie Example:
$records = QB::select('*')->from('sample');
Array Example:
$records = array(1, 2, 3, 4, 5);
Paginate your records with Strana. Strana will slice(limit and offset) these records, generate pagination links for you and reads page number from them, all automatically.
$strana = new \Strana\Paginator();
$paginator = $strana->perPage(10)->make($records);
Loop paginated records to display:
foreach ($paginator as $item) {
echo $item['field'] . '<br>';
}
Print your pagination links:
echo $paginator;
It will produce something like this:
Strana comes with out of the box Infinite Scrolling, enable it with just one method.
$strana->infiniteScroll()->perPage(10)->make($records);
And then wrap all your pagination items and pagination links with certain CSS classes, like the example below.
echo '<div class="container">';
foreach ($paginator as $item) {
print('<div class="item">' . $item['t_value'] . '</div>');
}
echo '<br><br>' . $paginator;
echo '</div>';
That's it, you're done with infinite scrolling.
Strana uses the awesome Infinite Ajax Scroll jQuery plugin. All config options supported by this plugin can be passed with Strana.
$iasConfig = array(
'loaderDelay' => 600,
'loader' => '<img src="images/loader.gif"/>',
);
$strana->infiniteScroll($iasConfig)->perPage(10)->make($records);
Cool, yeah?
Number of items on per page, default 10.
Which page to show, default is read from query string else 1.
Enable Infinite Scrolling using Ajax. Options can be passed using $config
.
Make and return paginator object.
$records
= records to be paginated.
$adapter
= which adapter you want to use as string, DoctrineDbal
, Eloquent
, Pixie
, Array
and so. If omitted or a falsy value is given then Strana is smart enough to detect the adapter itself.
If you want to use your own(custom) adapter then pass the object/instance here. Your custom adapter must implement Strana\Interfaces\CollectionAdapter
interface.
$config
= all Strana config can be passed here too, as an array. like $config = array('maximumPages' => 7)
make()
method returns an instance of Strana\RecordSet
class. Its a polymorphic object, for example:
$paginator = $strana->make($records);
Here, if you loop $paginator
with foreach
then it will work like an array and iterate through paginated items, if you echo
$paginator
it will work like a string and print the pagination links. And of course you can use like a class object.
$paginator->records()
will return paginated records.
$paginator->total()
will return total records count.
$paginator->links()
will return pagination links.
If you are not using the database tool whose adapter ships with Strana then you can build your own adapter with ease. Create your class which must implement Strana\Interfaces\CollectionAdapter
.
Example adapter, please read comments to understand.
<?php
use Strana\ConfigHelper;
use Strana\Interfaces\CollectionAdapter;
class CustomAdapter implements CollectionAdapter{
/**
* @var \Strana\ConfigHelper
* Config helper is a helper class, which gives you config values
* used by Strana.
*/
protected $configHelper;
/**
* @var
*/
protected $records;
public function __construct($records, ConfigHelper $configHelper)
{
$this->records = $records;
$this->configHelper = $configHelper;
}
/**
* This method should limit and offset your records and return.
*/
public function slice()
{
// Here you will get the database object passed to Strana.
// Clone it.
$records = clone($this->records);
// Get the limit number from Strana config
$limit = $this->configHelper->getLimit();
// Get the offset number from Strana config
$offset = $this->configHelper->getOffset();
// Limit your records
$records->limit($limit);
// Offset your records
$records->offset($offset);
// Return your sliced records
return $records->get();
}
/**
* This method should return total count of all of your records.
*/
public function total()
{
// Here you will get the database object passed to Strana.
// Clone it.
$records = clone($this->records);
// Return your total records count, unsliced.
return $records->count();
}
}
Please also look at the ArrayAdapter
to get more idea.
$strana = new \Strana\Paginator();
$configHelper = new \Strana\ConfigHelper($strana->getConfig());
$adapter = new CustomAdapter($yourRecords, $configHelper);
$paginator = $paginatorClass->make($yourRecords, $adapter);
© 2013 Muhammad Usman. Licensed under MIT license.