arc.memberlistview.class.php
13.7 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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
<?php if(!defined('DEDEINC')) exit("Request Error!");
/**
* 会员列表视图类
*
* @version $Id: arc.memberlistview.class.php 1 14:49 2010年7月7日Z tianya $
* @package DedeCMS.Libraries
* @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
* @license http://help.dedecms.com/usersguide/license.html
* @link http://www.dedecms.com
*/
require_once(DEDEINC."/dedetemplate.class.php");
$lang_pre_page = '上页';
$lang_next_page = '下页';
$lang_index_page = '首页';
$lang_end_page = '末页';
$lang_record_number = '条记录';
$lang_page = '页';
$lang_total = '共';
/**
* 档案展示类
*
* @package FreeList
* @subpackage DedeCMS.Libraries
* @link http://www.dedecms.com
*/
class MemberListview
{
var $dsql = '';
var $tpl = '';
var $pageNO = 1;
var $totalPage = 0;
var $totalResult = 0;
var $pageSize = 25;
var $getValues = array();
var $sourceSql = '';
var $isQuery = false;
var $randts = 0;
/**
* 用指定的文档ID进行初始化
*
* @access public
* @param string $tplfile 模板文件
* @return void
*/
function __construct($tplfile='')
{
$this->sourceSql = '';
$this->pageSize = 25;
$this->queryTime = 0;
$this->getValues = Array();
$this->randts = time();
$this->dsql = $GLOBALS['dsql'];
$this->SetVar('ParseEnv','datalist');
$this->tpl = new DedeTemplate();
if($GLOBALS['cfg_tplcache']=='N')
{
$this->tpl->isCache = false;
}
if($tplfile!='')
{
$this->tpl->LoadTemplate($tplfile);
}
}
//兼容PHP4
function MemberListview($tplfile='')
{
$this->__construct($tplfile);
}
/**
* 设置SQL语句
*
* @access public
* @param string $sql SQL语句
* @return void
*/
function SetSource($sql)
{
$this->sourceSql = $sql;
}
/**
* 设置模板
* 如果想要使用模板中指定的pagesize,必须在调用模板后才调用 SetSource($sql)
*
* @access public
* @param string $tplfile 模板文件
* @return void
*/
function SetTemplate($tplfile)
{
$this->tpl->LoadTemplate($tplfile);
}
/**
* 设置模板
*
* @access public
* @param string $tplfile 模板文件
* @return void
*/
function SetTemplet($tplfile)
{
$this->tpl->LoadTemplate($tplfile);
}
/**
* 对config参数及get参数等进行预处理
*
* @access private
* @return void
*/
function PreLoad()
{
global $totalresult,$pageno;
if(empty($pageno) || preg_match("/[^0-9]/", $pageno))
{
$pageno = 1;
}
if(empty($totalresult) || preg_match("/[^0-9]/", $totalresult))
{
$totalresult = 0;
}
$this->pageNO = $pageno;
$this->totalResult = $totalresult;
if(isset($this->tpl->tpCfgs['pagesize']))
{
$this->pageSize = $this->tpl->tpCfgs['pagesize'];
}
$this->totalPage = ceil($this->totalResult/$this->pageSize);
if($this->totalResult==0)
{
//$this->isQuery = true;
//$this->dsql->Execute('mbdl',$this->sourceSql);
//$this->totalResult = $this->dsql->GetTotalRow('mbdl');
$countQuery = preg_replace("/select[ \r\n\t](.*)[ \r\n\t]from/i","Select count(*) as dd From",$this->sourceSql);
$row = $this->dsql->GetOne($countQuery);
$row['dd'] = empty($row['dd']) ? 0 : $row['dd'];
$this->totalResult = $row['dd'];
$this->sourceSql .= " limit 0,".$this->pageSize;
}
else
{
$this->sourceSql .= " limit ".(($this->pageNO-1) * $this->pageSize).",".$this->pageSize;
}
}
/**
* 设置网址的Get参数键值
*
* @access public
* @param string $key 键
* @param string $value 值
* @return void
*/
function SetParameter($key, $value)
{
$this->getValues[$key] = $value;
}
/**
* 设置/获取文档相关的各种变量
*
* @access public
* @param string $k 键
* @param string $v 值
* @return void
*/
function SetVar($k, $v)
{
global $_vars;
if(!isset($_vars[$k])) $_vars[$k] = $v;
}
/**
* 获取值
*
* @param string $k
* @return string
*/
function GetVar($k)
{
global $_vars;
if(isset($_vars[$k])) return $_vars[$k];
else return '';
}
/**
* 获取当前页数据列表
*
* @access public
* @param string $atts 属性
* @param string $refObj 实例化对象
* @param string $fields 字段
* @return array
*/
function GetArcList($atts,$refObj='',$fields=array())
{
$attlist = "titlelen=30,infolen=200,imgwidth=120,imgheight=90";
FillAtts($atts,$attlist);
FillFields($atts,$fields,$refObj);
extract($atts, EXTR_OVERWRITE);
$rsArray = array();
//global $_vars;
//$t1 = Exectime();
if(!$this->isQuery)
{
$this->dsql->Execute('mbdl',$this->sourceSql);
}
$i = 0;
while($row = $this->dsql->GetArray('mbdl'))
{
$i++;
if(!isset($row['description'])) $row['description'] = '';
if(!isset($row['color'])) $row['color'] = '';
if(!isset($row['pubdate'])) $row['pubdate'] = $row['senddate'];
//处理一些特殊字段
$row['infos'] = cn_substr($row['description'],$infolen);
$row['id'] = $row['id'];
$row['filename'] = $row['arcurl'] = GetFileUrl($row['id'],$row['typeid'],$row['senddate'],$row['title'],$row['ismake'],
$row['arcrank'],$row['namerule'],$row['typedir'],$row['money'],$row['filename'],$row['moresite'],$row['siteurl'],$row['sitepath']);
$row['typeurl'] = GetTypeUrl($row['typeid'],$row['typedir'],$row['isdefault'],$row['defaultname'],$row['ispart'],
$row['namerule2'],$row['moresite'],$row['siteurl'],$row['sitepath']);
if($row['litpic'] == '-' || $row['litpic'] == '')
{
$row['litpic'] = $GLOBALS['cfg_cmspath'].'/images/defaultpic.gif';
}
if(!preg_match("/^http:\/\//i", $row['litpic']) && $GLOBALS['cfg_multi_site'] == 'Y')
{
$row['litpic'] = $GLOBALS['cfg_mainsite'].$row['litpic'];
}
$row['picname'] = $row['litpic'];
$row['stime'] = GetDateMK($row['pubdate']);
$row['typelink'] = "<a href='".$row['typeurl']."'>".$row['typename']."</a>";
$row['image'] = "<img src='".$row['picname']."' border='0' width='$imgwidth' height='$imgheight' alt='".preg_replace("/['><]/", "", $row['title'])."'>";
$row['imglink'] = "<a href='".$row['filename']."'>".$row['image']."</a>";
$row['fulltitle'] = $row['title'];
$row['title'] = cn_substr($row['title'],$titlelen);
if($row['color']!='')
{
$row['title'] = "<font color='".$row['color']."'>".$row['title']."</font>";
}
if(preg_match('/b/', $row['flag']))
{
$row['title'] = "<strong>".$row['title']."</strong>";
}
//$row['title'] = "<b>".$row['title']."</b>";
$row['textlink'] = "<a href='".$row['filename']."'>".$row['title']."</a>";
$row['plusurl'] = $row['phpurl'] = $GLOBALS['cfg_phpurl'];
$row['memberurl'] = $GLOBALS['cfg_memberurl'];
$row['templeturl'] = $GLOBALS['cfg_templeturl'];
$rsArray[$i] = $row;
if($i >= $this->pageSize)
{
break;
}
}
$this->dsql->FreeResult();
//echo "执行时间:".(Exectime() - $t1);
return $rsArray;
}
/**
* 获取分页导航列表
*
* @access public
* @param string $atts 属性
* @param string $refObj 实例化对象
* @param string $fields 字段
* @return string
*/
function GetPageList($atts,$refObj='',$fields=array())
{
global $lang_pre_page,$lang_next_page,$lang_index_page,$lang_end_page,$lang_record_number,$lang_page,$lang_total;
$prepage = $nextpage = $geturl= $hidenform = '';
$purl = $this->GetCurUrl();
$prepagenum = $this->pageNO-1;
$nextpagenum = $this->pageNO+1;
if(!isset($atts['listsize']) || preg_match("/[^0-9]/", $atts['listsize']))
{
$atts['listsize'] = 5;
}
if(!isset($atts['listitem']))
{
$atts['listitem'] = "info,index,end,pre,next,pageno";
}
$totalpage = ceil($this->totalResult/$this->pageSize);
//echo " {$totalpage}=={$this->totalResult}=={$this->pageSize}";
//无结果或只有一页的情况
if($totalpage<=1 && $this->totalResult > 0)
{
return "{$lang_total} 1 {$lang_page}/".$this->totalResult.$lang_record_number;
}
if($this->totalResult == 0)
{
return "{$lang_total} 0 {$lang_page}/".$this->totalResult.$lang_record_number;
}
$infos = "<span>{$lang_total} {$totalpage} {$lang_page}/{$this->totalResult}{$lang_record_number}</span> ";
if($this->totalResult!=0)
{
$this->getValues['totalresult'] = $this->totalResult;
}
if(count($this->getValues)>0)
{
foreach($this->getValues as $key=>$value)
{
$value = urlencode($value);
$geturl.="$key=$value"."&";
$hidenform.="<input type='hidden' name='$key' value='$value'>\r\n";
}
}
$purl .= "?".$geturl;
//获得上一页和下一页的链接
if($this->pageNO!=1)
{
$prepage.="<a href='".$purl."pageno=$prepagenum'>$lang_pre_page</a> \r\n";
$indexpage="<a href='".$purl."pageno=1'>$lang_index_page</a> \r\n";
}
else
{
$indexpage="$lang_index_page \r\n";
}
if($this->pageNO!=$totalpage&&$totalpage>1)
{
$nextpage.="<a href='".$purl."pageno=$nextpagenum'>$lang_next_page</a> \r\n";
$endpage="<a href='".$purl."pageno=$totalpage'>$lang_end_page</a> \r\n";
}
else
{
$endpage=" $lang_end_page \r\n";
}
//获得数字链接
$listdd="";
$total_list = $atts['listsize'] * 2 + 1;
if($this->pageNO>=$total_list)
{
$j=$this->pageNO-$atts['listsize'];
$total_list=$this->pageNO+$atts['listsize'];
if($total_list>$totalpage)
{
$total_list=$totalpage;
}
}
else
{
$j=1;
if($total_list>$totalpage) $total_list=$totalpage;
}
for($j;$j<=$total_list;$j++)
{
if($j==$this->pageNO)
{
$listdd.= "<strong>$j</strong> \r\n";
}
else
{
$listdd.="<a href='".$purl."pageno=$j'>".$j."</a> \r\n";
}
}
$plist = "<div class=\"pagelistbox\">\r\n";
//info,index,end,pre,next,pageno,form
if(preg_match("/info/i",$atts['listitem']))
{
$plist .= $infos;
}
if(preg_match("/index/i",$atts['listitem']))
{
$plist .= $indexpage;
}
if(preg_match("/pre/i",$atts['listitem']))
{
$plist .= $prepage;
}
if(preg_match("/pageno/i",$atts['listitem']))
{
$plist .= $listdd;
}
if(preg_match("/next/i",$atts['listitem']))
{
$plist .= $nextpage;
}
if(preg_match("/end/i",$atts['listitem']))
{
$plist .= $endpage;
}
if(preg_match("/form/i",$atts['listitem']))
{
$plist .=" <form name='pagelist' action='".$this->GetCurUrl()."'>$hidenform";
if($totalpage>$total_list)
{
$plist.="<input type='text' name='pageno' style='padding:0px;width:30px;height:18px'>\r\n";
$plist.="<input type='submit' name='plistgo' value='GO' style='padding:0px;width:30px;height:18px;font-size:11px'>\r\n";
}
$plist .= "</form>\r\n";
}
$plist .= "</div>\r\n";
return $plist;
}
/**
* 获得当前网址
*
* @access public
* @return string
*/
function GetCurUrl()
{
if(!empty($_SERVER["REQUEST_URI"]))
{
$nowurl = $_SERVER["REQUEST_URI"];
$nowurls = explode("?",$nowurl);
$nowurl = $nowurls[0];
}
else
{
$nowurl = $_SERVER["PHP_SELF"];
}
return $nowurl;
}
//关闭
function Close()
{
}
/**
* 显示数据
*
* @access public
* @return void
*/
function Display()
{
if($this->sourceSql != '') $this->PreLoad();
//在PHP4中,对象引用必须放在display之前,放在其它位置中无效
$this->tpl->SetObject($this);
$this->tpl->Display();
}
/**
* 保存为HTML
*
* @access public
* @param string $filename 文件名称
* @return string
*/
function SaveTo($filename)
{
$this->tpl->SaveTo($filename);
}
}//End Class