paginator.php 5.9 KB

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