paginator.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <?php namespace System;
  2. class Paginator {
  3. /**
  4. * The results for the current page.
  5. *
  6. * @var array
  7. */
  8. public $results;
  9. /**
  10. * The total number of results.
  11. *
  12. * @var int
  13. */
  14. public $total;
  15. /**
  16. * The current page.
  17. *
  18. * @var int
  19. */
  20. public $page;
  21. /**
  22. * The number of items per page.
  23. *
  24. * @var int
  25. */
  26. public $per_page;
  27. /**
  28. * The last page number.
  29. *
  30. * @var int
  31. */
  32. public $last_page;
  33. /**
  34. * Create a new Paginator instance.
  35. *
  36. * @param array $results
  37. * @param int $total
  38. * @param int $per_page
  39. * @return void
  40. */
  41. public function __construct($results, $total, $per_page)
  42. {
  43. $this->page = static::page($total, $per_page);
  44. $this->per_page = $per_page;
  45. $this->results = $results;
  46. $this->total = $total;
  47. }
  48. /**
  49. * Get the current page from the request query string.
  50. *
  51. * The page will be validated and adjusted if it is less than 1 or
  52. * greater than the last page number.
  53. *
  54. * @param int $total
  55. * @param int $per_page
  56. * @return int
  57. */
  58. public static function page($total, $per_page)
  59. {
  60. $last_page = ceil($total / $per_page);
  61. $page = Input::get('page', 1);
  62. if (is_numeric($page) and $page > $last_page)
  63. {
  64. return $last_page;
  65. }
  66. return (filter_var($page, FILTER_VALIDATE_INT) === false or $page < 1) ? 1 : $page;
  67. }
  68. /**
  69. * Create the HTML pagination links.
  70. *
  71. * @param int $adjacent
  72. * @return string
  73. */
  74. public function links($adjacent = 3)
  75. {
  76. if ($this->last_page() > 1)
  77. {
  78. return '<div class="pagination">'.$this->previous().$this->numbers($adjacent).$this->next();
  79. }
  80. return '';
  81. }
  82. /**
  83. * Generate the HTML numeric page links.
  84. *
  85. * @param int $adjacent
  86. * @return string
  87. */
  88. public function numbers($adjacent = 3)
  89. {
  90. // If there are not enough pages to make it worth sliding, we will show all of the pages.
  91. //
  92. // We add "7" for the constant elements in a slider: the first and last two links, the
  93. // current page, and the two "..." strings.
  94. return ($this->last_page() < 7 + ($adjacent * 2)) ? $this->range(1, $this->last_page()) : $this->slider($adjacent);
  95. }
  96. /**
  97. * Build sliding list of HTML numeric page links.
  98. *
  99. * @param int $adjacent
  100. * @return string
  101. */
  102. protected function slider($adjacent)
  103. {
  104. $pagination = '';
  105. if ($this->page <= $adjacent * 2)
  106. {
  107. // Buffer the current page with four pages to the right. Any more pages will interfere with hiding.
  108. $pagination .= $this->range(1, 4 + ($adjacent * 2)).$this->ending();
  109. }
  110. elseif ($this->page >= $this->last_page() - ($adjacent * 2))
  111. {
  112. // Buffer with at least two pages to the left of the current page.
  113. $pagination .= $this->beginning().$this->range($this->last_page() - 2 - ($adjacent * 2), $this->last_page());
  114. }
  115. else
  116. {
  117. $pagination .= $this->beginning().$this->range($this->page - $adjacent, $this->page + $adjacent).$this->ending();
  118. }
  119. return $pagination;
  120. }
  121. /**
  122. * Generate the "previous" HTML link.
  123. *
  124. * @param string $language
  125. * @return string
  126. */
  127. public function previous($language = null)
  128. {
  129. $text = Lang::line('pagination.previous')->get($language);
  130. if ($this->page > 1)
  131. {
  132. return HTML::link(Request::uri().'?page='.($this->page - 1), $text, array('class' => 'prev_page')).' ';
  133. }
  134. return HTML::span($text, array('class' => 'disabled prev_page')).' ';
  135. }
  136. /**
  137. * Generate the "next" HTML link.
  138. *
  139. * @param string $language
  140. * @return string
  141. */
  142. public function next($language = null)
  143. {
  144. $text = Lang::line('pagination.next')->get($language);
  145. if ($this->page < $this->last_page())
  146. {
  147. return HTML::link(Request::uri().'?page='.($this->page + 1), $text, array('class' => 'next_page'));
  148. }
  149. return HTML::span($text, array('class' => 'disabled next_page'));
  150. }
  151. /**
  152. * Build the first two page links for a sliding page range.
  153. *
  154. * @return string
  155. */
  156. protected function beginning()
  157. {
  158. return $this->range(1, 2).' ... ';
  159. }
  160. /**
  161. * Build the last two page links for a sliding page range.
  162. *
  163. * @return string
  164. */
  165. protected function ending()
  166. {
  167. return ' ... '.$this->range($this->last_page() - 1, $this->last_page());
  168. }
  169. /**
  170. * Calculate the last page based on the last page and the items per page.
  171. *
  172. * @return int
  173. */
  174. protected function last_page()
  175. {
  176. return ceil($this->total / $this->per_page);
  177. }
  178. /**
  179. * Build a range of page links.
  180. *
  181. * For the current page, an HTML span element will be generated instead of a link.
  182. *
  183. * @param int $start
  184. * @param int $end
  185. * @return string
  186. */
  187. protected function range($start, $end)
  188. {
  189. $pages = '';
  190. for ($i = $start; $i <= $end; $i++)
  191. {
  192. $pages .= ($this->page == $i) ? HTML::span($i, array('class' => 'current')).' ' : HTML::link(Request::uri().'?page='.$i, $i).' ';
  193. }
  194. return $pages;
  195. }
  196. }