| 1 | <?php |
||
| 5 | class Paginator |
||
| 6 | { |
||
| 7 | private $currentPage; |
||
| 8 | |||
| 9 | private $perPage; |
||
| 10 | |||
| 11 | private $pages; |
||
| 12 | |||
| 13 | private $twig; |
||
| 14 | |||
| 15 | 6 | public function __construct($page, $perPage, $pages, \Twig_Environment $twig) |
|
| 22 | |||
| 23 | 3 | public function render() |
|
| 31 | |||
| 32 | 3 | public function getCurrentPage() |
|
| 33 | { |
||
| 34 | 3 | return $this->currentPage; |
|
| 35 | } |
||
| 36 | |||
| 37 | 3 | public function getPerPage() |
|
| 41 | } |
||
| 42 |