paginator.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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. * The language being used by the paginator.
  35. *
  36. * @var string
  37. */
  38. public $language;
  39. /**
  40. * Create a new Paginator instance.
  41. *
  42. * @param array $results
  43. * @param int $total
  44. * @param int $per_page
  45. * @return void
  46. */
  47. public function __construct($results, $total, $per_page)
  48. {
  49. $this->page = static::page($total, $per_page);
  50. $this->per_page = $per_page;
  51. $this->results = $results;
  52. $this->total = $total;
  53. }
  54. /**
  55. * Get the current page from the request query string.
  56. *
  57. * The page will be validated and adjusted if it is less than one or greater than the last page.
  58. *
  59. * @param int $total
  60. * @param int $per_page
  61. * @return int
  62. */
  63. public static function page($total, $per_page)
  64. {
  65. $last_page = ceil($total / $per_page);
  66. $page = Input::get('page', 1);
  67. if (is_numeric($page) and $page > $last_page)
  68. {
  69. return $last_page;
  70. }
  71. return (filter_var($page, FILTER_VALIDATE_INT) === false or $page < 1) ? 1 : $page;
  72. }
  73. /**
  74. * Create the HTML pagination links.
  75. *
  76. * @param int $adjacent
  77. * @return string
  78. */
  79. public function links($adjacent = 3)
  80. {
  81. if ($this->last_page() > 1)
  82. {
  83. return '<div class="pagination">'.$this->previous().$this->numbers($adjacent).$this->next();
  84. }
  85. return '';
  86. }
  87. /**
  88. * Generate the HTML numeric page links.
  89. *
  90. * If there are not enough pages to make it worth sliding, all of the pages will be listed.
  91. *
  92. * Note: "7" is added to the adjacent range to account for the seven constant elements
  93. * in a slider: the first and last two links, the current page, and the two "..." strings.
  94. *
  95. * @param int $adjacent
  96. * @return string
  97. */
  98. private function numbers($adjacent = 3)
  99. {
  100. return ($this->last_page() < 7 + ($adjacent * 2)) ? $this->range(1, $this->last_page()) : $this->slider($adjacent);
  101. }
  102. /**
  103. * Build sliding list of HTML numeric page links.
  104. *
  105. * @param int $adjacent
  106. * @return string
  107. */
  108. private function slider($adjacent)
  109. {
  110. $pagination = '';
  111. if ($this->page <= $adjacent * 2)
  112. {
  113. $pagination .= $this->range(1, 4 + ($adjacent * 2)).$this->ending();
  114. }
  115. elseif ($this->page >= $this->last_page() - ($adjacent * 2))
  116. {
  117. $pagination .= $this->beginning().$this->range($this->last_page() - 2 - ($adjacent * 2), $this->last_page());
  118. }
  119. else
  120. {
  121. $pagination .= $this->beginning().$this->range($this->page - $adjacent, $this->page + $adjacent).$this->ending();
  122. }
  123. return $pagination;
  124. }
  125. /**
  126. * Generate the "previous" HTML link.
  127. *
  128. * @return string
  129. */
  130. public function previous()
  131. {
  132. $text = Lang::line('pagination.previous')->get($this->language);
  133. if ($this->page > 1)
  134. {
  135. return HTML::link(Request::uri().'?page='.($this->page - 1), $text, array('class' => 'prev_page')).' ';
  136. }
  137. return HTML::span($text, array('class' => 'disabled prev_page')).' ';
  138. }
  139. /**
  140. * Generate the "next" HTML link.
  141. *
  142. * @return string
  143. */
  144. public function next()
  145. {
  146. $text = Lang::line('pagination.next')->get($this->language);
  147. if ($this->page < $this->last_page())
  148. {
  149. return HTML::link(Request::uri().'?page='.($this->page + 1), $text, array('class' => 'next_page'));
  150. }
  151. return HTML::span($text, array('class' => 'disabled next_page'));
  152. }
  153. /**
  154. * Build the first two page links for a sliding page range.
  155. *
  156. * @return string
  157. */
  158. private function beginning()
  159. {
  160. return $this->range(1, 2).'<span class="dots">...</span>';
  161. }
  162. /**
  163. * Build the last two page links for a sliding page range.
  164. *
  165. * @return string
  166. */
  167. private function ending()
  168. {
  169. return '<span class="dots">...</span>'.$this->range($this->last_page() - 1, $this->last_page());
  170. }
  171. /**
  172. * Calculate the last page based on the last page and the items per page.
  173. *
  174. * @return int
  175. */
  176. private function last_page()
  177. {
  178. return ceil($this->total / $this->per_page);
  179. }
  180. /**
  181. * Build a range of page links.
  182. *
  183. * For the current page, an HTML span element will be generated instead of a link.
  184. *
  185. * @param int $start
  186. * @param int $end
  187. * @return string
  188. */
  189. private function range($start, $end)
  190. {
  191. $pages = '';
  192. for ($i = $start; $i <= $end; $i++)
  193. {
  194. $pages .= ($this->page == $i) ? HTML::span($i, array('class' => 'current')).' ' : HTML::link(Request::uri().'?page='.$i, $i).' ';
  195. }
  196. return $pages;
  197. }
  198. /**
  199. * Set the paginator language.
  200. *
  201. * @param string $language
  202. * @return Paginator
  203. */
  204. public function lang($language)
  205. {
  206. $this->language = $language;
  207. return $this;
  208. }
  209. }