2017 © Pedro Peláez
 

library pagination-service-provider

Pagination Service Provider for Silex Framework

image

development-x/pagination-service-provider

Pagination Service Provider for Silex Framework

  • Tuesday, January 3, 2017
  • by desertknight
  • Repository
  • 1 Watchers
  • 1 Stars
  • 25 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 7 Versions
  • 0 % Grown

The README.md

Sensiolab Insight Travis-CI Scrutinizer
SensioLabsInsight Build Status Scrutinizer Code Quality Code Coverage Build Status
VersionEye Packagist
Dependency Status Packagist Packagist Packagist Pre Release Packagist Pre Release

# PaginationServiceProvider

Simple pagination service for Silex Framework, with friendly template rendering, (*1)

# Requirements, (*2)


  • php>=5.3.9
  • Silex ~1.0
  • dflydev/dflydev-doctrine-orm-service-provider ^2.0

# Installation

Adding composer dependency composer require development-x/pagination-service-provider && composer install --prefer-dist, (*3)

Register new service, (*4)

<?php
new \Silex\Application;
$app = new Application();

...

$app->register(new \Pagination\PaginationServiceProvider(), array(
    'paginator.options' => array(
        'offset_pages' => 1,
        'items_per_page' => 10,
        'show_prev_next' => false
    )
));

...

return $app->run();

Use it in your controller, (*5)

$query = $app['orm.em']->getEntityRepository('\App\Entity\Entity')->createQueryBuilder('e');

$paginator = $app['paginator']->pagination($query, array());

return $app['twig']->render('layout.twig', array('paginator' => $paginator));

Render in template, (*6)

{% for item in paginator.items %}
    {# dump(item) #}
{% endfor %}

{% pagination(paginator) %}

License

MIT, see LICENSE., (*7)

TODO

  • [ ] Adding PHPUnit tests
  • [ ] Update README.md file with more informations and examples

The Versions

03/01 2017

dev-master

9999999-dev http://silex.online-demo.website/pagination-service-provider

Pagination Service Provider for Silex Framework

  Sources   Download

MIT

The Requires

  • php >=5.5.9

 

The Development Requires

silex pagination provider

03/01 2017

1.2.0

1.2.0.0 http://silex.online-demo.website/pagination-service-provider

Pagination Service Provider for Silex Framework

  Sources   Download

MIT

The Requires

  • php >=5.5.9

 

The Development Requires

silex pagination provider

18/10 2016

dev-analysis-XpRpa2

dev-analysis-XpRpa2 http://silex.online-demo.website/pagination-service-provider

Pagination Service Provider for Silex Framework

  Sources   Download

MIT

The Requires

  • php >=5.3.9

 

The Development Requires

silex pagination provider

16/07 2016

1.1.0

1.1.0.0 http://silex.online-demo.website/pagination-service-provider

Pagination Service Provider for Silex Framework

  Sources   Download

MIT

The Requires

  • php >=5.3.9

 

The Development Requires

silex pagination provider

16/07 2016

1.0.3

1.0.3.0 http://silex.online-demo.website/pagination-service-provider

Pagination Service Provider for Silex Framework

  Sources   Download

MIT

The Requires

  • php >=5.3.9

 

The Development Requires

silex pagination provider

15/05 2016

1.0.2

1.0.2.0 http://silex.online-demo.website/pagination-service-provider

Pagination Service Provider for Silex Framework

  Sources   Download

MIT

The Requires

  • php >=5.3.9

 

The Development Requires

silex pagination provider

06/05 2016

1.0.1

1.0.1.0

Pagination Service Provider for Silex Framework

  Sources   Download

MIT

by Zlatko Hristov