paginator.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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. $this->last_page = ceil($total / $per_page);
  48. }
  49. /**
  50. * Get the current page from the request query string.
  51. *
  52. * The page will be validated and adjusted if it is less than one or greater than the last page.
  53. *
  54. * @param int $total
  55. * @param int $per_page
  56. * @return int
  57. */
  58. public static function page($total, $per_page)
  59. {
  60. if (is_numeric($page = Input::get('page', 1)) and $page > $last_page = ceil($total / $per_page))
  61. {
  62. return $last_page;
  63. }
  64. return (filter_var($page, FILTER_VALIDATE_INT) === false or $page < 1) ? 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() : '';
  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. * Note: "7" is added to the adjacent range to account for the seven constant elements
  82. * in a slider: the first and last two links, the current page, and the two "..." strings.
  83. *
  84. * @param int $adjacent
  85. * @return string
  86. */
  87. private function numbers($adjacent = 3)
  88. {
  89. return ($this->last_page < 7 + ($adjacent * 2)) ? $this->range(1, $this->last_page) : $this->slider($adjacent);
  90. }
  91. /**
  92. * Build sliding list of HTML numeric page links.
  93. *
  94. * @param int $adjacent
  95. * @return string
  96. */
  97. private function slider($adjacent)
  98. {
  99. if ($this->page <= $adjacent * 2)
  100. {
  101. return $this->range(1, 4 + ($adjacent * 2)).$this->ending();
  102. }
  103. elseif ($this->page >= $this->last_page - ($adjacent * 2))
  104. {
  105. return $this->beginning().$this->range($this->last_page - 2 - ($adjacent * 2), $this->last_page);
  106. }
  107. else
  108. {
  109. return $this->beginning().$this->range($this->page - $adjacent, $this->page + $adjacent).$this->ending();
  110. }
  111. }
  112. /**
  113. * Generate the "previous" HTML link.
  114. *
  115. * @return string
  116. */
  117. public function previous()
  118. {
  119. $text = Lang::line('pagination.previous')->get();
  120. if ($this->page > 1)
  121. {
  122. return HTML::link(Request::uri().'?page='.($this->page - 1), $text, array('class' => 'prev_page')).' ';
  123. }
  124. return HTML::span($text, array('class' => 'disabled prev_page')).' ';
  125. }
  126. /**
  127. * Generate the "next" HTML link.
  128. *
  129. * @return string
  130. */
  131. public function next()
  132. {
  133. $text = Lang::line('pagination.next')->get();
  134. if ($this->page < $this->last_page)
  135. {
  136. return HTML::link(Request::uri().'?page='.($this->page + 1), $text, array('class' => 'next_page'));
  137. }
  138. return HTML::span($text, array('class' => 'disabled next_page'));
  139. }
  140. /**
  141. * Build the first two page links for a sliding page range.
  142. *
  143. * @return string
  144. */
  145. private function beginning()
  146. {
  147. return $this->range(1, 2).'<span class="dots">...</span>';
  148. }
  149. /**
  150. * Build the last two page links for a sliding page range.
  151. *
  152. * @return string
  153. */
  154. private function ending()
  155. {
  156. return '<span class="dots">...</span>'.$this->range($this->last_page - 1, $this->last_page);
  157. }
  158. /**
  159. * Build a range of page links.
  160. *
  161. * For the current page, an HTML span element will be generated instead of a link.
  162. *
  163. * @param int $start
  164. * @param int $end
  165. * @return string
  166. */
  167. private function range($start, $end)
  168. {
  169. $pages = '';
  170. for ($i = $start; $i <= $end; $i++)
  171. {
  172. $pages .= ($this->page == $i) ? HTML::span($i, array('class' => 'current')).' ' : HTML::link(Request::uri().'?page='.$i, $i).' ';
  173. }
  174. return $pages;
  175. }
  176. }