kilte/silex-pagination

This package is abandoned and no longer maintained. The author suggests using the amstaffix/silex-pagination package instead.

PaginationServiceProvider for Silex micro framework

1.1.2 2016-07-05 21:32 UTC

This package is not auto-updated.

Last update: 2022-02-01 12:29:36 UTC


README

A simple pagination provider for Silex

Downloads License

Requirements

  • PHP >= 5.3.3

Usage

$app->register(new \Kilte\Silex\Pagination\PaginationServiceProvider);
$pages = $app['pagination'](100, 500);

More information available here

Options

  • 'pagination.per_page' - Items per page (20 by default)
  • 'pagination.neighbours' - Number of neighboring pages at the left and the right sides (4 by default)

How to use it in the my "views"?

See example for more information.

Traits

\Kilte\Silex\Pagination\PaginationTrait adds the following shortcut:

object pagination(int $total[, int $current[, int $perPage[, int $neighbours = 4]]]) - is alias for $app['pagination']()

Tests

$ composer install
$ vendor/bin/phpunit

Changelog

1.1.1 [31.08.14]

  • Added unit tests
  • Other small improvements

1.1.0 [29.06.2014]

  • Updated pagination to 1.1.0

1.0.1 [26.02.2014]

  • Moved pagination service to another library

1.0.0 [31.12.2013]

  • First release

Contributing

  • Fork it
  • Create your feature branch (git checkout -b awesome-feature)
  • Make your changes
  • Write/update tests, if necessary
  • Update README.md, if necessary
  • Push your branch to origin (git push origin awesome-feature)
  • Send pull request
  • ???
  • PROFIT!!!

Do not forget merge upstream changes:

git remote add upstream https://github.com/AmsTaFFix/silex-pagination
git checkout master
git pull upstream
git push origin master

Now you can to remove your branch:

git branch -d awesome-feature
git push origin :awesome-feature

LICENSE

The MIT License (MIT)