paginator.php 4.8 KB

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