Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <?php
  2. namespace Think;
  3. class Page{
  4. public $firstRow; // 起始行数
  5. public $listRows; // 列表每页显示行数
  6. public $parameter; // 分页跳转时要带的参数
  7. public $totalRows; // 总行数
  8. public $totalPages; // 分页总页面数
  9. public $rollPage = 5;// 分页栏每页显示的页数
  10. public $lastSuffix = true; // 最后一页是否显示总页数
  11. public $p = 'p'; //分页参数名
  12. public $url = ''; //当前链接URL
  13. public $nowPage = 1;
  14. // 分页显示定制
  15. private $config = array(
  16. 'header' => '<span class="rows">共 %TOTAL_ROW% 条记录</span>',
  17. /*
  18. 'prev' => '<<',
  19. 'next' => '>>',
  20. 'first' => '1...',
  21. 'last' => '...%TOTAL_PAGE%',
  22. */
  23. 'prev' => '<',
  24. 'next' => '>',
  25. 'first' => '首页',
  26. 'last' => '尾页',
  27. 'theme' => '%FIRST% %UP_PAGE% %LINK_PAGE% %DOWN_PAGE% %END%',
  28. );
  29. /**
  30. * 架构函数
  31. * @param array $totalRows 总的记录数
  32. * @param array $listRows 每页显示记录数
  33. * @param array $parameter 分页跳转的参数
  34. */
  35. public function __construct($totalRows, $listRows=20, $parameter = array()) {
  36. // config('VAR_PAGE') && $this->p = config('VAR_PAGE'); //设置分页参数名称
  37. /* 基础设置 */
  38. $p = input('param.p/d');
  39. $pagesize = input('param.pagesize/d');
  40. $this->totalRows = $totalRows; //设置总记录数
  41. $this->listRows = empty($pagesize) ? $listRows : $pagesize; //设置每页显示行数
  42. $this->parameter = empty($parameter) ? input() : $parameter;
  43. $this->nowPage = empty($p) ? 1 : $p;
  44. // $this->parameter = empty($parameter) ? $_REQUEST : $parameter;
  45. // $this->nowPage = empty($_REQUEST[$this->p]) ? 1 : intval($_REQUEST[$this->p]);
  46. $this->nowPage = $this->nowPage>0 ? $this->nowPage : 1;
  47. $this->firstRow = $this->listRows * ($this->nowPage - 1);
  48. /* 计算分页信息 */
  49. $this->totalPages = ceil($this->totalRows / $this->listRows)>0 ? ceil($this->totalRows / $this->listRows) : 1; //总页数
  50. if (isMobile()) {
  51. $this->config = [
  52. 'header' => '<span class="rows">共 %TOTAL_ROW% 条记录</span>',
  53. 'prev' => '上一页',
  54. 'next' => '下一页',
  55. 'first' => '首页',
  56. 'last' => '尾页',
  57. 'theme' => '%FIRST% %UP_PAGE% %LINK_PAGE% %DOWN_PAGE% %END%',
  58. ];
  59. }
  60. }
  61. /**
  62. * 定制分页链接设置
  63. * @param string $name 设置名称
  64. * @param string $value 设置值
  65. */
  66. public function setConfig($name,$value) {
  67. if(isset($this->config[$name])) {
  68. $this->config[$name] = $value;
  69. }
  70. }
  71. /**
  72. * 生成链接URL
  73. * @param integer $page 页码
  74. * @return string
  75. */
  76. public function url($page){
  77. if (1 >= $page) {
  78. $this->url = str_replace('_p'.urlencode('[PAGE]'), '', $this->url);
  79. }
  80. static $seo_pseudo = null;
  81. null === $seo_pseudo && $seo_pseudo = config('ey_config.seo_pseudo');
  82. if ($seo_pseudo == 3 || $seo_pseudo == 2) {
  83. if (!strstr($this->url, '.htm') && !preg_match('/m=([^&]+)&c=([^&]+)&a=([^&]+)/i', $this->url)){
  84. $this->url = rtrim($this->url, '/').'/';
  85. }
  86. }
  87. return str_replace(urlencode('[PAGE]'), $page, $this->url);
  88. }
  89. /**
  90. * 组装分页链接
  91. * @return string
  92. */
  93. public function show() {
  94. if(0 == $this->totalRows) return '';
  95. /* 生成URL */
  96. $this->parameter[$this->p] = '[PAGE]';
  97. $mca = MODULE_NAME.'/'.CONTROLLER_NAME.'/'.ACTION_NAME;
  98. $this->url = U($mca, $this->parameter);
  99. if (!empty($this->totalPages) && $this->nowPage > $this->totalPages) {
  100. $this->nowPage = $this->totalPages;
  101. }
  102. /* 计算分页临时变量 */
  103. $now_cool_page = $this->rollPage/2;
  104. $now_cool_page_ceil = ceil($now_cool_page);
  105. $this->lastSuffix && $this->config['last'] = $this->totalPages;
  106. $this->config['last'] = '尾页';
  107. //上一页
  108. $up_row = $this->nowPage - 1;
  109. $up_page = $up_row > 0 ? '<li id="example1_previous" class="paginate_button previous"><a class="prev" href="' . $this->url($up_row) . '">' . $this->config['prev'] . '</a></li>' : '';
  110. if ($this->totalPages > 1 && $up_row <= 0) {
  111. $up_page = '<li id="example1_previous" class="paginate_button previous disabled"><a class="prev" href="javascript:void(0);">' . $this->config['prev'] . '</a></li>'.$up_page;
  112. }
  113. //下一页
  114. $down_row = $this->nowPage + 1;
  115. $down_page = ($down_row <= $this->totalPages) ? '<li id="example1_next" class="paginate_button next"><a class="next" href="' . $this->url($down_row) . '">' . $this->config['next'] . '</a></li>' : '';
  116. if ($this->totalPages > 1 && $down_row > $this->totalPages) {
  117. $down_page = $down_page.'<li id="example1_next" class="paginate_button next disabled"><a class="next" href="javascript:void(0);">' . $this->config['next'] . '</a></li>';
  118. }
  119. //第一页
  120. $the_first = '';
  121. if($this->nowPage > 1 || ($this->totalPages > $this->rollPage && ($this->nowPage - $now_cool_page) >= 1)){
  122. $the_first = '<li id="example1_previous" class="paginate_button previous"><a class="first" href="' . $this->url(1) . '">' . $this->config['first'] . '</a></li>';
  123. } else if ($this->totalPages > 1) {
  124. $the_first = '<li id="example1_previous" class="paginate_button previous disabled"><a class="first" href="javascript:void(0);">' . $this->config['first'] . '</a></li>';
  125. }
  126. //最后一页
  127. $the_end = '';
  128. if($this->nowPage < $this->totalPages || ($this->totalPages > $this->rollPage && ($this->nowPage + $now_cool_page) < $this->totalPages)){
  129. $the_end = '<li id="example1_previous" class="paginate_button previous"><a class="end" href="' . $this->url($this->totalPages) . '">' . $this->config['last'] . '</a></li>';
  130. } else if ($this->totalPages > 1) {
  131. $the_end = '<li id="example1_previous" class="paginate_button previous disabled"><a class="end" href="javascript:void(0);">' . $this->config['last'] . '</a></li>';
  132. }
  133. //数字连接
  134. $link_page = "";
  135. if (!isMobile()) {
  136. for ($i = 1; $i <= $this->rollPage; $i++) {
  137. if(($this->nowPage - $now_cool_page) <= 0 ){
  138. $page = $i;
  139. }elseif(($this->nowPage + $now_cool_page - 1) >= $this->totalPages){
  140. $page = $this->totalPages - $this->rollPage + $i;
  141. }else{
  142. $page = $this->nowPage - $now_cool_page_ceil + $i;
  143. }
  144. if($page > 0 && $page != $this->nowPage){
  145. if($page <= $this->totalPages){
  146. $link_page .= '<li class="paginate_button"><a class="num" href="' . $this->url($page) . '">' . $page . '</a></li>';
  147. }else{
  148. break;
  149. }
  150. }else{
  151. if($page > 0 && $this->totalPages != 1){
  152. // $link_page .= '<span class="current">' . $page . '</span>';
  153. $link_page .= '<li class="paginate_button active"><a tabindex="0" data-dt-idx="1" aria-controls="example1" href="javascript:void(0);">' . $page . '</a></li>';
  154. }
  155. }
  156. }
  157. }
  158. //替换分页内容
  159. $page_str = str_replace(
  160. array('%HEADER%', '%NOW_PAGE%', '%UP_PAGE%', '%DOWN_PAGE%', '%FIRST%', '%LINK_PAGE%', '%END%', '%TOTAL_ROW%', '%TOTAL_PAGE%'),
  161. array($this->config['header'], $this->nowPage, $up_page, $down_page, $the_first, $link_page, $the_end, $this->totalRows, $this->totalPages),
  162. $this->config['theme']);
  163. return "<div class='dataTables_paginate paging_simple_numbers'><ul class='pagination'>{$page_str}</ul></div>";
  164. }
  165. }