Pagination.class.php
6.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<?php
/**
* 分页处理类
*
* @version 0.1
* @author xiaoma
* @name Lib_Helper_Pagination
*
*/
class Lib_Helper_Pagination
{
/**
* 需要跨域的列表
* array ('域名前缀' => '命名空间')
*
* @var unknown_type
*/
public static $domain_list = array(
'my' => 'my',
);
/**
* 上下文对象
*
* @var Framework_YHttpRequest
*/
private $_request ;
/**
* 记录总数
*
* @var int
*/
private $_record_count = 0;
/**
* 每页条数
*
* @var int
*/
private $_page_size = null ;
/**
* 当前页码
*
* @var int
*/
private $_current_page = null ;
/**
* 条件参数
*
* @var array
*/
private $_parames = array() ;
/**
* 配置项
*
* @var unknown_type
*/
private $_options = array(
'udi' => null, //路径UDI
'model' => 'default', //分页模式
'htmlTarget' => '', //如是异步请求,需要设置请求后返回的数据往哪个节点里填充
'pageTarget' => '', //如果设置了分页容器,则将页码填充至此容器,默认填充至上面配置的htmlTarget
'loadPageCount' => 3 , //如是autoload模式,则此选项标志翻多少页后显示页码
);
/**
* 初始化
*
* @param int $count
* @param int $size
*/
public function __construct($count = 0, $pageSize=10)
{
$this->_record_count = intval($count) ;
$this->setPageSize($pageSize) ;;
$this->_request = Framework_YHttpRequest::instance();
$this->setUdi( $this->_request->requestUDI(false) );
}
/**
* 设置每页记录条数
*
* @param int $pageSize
* @return Lib_Helper_Pagination
*/
public function setPageSize($pageSize)
{
$this->_page_size = abs(intval($pageSize)) ;
return $this ;
}
/**
* 设置每页记录数
*
* @return Lib_Helper_Pagination
*/
public function setRecordCount($count)
{
$this->_record_count = intval($count);
return $this;
}
/**
* 改变请求的udi,默认为当前访问的udi
*
* @param string $udi
* @return Lib_Helper_Pagination
*/
public function setUdi ($udi)
{
//检查是否跨域
$domain = $this->_request->currentDomain();
$parse = parse_url($domain) ;
if (isset($parse['host']))
{
$split = explode('.',$parse['host']);
if (isset($split[0]) && in_array($split[0],self::$domain_list))
{
$url_args['forward'] = urlencode(urlencode( $udi )) ;
$this->setParames($url_args);
$udi = self::$domain_list[$split[0]].'::ajax/index' ;
}
}
$this->_options['udi'] = $udi ;
return $this ;
}
/**
* 设置分页模式
*
* @param string $model 分页模式
* 参数如下:
* default : 默认常规分页,
* autoload: 滚动自加载,
* ajax : 异步加载
* @param string $htmlTarget 如是异步请求,需要设置请求后返回的数据往哪个节点里填充,
* 如将返回的结果插入至id为content的DIV,则将htmlTarget设置为#content
* @param int $loadPageCount 当使用autoload模式,可以设置翻了多少页后进行显示页码
* @return Lib_Helper_Pagination
*/
public function setModel($model = 'default',$htmlTarget = '', $loadPageCount=3, $pageTarget = '')
{
$this->_options['model'] = $model ;
$this->_options['htmlTarget'] = $htmlTarget ;
$this->_options['loadPageCount'] = $loadPageCount ;
$this->_options['pageTarget'] = $pageTarget ;
return $this ;
}
/**
* 设置配置项
*
* @param array $opts 配置项
* @return Lib_Helper_Pagination
*/
public function setOptions(array $opts)
{
$this->_options = array_merge($this->_options,$opts);
return $this ;
}
/**
* 获取配置项
*
* @return Array
*/
public function getOptions()
{
return $this->_options ;
}
/**
* 设置当前页码
*
* @param int $current_page 当前页码
* @return Lib_Helper_Pagination
*/
public function setCurrentPage($current_page)
{
$this->_current_page = $current_page ;
return $this ;
}
/**
* 获取当前页码
*
* @return Lib_Helper_Pagination
*/
public function getCurrentPage()
{
if (!$this->_current_page)
{
$page = intval($this->_request->page) ;
$this->_current_page = ($page <=0)?1:$page ;
}
//@FIXED xiaoma 2013.1.28 修复如果页码大于实际页码时,显示为空情况
if ($this->_current_page > $this->getPageCount())
{
$this->_current_page = $this->getPageCount();
}
return intval($this->_current_page) ;
}
/**
* 设置请求参数
*
* @param array $parames
*/
public function setParames( array $parames )
{
$this->_parames = array_merge($this->_parames, $parames);
return $this ;
}
/**
* 获取分页基本信息,供其它地方使用
*
* 返回内容为数组,包括以下内容:
* options: 配置项,详细配置见:$this->_options
* record_count: 总记录数
* page_count: 按照页大小计算出来的总页数
* first: 第一页的索引
* last: 最后一页的索引
* current: 当前页的索引
* next: 下一页的索引
* prev: 上一页的索引
* page_size: 页大小
* @return array
*/
public function getPagination()
{
$pagination = array('options'=> $this->_options,'parames'=>$this->_parames);
$pagination['first'] = 1 ;
$pagination['record_count'] = $this->_record_count;
$pagination['page_count'] = $this->getPageCount();
$pagination['last'] = $pagination['page_count'] ;
$current_page = $this->getCurrentPage() ;
$pagination['current'] = $current_page ;
$pagination['next'] = ($current_page < $pagination['last'] - 1) ? $current_page + 1 : $pagination['last'];
$pagination['prev'] = ($current_page > 1)?$current_page - 1 : 1 ;
$pagination['page_size'] = $this->_page_size ;
return $pagination ;
}
/**
* 获取当前偏移量
*
* @return int
*/
public function getOffset()
{
if ($this->getCurrentPage())
{
return ($this->_current_page - 1) * $this->_page_size ;
}
return 0 ;
}
/**
* 获取每页记录数
*
* @return int
*/
public function getPageSize()
{
return $this->_page_size ;
}
/**
* 获取记录条数
*
* @return int
*/
public function getRecordCount()
{
return $this->_record_count ;
}
/**
* 获取总页码
*
* @return int
*/
public function getPageCount()
{
return ceil($this->_record_count / $this->_page_size);
}
/**
* 根据请求参数计算数据库查询的LIMIT值
*
* @return array(page 第几页, limit 限制数)
*/
public function getLimit()
{
$page = intval($this->_request->query('page', 1));
$page = ($page > 1) ? $page : 1;
$limit = intval($this->_request->query('limit', $this->_page_size));
$offset = ($page - 1) * $limit;
return array($offset, $limit);
}
}