Sin descripción
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.

PageLogic.php 7.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2019-07-30
  12. */
  13. namespace weapp\Ask\logic;
  14. class PageLogic{
  15. public $firstRow; // 起始行数
  16. public $listRows; // 列表每页显示行数
  17. public $parameter; // 分页跳转时要带的参数
  18. public $totalRows; // 总行数
  19. public $totalPages; // 分页总页面数
  20. public $rollPage = 11;// 分页栏每页显示的页数
  21. public $lastSuffix = true; // 最后一页是否显示总页数
  22. public $p = 'p'; //分页参数名
  23. public $url = ''; //当前链接URL
  24. public $nowPage = 1;
  25. public $request = null;
  26. public $page_name = '[PAGE]'; //页面替换字符串
  27. // 分页显示定制
  28. private $config = array(
  29. 'header' => '<span class="rows">共 %TOTAL_ROW% 条记录</span>',
  30. /*
  31. 'prev' => '<<',
  32. 'next' => '>>',
  33. 'first' => '1...',
  34. 'last' => '...%TOTAL_PAGE%',
  35. */
  36. 'prev' => '上一页',
  37. 'next' => '下一页',
  38. 'first' => '首页',
  39. 'last' => '尾页',
  40. 'theme' => '%FIRST% %UP_PAGE% %LINK_PAGE% %DOWN_PAGE% %END%',
  41. );
  42. /**
  43. * 架构函数
  44. * @param array $totalRows 总的记录数
  45. * @param array $listRows 每页显示记录数
  46. * @param array $parameter 分页跳转的参数
  47. */
  48. public function __construct($totalRows, $listRows=20, $parameter = array()) {
  49. // config('VAR_PAGE') && $this->p = config('VAR_PAGE'); //设置分页参数名称
  50. /* 基础设置 */
  51. $p = input('param.p');
  52. $this->totalRows = $totalRows; //设置总记录数
  53. $this->listRows = $listRows; //设置每页显示行数
  54. $this->parameter = empty($parameter) ? input() : $parameter;
  55. if (!empty($this->parameter['s'])){
  56. unset($this->parameter['s']);
  57. }
  58. $this->nowPage = empty($p) ? 1 : intval($p);
  59. // $this->parameter = empty($parameter) ? $_REQUEST : $parameter;
  60. // $this->nowPage = empty($_REQUEST[$this->p]) ? 1 : intval($_REQUEST[$this->p]);
  61. $this->nowPage = $this->nowPage>0 ? $this->nowPage : 1;
  62. $this->firstRow = $this->listRows * ($this->nowPage - 1);
  63. /* 计算分页信息 */
  64. $this->totalPages = ceil($this->totalRows / $this->listRows)>0 ? ceil($this->totalRows / $this->listRows) : 1; //总页数
  65. null === $this->request && $this->request = request();
  66. }
  67. /**
  68. * 定制分页链接设置
  69. * @param string $name 设置名称
  70. * @param string $value 设置值
  71. */
  72. public function setConfig($name,$value) {
  73. if(isset($this->config[$name])) {
  74. $this->config[$name] = $value;
  75. }
  76. }
  77. /**
  78. * 生成链接URL
  79. * @param integer $page 页码
  80. * @return string
  81. */
  82. public function url($page){
  83. $url = $this->url;
  84. if (1 >= $page) {
  85. $url = str_replace('_p'.urlencode($this->page_name), '', $url);
  86. }
  87. if (!strstr($url, '.htm') && !preg_match('/m=([^&]+)&c=([^&]+)&a=([^&]+)/i', $url)){
  88. $url = rtrim($url, '/').'/';
  89. }
  90. return str_replace(urlencode($this->page_name), $page, $url);
  91. // $url = $this->url;
  92. // if (1 < $page) {
  93. // if (!stristr($url, '&c=') || !stristr($url, '&a=')) { // 伪静态模式
  94. // $url .= '?p='.$page;
  95. // } else {
  96. // $url .= '&p='.$page;
  97. // }
  98. // }
  99. // return $url;
  100. }
  101. /**
  102. * 组装分页链接
  103. * @return string
  104. */
  105. public function show() {
  106. if(0 == $this->totalRows) return '';
  107. /* 生成URL */
  108. $this->parameter[$this->p] = '[PAGE]';
  109. // unset($this->parameter[$this->p]);
  110. $mca = $this->request->module().'/'.$this->request->controller().'/'.$this->request->action();
  111. $this->url = U($mca, $this->parameter);
  112. // $this->url = U(ACTION_NAME, $this->parameter);
  113. if(!empty($this->totalPages) && $this->nowPage > $this->totalPages) {
  114. $this->nowPage = $this->totalPages;
  115. }
  116. /* 计算分页临时变量 */
  117. $now_cool_page = $this->rollPage/2;
  118. $now_cool_page_ceil = ceil($now_cool_page);
  119. $this->lastSuffix && $this->config['last'] = $this->totalPages;
  120. $this->config['last'] = '尾页';
  121. //上一页
  122. $up_row = $this->nowPage - 1;
  123. $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>' : '';
  124. //下一页
  125. $down_row = $this->nowPage + 1;
  126. $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>' : '';
  127. //第一页
  128. $the_first = '';
  129. if($this->totalPages > $this->rollPage && ($this->nowPage - $now_cool_page) >= 1){
  130. $the_first = '<li id="example1_previous" class="paginate_button previous disabled"><a class="first" href="' . $this->url(1) . '">' . $this->config['first'] . '</a></li>';
  131. }
  132. //最后一页
  133. $the_end = '';
  134. if($this->totalPages > $this->rollPage && ($this->nowPage + $now_cool_page) < $this->totalPages){
  135. $the_end = '<li id="example1_previous" class="paginate_button previous disabled"><a class="end" href="' . $this->url($this->totalPages) . '">' . $this->config['last'] . '</a></li>';
  136. }
  137. //数字连接
  138. $link_page = "";
  139. for($i = 1; $i <= $this->rollPage; $i++){
  140. if(($this->nowPage - $now_cool_page) <= 0 ){
  141. $page = $i;
  142. }elseif(($this->nowPage + $now_cool_page - 1) >= $this->totalPages){
  143. $page = $this->totalPages - $this->rollPage + $i;
  144. }else{
  145. $page = $this->nowPage - $now_cool_page_ceil + $i;
  146. }
  147. if($page > 0 && $page != $this->nowPage){
  148. if($page <= $this->totalPages){
  149. $link_page .= '<li class="paginate_button"><a class="num" href="' . $this->url($page) . '">' . $page . '</a></li>';
  150. }else{
  151. break;
  152. }
  153. }else{
  154. if($page > 0 && $this->totalPages != 1){
  155. // $link_page .= '<span class="current">' . $page . '</span>';
  156. $link_page .= '<li class="paginate_button active"><a tabindex="0" data-dt-idx="1" aria-controls="example1" href="javascript:void(0);">' . $page . '</a></li>';
  157. }
  158. }
  159. }
  160. //替换分页内容
  161. $page_str = str_replace(
  162. array('%HEADER%', '%NOW_PAGE%', '%UP_PAGE%', '%DOWN_PAGE%', '%FIRST%', '%LINK_PAGE%', '%END%', '%TOTAL_ROW%', '%TOTAL_PAGE%'),
  163. array($this->config['header'], $this->nowPage, $up_page, $down_page, $the_first, $link_page, $the_end, $this->totalRows, $this->totalPages),
  164. $this->config['theme']);
  165. return "<div class='dataTables_paginate paging_simple_numbers'><ul class='pagination'>{$page_str}</ul></div>";
  166. }
  167. }