paginator.php 5.2 KB

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