dedecms讲解-arc.listview.class.php分析,列表页展示

时间:2021-09-05 14:41:30

./plus/list.php - 动态展示栏目列表页(也可能是频道封面)

arc.listview.class.php 是dedecms的列表页的相关处理类

__construct()           // 初始化一些字段,变量
CountRecord()           // 统计列表记录,总条目数,每页条目数,并对列表模板进行解析
MakeHtml()              // 创建列表页HTML,主要是后台批量生成
Display()               // 解析并展示列表页
MakePartTemplets()      // 创建 '频道封面',或得到 '外部链接' 目录
DisplayPartTemplets()   // 同上,只是直接展示,不生成
ParseTempletsFirst()    // 只解析模板中的 include/taglib/* 固定标签
ParseDMFields()         // 解析模板中的动态字段(list, pagelist, field标签解析)
GetArcList()            // 获取展示列表详情
GetPageListST()         // 获取静态分页导航

GetPageListDM()         // 获取动态分页导航(当列表页是动态页,分页自然也得使用动态链接)

查看了文件的主要源码,进行了注释,就整个文件黏贴过来了。列表页详情,分页导航方法等方法未做注释

  1. <?php   if(!defined('DEDEINC')) exit('Request Error!');
  2. /**
  3. * 文档列表类
  4. *
  5. * @version        $Id: arc.listview.class.php 2 15:15 2010年7月7日Z tianya $
  6. * @package        DedeCMS.Libraries
  7. * @copyright      Copyright (c) 2007 - 2010, DesDev, Inc.
  8. * @license        http://help.dedecms.com/usersguide/license.html
  9. * @link           http://www.dedecms.com
  10. */
  11. require_once(DEDEINC.'/arc.partview.class.php');
  12. require_once(DEDEINC.'/ftp.class.php');
  13. helper('cache');
  14. @set_time_limit(0);
  15. /**
  16. * *列表类
  17. *
  18. * @package          ListView
  19. * @subpackage       DedeCMS.Libraries
  20. * @link             http://www.dedecms.com
  21. */
  22. class ListView
  23. {
  24. var $dsql;
  25. var $dtp;
  26. var $dtp2;
  27. var $TypeID;
  28. var $TypeLink;
  29. var $PageNo;
  30. var $TotalPage;
  31. var $TotalResult;
  32. var $PageSize;
  33. var $ChannelUnit;
  34. var $ListType;
  35. var $Fields;
  36. var $PartView;
  37. var $upPageType;
  38. var $addSql;
  39. var $IsError;
  40. var $CrossID;
  41. var $IsReplace;
  42. var $ftp;
  43. var $remoteDir;
  44. /**
  45. *  php5构造函数
  46. *
  47. * @access    public
  48. * @param     int  $typeid  栏目ID
  49. * @param     int  $uppage  上一页
  50. * @return    string
  51. */
  52. function __construct($typeid, $uppage=1)
  53. {
  54. global $dsql,$ftp;
  55. $this->TypeID = $typeid;
  56. $this->dsql = &$dsql;
  57. $this->CrossID = '';
  58. $this->IsReplace = false;
  59. $this->IsError = false;
  60. $this->dtp = new DedeTagParse();
  61. $this->dtp->SetRefObj($this);
  62. $this->dtp->SetNameSpace("dede", "{", "}");
  63. $this->dtp2 = new DedeTagParse();
  64. $this->dtp2->SetNameSpace("field","[","]");
  65. $this->TypeLink = new TypeLink($typeid);    // 实例化 '栏目链接' 类
  66. $this->upPageType = $uppage;
  67. $this->ftp = &$ftp;
  68. $this->remoteDir = '';
  69. $this->TotalResult = is_numeric($this->TotalResult)? $this->TotalResult : "";
  70. if(!is_array($this->TypeLink->TypeInfos))
  71. {
  72. $this->IsError = true;
  73. }
  74. if(!$this->IsError)
  75. {
  76. $this->ChannelUnit = new ChannelUnit($this->TypeLink->TypeInfos['channeltype']);    // 实例化频道类
  77. $this->Fields = $this->TypeLink->TypeInfos;
  78. $this->Fields['id'] = $typeid;
  79. $this->Fields['position'] = $this->TypeLink->GetPositionLink(true);     // 面包屑导航
  80. $this->Fields['title'] = preg_replace("/[<>]/", " / ", $this->TypeLink->GetPositionLink(false));    // 获取页面title
  81. //设置一些全局参数的值
  82. foreach($GLOBALS['PubFields'] as $k=>$v) $this->Fields[$k] = $v;
  83. $this->Fields['rsslink'] = $GLOBALS['cfg_cmsurl']."/data/rss/".$this->TypeID.".xml";    // rss订阅,'data/rss/栏目id.xml'
  84. //设置环境变量
  85. SetSysEnv($this->TypeID,$this->Fields['typename'],0,'','list');
  86. $this->Fields['typeid'] = $this->TypeID;
  87. //获得交叉栏目ID
  88. /*
  89. cross - 栏目交叉(仅用于 "最终列表栏目"-也就是 "ispart=0")
  90. 0 - 不交差
  91. 1 - 自动获取同名栏目内容
  92. 2 - 手工指定交叉栏目ID(用逗号分开)
  93. 会获取一个 'crossid' 表单内容
  94. */
  95. if($this->TypeLink->TypeInfos['cross']>0 && $this->TypeLink->TypeInfos['ispart']==0)
  96. {
  97. $selquery = '';
  98. if($this->TypeLink->TypeInfos['cross']==1)
  99. {
  100. $selquery = "SELECT id,topid FROM `#@__arctype` WHERE typename LIKE '{$this->Fields['typename']}' AND id<>'{$this->TypeID}' AND topid<>'{$this->TypeID}'  ";
  101. }
  102. else
  103. {
  104. $this->Fields['crossid'] = preg_replace('/[^0-9,]/', '', trim($this->Fields['crossid']));
  105. if($this->Fields['crossid']!='')
  106. {
  107. $selquery = "SELECT id,topid FROM `#@__arctype` WHERE id in({$this->Fields['crossid']}) AND id<>{$this->TypeID} AND topid<>{$this->TypeID}  ";
  108. }
  109. }
  110. if($selquery!='')
  111. {
  112. $this->dsql->SetQuery($selquery);
  113. $this->dsql->Execute();
  114. while($arr = $this->dsql->GetArray())
  115. {
  116. $this->CrossID .= ($this->CrossID=='' ? $arr['id'] : ','.$arr['id']);
  117. }
  118. }
  119. }
  120. }//!error
  121. }
  122. //php4构造函数
  123. function ListView($typeid,$uppage=0){
  124. $this->__construct($typeid,$uppage);
  125. }
  126. //关闭相关资源
  127. function Close()
  128. {
  129. }
  130. /**
  131. *  统计列表里的记录
  132. *
  133. * @access    public
  134. * @param     string
  135. * @return    string
  136. */
  137. function CountRecord()
  138. {
  139. /*
  140. $cfg_list_son - 栏目是否允许列出下级栏目的内容
  141. $cfg_need_typeid2 - 是否启用副栏目
  142. $cfg_cross_sectypeid - 支持交叉栏目显示副栏目内容
  143. */
  144. global $cfg_list_son,$cfg_need_typeid2,$cfg_cross_sectypeid;
  145. if(empty($cfg_need_typeid2)) $cfg_need_typeid2 = 'N';
  146. //统计数据库记录
  147. $this->TotalResult = -1;
  148. if(isset($GLOBALS['TotalResult'])) $this->TotalResult = $GLOBALS['TotalResult'];
  149. if(isset($GLOBALS['PageNo'])) $this->PageNo = $GLOBALS['PageNo'];
  150. else $this->PageNo = 1;
  151. $this->addSql  = " arc.arcrank > -1 ";
  152. $typeid2like = " '%,{$this->TypeID},%' ";   // 副栏目,多个之间用 ',' 分隔,采用like查询
  153. if($cfg_list_son=='N')
  154. {
  155. if($cfg_need_typeid2=='N')
  156. {
  157. if($this->CrossID=='') $this->addSql .= " AND (arc.typeid='".$this->TypeID."') ";
  158. else $this->addSql .= " AND (arc.typeid in({$this->CrossID},{$this->TypeID})) ";
  159. }
  160. else
  161. {
  162. if($this->CrossID=='')
  163. {
  164. $this->addSql .= " AND ( (arc.typeid='".$this->TypeID."') OR CONCAT(',', arc.typeid2, ',') LIKE $typeid2like) ";
  165. } else {
  166. if($cfg_cross_sectypeid == 'Y')
  167. {
  168. $typeid2Clike = " '%,{$this->CrossID},%' ";
  169. $this->addSql .= " AND ( arc.typeid IN({$this->CrossID},{$this->TypeID}) OR CONCAT(',', arc.typeid2, ',') LIKE $typeid2like OR CONCAT(',', arc.typeid2, ',') LIKE $typeid2Clike)";
  170. } else {
  171. $this->addSql .= " AND ( arc.typeid IN({$this->CrossID},{$this->TypeID}) OR CONCAT(',', arc.typeid2, ',') LIKE $typeid2like)";
  172. }
  173. }
  174. }
  175. }
  176. else
  177. {
  178. $sonids = GetSonIds($this->TypeID,$this->Fields['channeltype']);    // 获得某栏目的所有下级栏目id(递归)
  179. if(!preg_match("/,/", $sonids)) {
  180. $sonidsCon = " arc.typeid = '$sonids' ";
  181. }
  182. else {
  183. $sonidsCon = " arc.typeid IN($sonids) ";
  184. }
  185. if($cfg_need_typeid2=='N')
  186. {
  187. if($this->CrossID=='') $this->addSql .= " AND ( $sonidsCon ) ";
  188. else $this->addSql .= " AND ( arc.typeid IN ({$sonids},{$this->CrossID}) ) ";
  189. }
  190. else
  191. {
  192. if($this->CrossID=='')
  193. {
  194. $this->addSql .= " AND ( $sonidsCon OR CONCAT(',', arc.typeid2, ',') like $typeid2like  ) ";
  195. } else {
  196. if($cfg_cross_sectypeid == 'Y')
  197. {
  198. $typeid2Clike = " '%,{$this->CrossID},%' ";
  199. $this->addSql .= " AND ( arc.typeid IN ({$sonids},{$this->CrossID}) OR CONCAT(',', arc.typeid2, ',') LIKE $typeid2like OR CONCAT(',', arc.typeid2, ',') LIKE $typeid2Clike) ";
  200. } else {
  201. $this->addSql .= " AND ( arc.typeid IN ({$sonids},{$this->CrossID}) OR CONCAT(',', arc.typeid2, ',') LIKE $typeid2like) ";
  202. }
  203. }
  204. }
  205. }
  206. // 获取栏目下的文章总数(使用 'arctiny' 表来进行查询的,该表数据较少,速度更快)
  207. if($this->TotalResult==-1)
  208. {
  209. $cquery = "SELECT COUNT(*) AS dd FROM `#@__arctiny` arc WHERE ".$this->addSql;
  210. $row = $this->dsql->GetOne($cquery);
  211. if(is_array($row))
  212. {
  213. $this->TotalResult = $row['dd'];
  214. }
  215. else
  216. {
  217. $this->TotalResult = 0;
  218. }
  219. }
  220. /*
  221. 获取列表页模板
  222. */
  223. //初始化列表模板,并统计页面总数
  224. $tempfile = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir']."/".$this->TypeLink->TypeInfos['templist'];
  225. $tempfile = str_replace("{tid}", $this->TypeID, $tempfile);
  226. $tempfile = str_replace("{cid}", $this->ChannelUnit->ChannelInfos['nid'], $tempfile);
  227. // 手机版模板(新增了 'm' 目录)
  228. if ( defined('DEDEMOB') )
  229. {
  230. $tempfile =str_replace('.htm','_m.htm',$tempfile);
  231. }
  232. if(!file_exists($tempfile))
  233. {
  234. $tempfile = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir']."/".$GLOBALS['cfg_df_style']."/list_default.htm";
  235. if ( defined('DEDEMOB') )
  236. {
  237. $tempfile =str_replace('.htm','_m.htm',$tempfile);
  238. }
  239. }
  240. if(!file_exists($tempfile)||!is_file($tempfile))
  241. {
  242. echo "模板文件不存在,无法解析文档!";
  243. exit();
  244. }
  245. $this->dtp->LoadTemplate($tempfile);    // 解析模板
  246. $ctag = $this->dtp->GetTag("page");     // 获取解析后的 'page标签'
  247. if(!is_object($ctag))
  248. {
  249. $ctag = $this->dtp->GetTag("list"); // page标签不存在,获取 'list标签'
  250. }
  251. // 获取每页条数设置
  252. if(!is_object($ctag))
  253. {
  254. $this->PageSize = 20;
  255. }
  256. else
  257. {
  258. if($ctag->GetAtt("pagesize")!="")
  259. {
  260. $this->PageSize = $ctag->GetAtt("pagesize");
  261. }
  262. else
  263. {
  264. $this->PageSize = 20;
  265. }
  266. }
  267. $this->TotalPage = ceil($this->TotalResult/$this->PageSize);
  268. }
  269. /**
  270. *  列表创建HTML - 应该是后台 '更新栏目HTML'
  271. *
  272. * @access    public
  273. * @param     string  $startpage  开始页面
  274. * @param     string  $makepagesize  创建文件数目
  275. * @param     string  $isremote  是否为远程
  276. * @return    string
  277. */
  278. function MakeHtml($startpage=1, $makepagesize=0, $isremote=0)
  279. {
  280. global $cfg_remote_site;
  281. if(empty($startpage))
  282. {
  283. $startpage = 1;
  284. }
  285. //创建封面模板文件
  286. /*
  287. isdefault - 栏目列表选项
  288. 1 - 链接到默认页
  289. 0 - 链接到列表第一页
  290. -1 - 使用动态页
  291. defaultname - 默认页名称(isdefault=1使用)
  292. */
  293. if($this->TypeLink->TypeInfos['isdefault']==-1)
  294. {
  295. echo '这个类目是动态类目!';
  296. return '../plus/list.php?tid='.$this->TypeLink->TypeInfos['id'];
  297. }
  298. //单独页面
  299. /*
  300. ispart - 栏目属性
  301. 0 - 最终列表栏目(允许在本栏目发布文档,并生成文档列表)
  302. 1 - 频道封面(栏目本身不允许发布文档)
  303. 2 - 外部连接(在"文件保存目录"处填写网址)
  304. */
  305. else if($this->TypeLink->TypeInfos['ispart']>0)
  306. {
  307. // 得到1和2的访问链接地址
  308. $reurl = $this->MakePartTemplets();
  309. return $reurl;
  310. }
  311. /*
  312. 现在开始,获取列表页
  313. */
  314. if(empty($this->TotalResult)) $this->CountRecord();     // 计算列表条目总数,根据每页条目,得到总页数;并解析 '列表模板'
  315. //初步给固定值的标记赋值
  316. $this->ParseTempletsFirst();    // 调用 'include/channelunit.func.php中的MakeOneTag(),对模板中的标签(include/taglib/*),进行计算
  317. $totalpage = ceil($this->TotalResult/$this->PageSize);
  318. if($totalpage==0)
  319. {
  320. $totalpage = 1;
  321. }
  322. CreateDir(MfTypedir($this->Fields['typedir']));
  323. $murl = '';
  324. if($makepagesize > 0)
  325. {
  326. $endpage = $startpage+$makepagesize;
  327. }
  328. else
  329. {
  330. $endpage = ($totalpage+1);
  331. }
  332. if( $endpage >= $totalpage+1 )
  333. {
  334. $endpage = $totalpage+1;
  335. }
  336. if($endpage==1)
  337. {
  338. $endpage = 2;
  339. }
  340. /*
  341. 生成指定数目的列表页
  342. */
  343. for($this->PageNo=$startpage; $this->PageNo < $endpage; $this->PageNo++)
  344. {
  345. $this->ParseDMFields($this->PageNo,1);  // list和pagelist标签的执行
  346. // 列表页静态文件生成路径 和 静态文件访问url(默认使用最后一个页面的url)
  347. $makeFile = $this->GetMakeFileRule($this->Fields['id'],'list',$this->Fields['typedir'],'',$this->Fields['namerule2']);
  348. $makeFile = str_replace("{page}", $this->PageNo, $makeFile);
  349. $murl = $makeFile;
  350. if(!preg_match("/^\//", $makeFile))
  351. {
  352. $makeFile = "/".$makeFile;
  353. }
  354. $makeFile = $this->GetTruePath().$makeFile;
  355. $makeFile = preg_replace("/\/{1,}/", "/", $makeFile);
  356. $murl = $this->GetTrueUrl($murl);
  357. $this->dtp->SaveTo($makeFile);
  358. //如果启用远程发布则需要进行判断
  359. if($cfg_remote_site=='Y'&& $isremote == 1)
  360. {
  361. //分析远程文件路径
  362. $remotefile = str_replace(DEDEROOT, '',$makeFile);
  363. $localfile = '..'.$remotefile;
  364. $remotedir = preg_replace('/[^\/]*\.html/', '',$remotefile);
  365. //不相等则说明已经切换目录则可以创建镜像
  366. $this->ftp->rmkdir($remotedir);
  367. $this->ftp->upload($localfile, $remotefile, 'acii');
  368. }
  369. }
  370. /*
  371. 如果从第一页开始生成列表页
  372. 设置了 'isdefault=1 - 链接到默认页'
  373. 设置了 'ispart=0 - 最终列表栏目'
  374. 获取第一页的列表页,并复制给 '默认页',并返回默认页的url
  375. */
  376. if($startpage==1)
  377. {
  378. //如果列表启用封面文件,复制这个文件第一页
  379. if($this->TypeLink->TypeInfos['isdefault']==1
  380. && $this->TypeLink->TypeInfos['ispart']==0)
  381. {
  382. $onlyrule = $this->GetMakeFileRule($this->Fields['id'],"list",$this->Fields['typedir'],'',$this->Fields['namerule2']);
  383. $onlyrule = str_replace("{page}","1",$onlyrule);
  384. $list_1 = $this->GetTruePath().$onlyrule;
  385. $murl = MfTypedir($this->Fields['typedir']).'/'.$this->Fields['defaultname'];
  386. //如果启用远程发布则需要进行判断
  387. if($cfg_remote_site=='Y'&& $isremote == 1)
  388. {
  389. //分析远程文件路径
  390. $remotefile = $murl;
  391. $localfile = '..'.$remotefile;
  392. $remotedir = preg_replace('/[^\/]*\.html/', '',$remotefile);
  393. //不相等则说明已经切换目录则可以创建镜像
  394. $this->ftp->rmkdir($remotedir);
  395. $this->ftp->upload($localfile, $remotefile, 'acii');
  396. }
  397. $indexname = $this->GetTruePath().$murl;
  398. copy($list_1,$indexname);
  399. }
  400. }
  401. return $murl;
  402. }
  403. /**
  404. *  显示列表
  405. *
  406. * @access    public
  407. * @return    void
  408. */
  409. function Display()
  410. {
  411. if($this->TypeLink->TypeInfos['ispart']>0)
  412. {
  413. $this->DisplayPartTemplets();
  414. return ;
  415. }
  416. $this->CountRecord();
  417. if((empty($this->PageNo) || $this->PageNo==1)
  418. && $this->TypeLink->TypeInfos['ispart']==1)
  419. {
  420. $tmpdir = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir'];
  421. $tempfile = str_replace("{tid}",$this->TypeID,$this->Fields['tempindex']);
  422. $tempfile = str_replace("{cid}",$this->ChannelUnit->ChannelInfos['nid'],$tempfile);
  423. $tempfile = $tmpdir."/".$tempfile;
  424. if ( defined('DEDEMOB') )
  425. {
  426. $tempfile =str_replace('.htm','_m.htm',$tempfile);
  427. }
  428. if(!file_exists($tempfile))
  429. {
  430. $tempfile = $tmpdir."/".$GLOBALS['cfg_df_style']."/index_default.htm";
  431. if ( defined('DEDEMOB') )
  432. {
  433. $tempfile =str_replace('.htm','_m.htm',$tempfile);
  434. }
  435. }
  436. $this->dtp->LoadTemplate($tempfile);
  437. }
  438. $this->ParseTempletsFirst();
  439. $this->ParseDMFields($this->PageNo,0);
  440. $this->dtp->Display();
  441. }
  442. /**
  443. *  创建单独模板页面
  444. *
  445. * @access    public
  446. * @return    string
  447. */
  448. function MakePartTemplets()
  449. {
  450. $this->PartView = new PartView($this->TypeID,false);
  451. $this->PartView->SetTypeLink($this->TypeLink);
  452. $nmfa = 0;
  453. $tmpdir = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir'];
  454. // 频道封面
  455. if($this->Fields['ispart']==1)
  456. {
  457. // 使用 'tempindex - 封面模板' 作为模板,并解析模板
  458. $tempfile = str_replace("{tid}",$this->TypeID,$this->Fields['tempindex']);
  459. $tempfile = str_replace("{cid}",$this->ChannelUnit->ChannelInfos['nid'],$tempfile);
  460. $tempfile = $tmpdir."/".$tempfile;
  461. if ( defined('DEDEMOB') )
  462. {
  463. $tempfile =str_replace('.htm','_m.htm',$tempfile);
  464. }
  465. if(!file_exists($tempfile))
  466. {
  467. $tempfile = $tmpdir."/".$GLOBALS['cfg_df_style']."/index_default.htm";
  468. if ( defined('DEDEMOB') )
  469. {
  470. $tempfile =str_replace('.htm','_m.htm',$tempfile);
  471. }
  472. }
  473. $this->PartView->SetTemplet($tempfile);
  474. }
  475. // 外部链接(使用的是 '文件保存目录' 填写的内容)
  476. else if($this->Fields['ispart']==2)
  477. {
  478. //跳转网址
  479. return $this->Fields['typedir'];
  480. }
  481. /*
  482. 开始生成 '频道封面'
  483. */
  484. CreateDir(MfTypedir($this->Fields['typedir']));     // 创建目录
  485. // 生成静态文件
  486. $makeUrl = $this->GetMakeFileRule($this->Fields['id'],"index",MfTypedir($this->Fields['typedir']),$this->Fields['defaultname'],$this->Fields['namerule2']);
  487. $makeUrl = preg_replace("/\/{1,}/", "/", $makeUrl);
  488. $makeFile = $this->GetTruePath().$makeUrl;
  489. if($nmfa==0)
  490. {
  491. $this->PartView->SaveToHtml($makeFile);
  492. //如果启用远程发布则需要进行判断
  493. if($GLOBALS['cfg_remote_site']=='Y'&& $isremote == 1)
  494. {
  495. //分析远程文件路径
  496. $remotefile = str_replace(DEDEROOT, '',$makeFile);
  497. $localfile = '..'.$remotefile;
  498. $remotedir = preg_replace('/[^\/]*\.html/', '',$remotefile);
  499. //不相等则说明已经切换目录则可以创建镜像
  500. $this->ftp->rmkdir($remotedir);
  501. $this->ftp->upload($localfile, $remotefile, 'acii');
  502. }
  503. }
  504. else
  505. {
  506. if(!file_exists($makeFile))
  507. {
  508. $this->PartView->SaveToHtml($makeFile);
  509. //如果启用远程发布则需要进行判断
  510. if($cfg_remote_site=='Y'&& $isremote == 1)
  511. {
  512. //分析远程文件路径
  513. $remotefile = str_replace(DEDEROOT, '',$makeFile);
  514. $localfile = '..'.$remotefile;
  515. $remotedir = preg_replace('/[^\/]*\.html/', '',$remotefile);
  516. //不相等则说明已经切换目录则可以创建镜像
  517. $this->ftp->rmkdir($remotedir);
  518. $this->ftp->upload($localfile, $remotefile, 'acii');
  519. }
  520. }
  521. }
  522. // 返回 '频道封面访问url'
  523. return $this->GetTrueUrl($makeUrl);
  524. }
  525. /**
  526. *  显示单独模板页面 - 同上面逻辑基本一样,只是不用生成静态页面,直接展示频道页内容
  527. *
  528. * @access    public
  529. * @param     string
  530. * @return    string
  531. */
  532. function DisplayPartTemplets()
  533. {
  534. $this->PartView = new PartView($this->TypeID,false);
  535. $this->PartView->SetTypeLink($this->TypeLink);
  536. $nmfa = 0;
  537. $tmpdir = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir'];
  538. if($this->Fields['ispart']==1)
  539. {
  540. //封面模板
  541. $tempfile = str_replace("{tid}",$this->TypeID,$this->Fields['tempindex']);
  542. $tempfile = str_replace("{cid}",$this->ChannelUnit->ChannelInfos['nid'],$tempfile);
  543. $tempfile = $tmpdir."/".$tempfile;
  544. if ( defined('DEDEMOB') )
  545. {
  546. $tempfile =str_replace('.htm','_m.htm',$tempfile);
  547. }
  548. if(!file_exists($tempfile))
  549. {
  550. $tempfile = $tmpdir."/".$GLOBALS['cfg_df_style']."/index_default.htm";
  551. if ( defined('DEDEMOB') )
  552. {
  553. $tempfile =str_replace('.htm','_m.htm',$tempfile);
  554. }
  555. }
  556. $this->PartView->SetTemplet($tempfile);
  557. }
  558. else if($this->Fields['ispart']==2)
  559. {
  560. //跳转网址
  561. $gotourl = $this->Fields['typedir'];
  562. header("Location:$gotourl");
  563. exit();
  564. }
  565. CreateDir(MfTypedir($this->Fields['typedir']));
  566. $makeUrl = $this->GetMakeFileRule($this->Fields['id'],"index",MfTypedir($this->Fields['typedir']),$this->Fields['defaultname'],$this->Fields['namerule2']);
  567. $makeFile = $this->GetTruePath().$makeUrl;
  568. if($nmfa==0)
  569. {
  570. $this->PartView->Display();
  571. }
  572. else
  573. {
  574. if(!file_exists($makeFile))
  575. {
  576. $this->PartView->Display();
  577. }
  578. else
  579. {
  580. include($makeFile);
  581. }
  582. }
  583. }
  584. /**
  585. *  获得站点的真实根路径
  586. *
  587. * @access    public
  588. * @return    string
  589. */
  590. function GetTruePath()
  591. {
  592. $truepath = $GLOBALS["cfg_basedir"];
  593. return $truepath;
  594. }
  595. /**
  596. *  获得真实连接路径
  597. *
  598. * @access    public
  599. * @param     string  $nurl  地址
  600. * @return    string
  601. */
  602. function GetTrueUrl($nurl)
  603. {
  604. if($this->Fields['moresite']==1)
  605. {
  606. if($this->Fields['sitepath']!='')
  607. {
  608. $nurl = preg_replace("/^".$this->Fields['sitepath']."/", '', $nurl);
  609. }
  610. $nurl = $this->Fields['siteurl'].$nurl;
  611. }
  612. return $nurl;
  613. }
  614. /**
  615. *  解析模板,对固定的标记进行初始给值
  616. *
  617. * @access    public
  618. * @return    string
  619. */
  620. function ParseTempletsFirst()
  621. {
  622. if(isset($this->TypeLink->TypeInfos['reid']))
  623. {
  624. $GLOBALS['envs']['reid'] = $this->TypeLink->TypeInfos['reid'];
  625. }
  626. $GLOBALS['envs']['typeid'] = $this->TypeID;
  627. $GLOBALS['envs']['topid'] = GetTopid($this->Fields['typeid']);
  628. $GLOBALS['envs']['cross'] = 1;
  629. MakeOneTag($this->dtp,$this);
  630. }
  631. /**
  632. *  解析模板,对内容里的变动进行赋值
  633. *
  634. * @access    public
  635. * @param     int  $PageNo  页数
  636. * @param     int  $ismake  是否编译
  637. * @return    string
  638. */
  639. function ParseDMFields($PageNo,$ismake=1)
  640. {
  641. //替换第二页后的内容
  642. if(($PageNo>1 || strlen($this->Fields['content'])<10 ) && !$this->IsReplace)
  643. {
  644. $this->dtp->SourceString = str_replace('[cmsreplace]','display:none',$this->dtp->SourceString);
  645. $this->IsReplace = true;
  646. }
  647. foreach($this->dtp->CTags as $tagid=>$ctag)
  648. {
  649. // 解析 'list标签',控制 '列表展示'
  650. if($ctag->GetName()=="list")
  651. {
  652. $limitstart = ($this->PageNo-1) * $this->PageSize;
  653. $row = $this->PageSize;
  654. if(trim($ctag->GetInnerText())=="")
  655. {
  656. $InnerText = GetSysTemplets("list_fulllist.htm");
  657. }
  658. else
  659. {
  660. $InnerText = trim($ctag->GetInnerText());
  661. }
  662. $this->dtp->Assign($tagid,
  663. $this->GetArcList(
  664. $limitstart,
  665. $row,
  666. $ctag->GetAtt("col"),
  667. $ctag->GetAtt("titlelen"),
  668. $ctag->GetAtt("infolen"),
  669. $ctag->GetAtt("imgwidth"),
  670. $ctag->GetAtt("imgheight"),
  671. $ctag->GetAtt("listtype"),
  672. $ctag->GetAtt("orderby"),
  673. $InnerText,
  674. $ctag->GetAtt("tablewidth"),
  675. $ismake,
  676. $ctag->GetAtt("orderway")
  677. )
  678. );
  679. }
  680. // 解析 'pagelist标签',控制 '分页导航展示'
  681. else if($ctag->GetName()=="pagelist")
  682. {
  683. $list_len = trim($ctag->GetAtt("listsize"));
  684. $ctag->GetAtt("listitem")=="" ? $listitem="index,pre,pageno,next,end,option" : $listitem=$ctag->GetAtt("listitem");
  685. if($list_len=="")
  686. {
  687. $list_len = 3;
  688. }
  689. if($ismake==0)
  690. {
  691. $this->dtp->Assign($tagid,$this->GetPageListDM($list_len,$listitem));
  692. }
  693. else
  694. {
  695. $this->dtp->Assign($tagid,$this->GetPageListST($list_len,$listitem));
  696. }
  697. }
  698. else if($PageNo!=1 && $ctag->GetName()=='field' && $ctag->GetAtt('display')!='')
  699. {
  700. $this->dtp->Assign($tagid,'');
  701. }
  702. }
  703. }
  704. /**
  705. *  获得要创建的文件名称规则
  706. *
  707. * @access    public
  708. * @param     int  $typeid  栏目ID
  709. * @param     string  $wname
  710. * @param     string  $typedir  栏目目录
  711. * @param     string  $defaultname  默认名称
  712. * @param     string  $namerule2  栏目规则
  713. * @return    string
  714. */
  715. function GetMakeFileRule($typeid,$wname,$typedir,$defaultname,$namerule2)
  716. {
  717. $typedir = MfTypedir($typedir);
  718. if($wname=='index')
  719. {
  720. return $typedir.'/'.$defaultname;
  721. }
  722. else
  723. {
  724. $namerule2 = str_replace('{tid}',$typeid,$namerule2);
  725. $namerule2 = str_replace('{typedir}',$typedir,$namerule2);
  726. return $namerule2;
  727. }
  728. }
  729. /**
  730. *  获得一个单列的文档列表
  731. *
  732. * @access    public
  733. * @param     int  $limitstart  限制开始
  734. * @param     int  $row  行数
  735. * @param     int  $col  列数
  736. * @param     int  $titlelen  标题长度
  737. * @param     int  $infolen  描述长度
  738. * @param     int  $imgwidth  图片宽度
  739. * @param     int  $imgheight  图片高度
  740. * @param     string  $listtype  列表类型
  741. * @param     string  $orderby  排列顺序
  742. * @param     string  $innertext  底层模板
  743. * @param     string  $tablewidth  表格宽度
  744. * @param     string  $ismake  是否编译
  745. * @param     string  $orderWay  排序方式
  746. * @return    string
  747. */
  748. function GetArcList($limitstart=0,$row=10,$col=1,$titlelen=30,$infolen=250,
  749. $imgwidth=120,$imgheight=90,$listtype="all",$orderby="default",$innertext="",$tablewidth="100",$ismake=1,$orderWay='desc')
  750. {
  751. global $cfg_list_son,$cfg_digg_update;
  752. $typeid=$this->TypeID;
  753. if($row=='') $row = 10;
  754. if($limitstart=='') $limitstart = 0;
  755. if($titlelen=='') $titlelen = 100;
  756. if($infolen=='') $infolen = 250;
  757. if($imgwidth=='') $imgwidth = 120;
  758. if($imgheight=='') $imgheight = 120;
  759. if($listtype=='') $listtype = 'all';
  760. if($orderWay=='') $orderWay = 'desc';
  761. if($orderby=='') {
  762. $orderby='default';
  763. }
  764. else {
  765. $orderby=strtolower($orderby);
  766. }
  767. $tablewidth = str_replace('%','',$tablewidth);
  768. if($tablewidth=='') $tablewidth=100;
  769. if($col=='') $col=1;
  770. $colWidth = ceil(100/$col);
  771. $tablewidth = $tablewidth.'%';
  772. $colWidth = $colWidth.'%';
  773. $innertext = trim($innertext);
  774. if($innertext=='') {
  775. $innertext = GetSysTemplets('list_fulllist.htm');
  776. }
  777. //排序方式
  778. $ordersql = '';
  779. if($orderby=="senddate" || $orderby=="id") {
  780. $ordersql=" ORDER BY arc.id $orderWay";
  781. }
  782. else if($orderby=="hot" || $orderby=="click") {
  783. $ordersql = " ORDER BY arc.click $orderWay";
  784. }
  785. else if($orderby=="lastpost") {
  786. $ordersql = "  ORDER BY arc.lastpost $orderWay";
  787. }
  788. else {
  789. $ordersql=" ORDER BY arc.sortrank $orderWay";
  790. }
  791. //获得附加表的相关信息
  792. $addtable  = $this->ChannelUnit->ChannelInfos['addtable'];
  793. if($addtable!="")
  794. {
  795. $addJoin = " LEFT JOIN `$addtable` ON arc.id = ".$addtable.'.aid ';
  796. $addField = '';
  797. $fields = explode(',',$this->ChannelUnit->ChannelInfos['listfields']);
  798. foreach($fields as $k=>$v)
  799. {
  800. $nfields[$v] = $k;
  801. }
  802. if(is_array($this->ChannelUnit->ChannelFields) && !empty($this->ChannelUnit->ChannelFields))
  803. {
  804. foreach($this->ChannelUnit->ChannelFields as $k=>$arr)
  805. {
  806. if(isset($nfields[$k]))
  807. {
  808. if(!empty($arr['rename'])) {
  809. $addField .= ','.$addtable.'.'.$k.' as '.$arr['rename'];
  810. }
  811. else {
  812. $addField .= ','.$addtable.'.'.$k;
  813. }
  814. }
  815. }
  816. }
  817. }
  818. else
  819. {
  820. $addField = '';
  821. $addJoin = '';
  822. }
  823. //如果不用默认的sortrank或id排序,使用联合查询(数据量大时非常缓慢)
  824. if(preg_match('/hot|click|lastpost/', $orderby))
  825. {
  826. $query = "SELECT arc.*,tp.typedir,tp.typename,tp.isdefault,tp.defaultname,
  827. tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.siteurl,tp.sitepath
  828. $addField
  829. FROM `#@__archives` arc
  830. LEFT JOIN `#@__arctype` tp ON arc.typeid=tp.id
  831. $addJoin
  832. WHERE {$this->addSql} $ordersql LIMIT $limitstart,$row";
  833. }
  834. //普通情况先从arctiny表查出ID,然后按ID查询(速度非常快)
  835. else
  836. {
  837. $t1 = ExecTime();
  838. $ids = array();
  839. $query = "SELECT id FROM `#@__arctiny` arc WHERE {$this->addSql} $ordersql LIMIT $limitstart,$row ";
  840. $this->dsql->SetQuery($query);
  841. $this->dsql->Execute();
  842. while($arr=$this->dsql->GetArray())
  843. {
  844. $ids[] = $arr['id'];
  845. }
  846. $idstr = join(',',$ids);
  847. if($idstr=='')
  848. {
  849. return '';
  850. }
  851. else
  852. {
  853. $query = "SELECT arc.*,tp.typedir,tp.typename,tp.corank,tp.isdefault,tp.defaultname,
  854. tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.siteurl,tp.sitepath
  855. $addField
  856. FROM `#@__archives` arc LEFT JOIN `#@__arctype` tp ON arc.typeid=tp.id
  857. $addJoin
  858. WHERE arc.id in($idstr) $ordersql ";
  859. }
  860. $t2 = ExecTime();
  861. //echo $t2-$t1;
  862. }
  863. $this->dsql->SetQuery($query);
  864. $this->dsql->Execute('al');
  865. $t2 = ExecTime();
  866. //echo $t2-$t1;
  867. $artlist = '';
  868. $this->dtp2->LoadSource($innertext);
  869. $GLOBALS['autoindex'] = 0;
  870. for($i=0;$i<$row;$i++)
  871. {
  872. if($col>1)
  873. {
  874. $artlist .= "<div>\r\n";
  875. }
  876. for($j=0;$j<$col;$j++)
  877. {
  878. if($row = $this->dsql->GetArray("al"))
  879. {
  880. $GLOBALS['autoindex']++;
  881. $ids[$row['id']] = $row['id'];
  882. //处理一些特殊字段
  883. $row['infos'] = cn_substr($row['description'],$infolen);
  884. $row['id'] =  $row['id'];
  885. if($cfg_digg_update > 0)
  886. {
  887. $prefix = 'diggCache';
  888. $key = 'aid-'.$row['id'];
  889. $cacherow = GetCache($prefix, $key);
  890. $row['goodpost'] = $cacherow['goodpost'];
  891. $row['badpost'] = $cacherow['badpost'];
  892. $row['scores'] = $cacherow['scores'];
  893. }
  894. if($row['corank'] > 0 && $row['arcrank']==0)
  895. {
  896. $row['arcrank'] = $row['corank'];
  897. }
  898. $row['filename'] = $row['arcurl'] = GetFileUrl($row['id'],$row['typeid'],$row['senddate'],$row['title'],$row['ismake'],
  899. $row['arcrank'],$row['namerule'],$row['typedir'],$row['money'],$row['filename'],$row['moresite'],$row['siteurl'],$row['sitepath']);
  900. $row['typeurl'] = GetTypeUrl($row['typeid'],MfTypedir($row['typedir']),$row['isdefault'],$row['defaultname'],
  901. $row['ispart'],$row['namerule2'],$row['moresite'],$row['siteurl'],$row['sitepath']);
  902. if($row['litpic'] == '-' || $row['litpic'] == '')
  903. {
  904. $row['litpic'] = $GLOBALS['cfg_cmspath'].'/images/defaultpic.gif';
  905. }
  906. if(!preg_match("/^http:\/\//i", $row['litpic']) && $GLOBALS['cfg_multi_site'] == 'Y')
  907. {
  908. $row['litpic'] = $GLOBALS['cfg_mainsite'].$row['litpic'];
  909. }
  910. $row['picname'] = $row['litpic'];
  911. $row['stime'] = GetDateMK($row['pubdate']);
  912. $row['typelink'] = "<a href='".$row['typeurl']."'>".$row['typename']."</a>";
  913. $row['image'] = "<img src='".$row['picname']."' border='0' width='$imgwidth' height='$imgheight' alt='".preg_replace("/['><]/", "", $row['title'])."'>";
  914. $row['imglink'] = "<a href='".$row['filename']."'>".$row['image']."</a>";
  915. $row['fulltitle'] = $row['title'];
  916. $row['title'] = cn_substr($row['title'],$titlelen);
  917. if($row['color']!='')
  918. {
  919. $row['title'] = "<font color='".$row['color']."'>".$row['title']."</font>";
  920. }
  921. if(preg_match('/c/', $row['flag']))
  922. {
  923. $row['title'] = "<b>".$row['title']."</b>";
  924. }
  925. $row['textlink'] = "<a href='".$row['filename']."'>".$row['title']."</a>";
  926. $row['plusurl'] = $row['phpurl'] = $GLOBALS['cfg_phpurl'];
  927. $row['memberurl'] = $GLOBALS['cfg_memberurl'];
  928. $row['templeturl'] = $GLOBALS['cfg_templeturl'];
  929. //编译附加表里的数据
  930. foreach($row as $k=>$v)
  931. {
  932. $row[strtolower($k)] = $v;
  933. }
  934. foreach($this->ChannelUnit->ChannelFields as $k=>$arr)
  935. {
  936. if(isset($row[$k]))
  937. {
  938. $row[$k] = $this->ChannelUnit->MakeField($k,$row[$k]);
  939. }
  940. }
  941. if(is_array($this->dtp2->CTags))
  942. {
  943. foreach($this->dtp2->CTags as $k=>$ctag)
  944. {
  945. if($ctag->GetName()=='array')
  946. {
  947. //传递整个数组,在runphp模式中有特殊作用
  948. $this->dtp2->Assign($k,$row);
  949. }
  950. else
  951. {
  952. if(isset($row[$ctag->GetName()]))
  953. {
  954. $this->dtp2->Assign($k,$row[$ctag->GetName()]);
  955. }
  956. else
  957. {
  958. $this->dtp2->Assign($k,'');
  959. }
  960. }
  961. }
  962. }
  963. $artlist .= $this->dtp2->GetResult();
  964. }//if hasRow
  965. }//Loop Col
  966. if($col>1)
  967. {
  968. $i += $col - 1;
  969. $artlist .= "    </div>\r\n";
  970. }
  971. }//Loop Line
  972. $t3 = ExecTime();
  973. //echo ($t3-$t2);
  974. $this->dsql->FreeResult('al');
  975. return $artlist;
  976. }
  977. /**
  978. *  获取静态的分页列表
  979. *
  980. * @access    public
  981. * @param     string  $list_len  列表宽度
  982. * @param     string  $list_len  列表样式
  983. * @return    string
  984. */
  985. function GetPageListST($list_len,$listitem="index,end,pre,next,pageno")
  986. {
  987. $prepage = $nextpage = '';
  988. $prepagenum = $this->PageNo-1;
  989. $nextpagenum = $this->PageNo+1;
  990. if($list_len=='' || preg_match("/[^0-9]/", $list_len))
  991. {
  992. $list_len=3;
  993. }
  994. $totalpage = ceil($this->TotalResult/$this->PageSize);
  995. if($totalpage<=1 && $this->TotalResult>0)
  996. {
  997. return "<li><span class=\"pageinfo\">共 <strong>1</strong>页<strong>".$this->TotalResult."</strong>条记录</span></li>\r\n";
  998. }
  999. if($this->TotalResult == 0)
  1000. {
  1001. return "<li><span class=\"pageinfo\">共 <strong>0</strong>页<strong>".$this->TotalResult."</strong>条记录</span></li>\r\n";
  1002. }
  1003. $purl = $this->GetCurUrl();
  1004. $maininfo = "<li><span class=\"pageinfo\">共 <strong>{$totalpage}</strong>页<strong>".$this->TotalResult."</strong>条</span></li>\r\n";
  1005. $tnamerule = $this->GetMakeFileRule($this->Fields['id'],"list",$this->Fields['typedir'],$this->Fields['defaultname'],$this->Fields['namerule2']);
  1006. $tnamerule = preg_replace("/^(.*)\//", '', $tnamerule);
  1007. //获得上一页和主页的链接
  1008. if($this->PageNo != 1)
  1009. {
  1010. $prepage.="<li><a href='".str_replace("{page}",$prepagenum,$tnamerule)."'>上一页</a></li>\r\n";
  1011. $indexpage="<li><a href='".str_replace("{page}",1,$tnamerule)."'>首页</a></li>\r\n";
  1012. }
  1013. else
  1014. {
  1015. $indexpage="<li>首页</li>\r\n";
  1016. }
  1017. //下一页,未页的链接
  1018. if($this->PageNo!=$totalpage && $totalpage>1)
  1019. {
  1020. $nextpage.="<li><a href='".str_replace("{page}",$nextpagenum,$tnamerule)."'>下一页</a></li>\r\n";
  1021. $endpage="<li><a href='".str_replace("{page}",$totalpage,$tnamerule)."'>末页</a></li>\r\n";
  1022. }
  1023. else
  1024. {
  1025. $endpage="<li>末页</li>\r\n";
  1026. }
  1027. //option链接
  1028. $optionlist = '';
  1029. $optionlen = strlen($totalpage);
  1030. $optionlen = $optionlen*12 + 18;
  1031. if($optionlen < 36) $optionlen = 36;
  1032. if($optionlen > 100) $optionlen = 100;
  1033. $optionlist = "<li><select name='sldd' style='width:{$optionlen}px' onchange='location.href=this.options[this.selectedIndex].value;'>\r\n";
  1034. for($mjj=1;$mjj<=$totalpage;$mjj++)
  1035. {
  1036. if($mjj==$this->PageNo)
  1037. {
  1038. $optionlist .= "<option value='".str_replace("{page}",$mjj,$tnamerule)."' selected>$mjj</option>\r\n";
  1039. }
  1040. else
  1041. {
  1042. $optionlist .= "<option value='".str_replace("{page}",$mjj,$tnamerule)."'>$mjj</option>\r\n";
  1043. }
  1044. }
  1045. $optionlist .= "</select></li>\r\n";
  1046. //获得数字链接
  1047. $listdd="";
  1048. $total_list = $list_len * 2 + 1;
  1049. if($this->PageNo >= $total_list)
  1050. {
  1051. $j = $this->PageNo-$list_len;
  1052. $total_list = $this->PageNo+$list_len;
  1053. if($total_list>$totalpage)
  1054. {
  1055. $total_list=$totalpage;
  1056. }
  1057. }
  1058. else
  1059. {
  1060. $j=1;
  1061. if($total_list>$totalpage)
  1062. {
  1063. $total_list=$totalpage;
  1064. }
  1065. }
  1066. for($j;$j<=$total_list;$j++)
  1067. {
  1068. if($j==$this->PageNo)
  1069. {
  1070. $listdd.= "<li class=\"thisclass\">$j</li>\r\n";
  1071. }
  1072. else
  1073. {
  1074. $listdd.="<li><a href='".str_replace("{page}",$j,$tnamerule)."'>".$j."</a></li>\r\n";
  1075. }
  1076. }
  1077. $plist = '';
  1078. if(preg_match('/index/i', $listitem)) $plist .= $indexpage;
  1079. if(preg_match('/pre/i', $listitem)) $plist .= $prepage;
  1080. if(preg_match('/pageno/i', $listitem)) $plist .= $listdd;
  1081. if(preg_match('/next/i', $listitem)) $plist .= $nextpage;
  1082. if(preg_match('/end/i', $listitem)) $plist .= $endpage;
  1083. if(preg_match('/option/i', $listitem)) $plist .= $optionlist;
  1084. if(preg_match('/info/i', $listitem)) $plist .= $maininfo;
  1085. return $plist;
  1086. }
  1087. /**
  1088. *  获取动态的分页列表
  1089. *
  1090. * @access    public
  1091. * @param     string  $list_len  列表宽度
  1092. * @param     string  $list_len  列表样式
  1093. * @return    string
  1094. */
  1095. function GetPageListDM($list_len,$listitem="index,end,pre,next,pageno")
  1096. {
  1097. global $cfg_rewrite;
  1098. $prepage = $nextpage = '';
  1099. $prepagenum = $this->PageNo-1;
  1100. $nextpagenum = $this->PageNo+1;
  1101. if($list_len=='' || preg_match("/[^0-9]/", $list_len))
  1102. {
  1103. $list_len=3;
  1104. }
  1105. $totalpage = ceil($this->TotalResult/$this->PageSize);
  1106. if($totalpage<=1 && $this->TotalResult>0)
  1107. {
  1108. return "<li><span class=\"pageinfo\">共 1 页/".$this->TotalResult." 条记录</span></li>\r\n";
  1109. }
  1110. if($this->TotalResult == 0)
  1111. {
  1112. return "<li><span class=\"pageinfo\">共 0 页/".$this->TotalResult." 条记录</span></li>\r\n";
  1113. }
  1114. $maininfo = "<li><span class=\"pageinfo\">共 <strong>{$totalpage}</strong>页<strong>".$this->TotalResult."</strong>条</span></li>\r\n";
  1115. $purl = $this->GetCurUrl();
  1116. // 如果开启为静态,则对规则进行替换
  1117. if($cfg_rewrite == 'Y')
  1118. {
  1119. $nowurls = preg_replace("/\-/", ".php?", $purl);
  1120. $nowurls = explode("?", $nowurls);
  1121. $purl = $nowurls[0];
  1122. }
  1123. $geturl = "tid=".$this->TypeID."&TotalResult=".$this->TotalResult."&";
  1124. $purl .= '?'.$geturl;
  1125. $optionlist = '';
  1126. //$hidenform = "<input type='hidden' name='tid' value='".$this->TypeID."'>\r\n";
  1127. //$hidenform .= "<input type='hidden' name='TotalResult' value='".$this->TotalResult."'>\r\n";
  1128. //获得上一页和下一页的链接
  1129. if($this->PageNo != 1)
  1130. {
  1131. $prepage.="<li><a href='".$purl."PageNo=$prepagenum'>上一页</a></li>\r\n";
  1132. $indexpage="<li><a href='".$purl."PageNo=1'>首页</a></li>\r\n";
  1133. }
  1134. else
  1135. {
  1136. $indexpage="<li><a>首页</a></li>\r\n";
  1137. }
  1138. if($this->PageNo!=$totalpage && $totalpage>1)
  1139. {
  1140. $nextpage.="<li><a href='".$purl."PageNo=$nextpagenum'>下一页</a></li>\r\n";
  1141. $endpage="<li><a href='".$purl."PageNo=$totalpage'>末页</a></li>\r\n";
  1142. }
  1143. else
  1144. {
  1145. $endpage="<li><a>末页</a></li>\r\n";
  1146. }
  1147. //获得数字链接
  1148. $listdd="";
  1149. $total_list = $list_len * 2 + 1;
  1150. if($this->PageNo >= $total_list)
  1151. {
  1152. $j = $this->PageNo-$list_len;
  1153. $total_list = $this->PageNo+$list_len;
  1154. if($total_list>$totalpage)
  1155. {
  1156. $total_list=$totalpage;
  1157. }
  1158. }
  1159. else
  1160. {
  1161. $j=1;
  1162. if($total_list>$totalpage)
  1163. {
  1164. $total_list=$totalpage;
  1165. }
  1166. }
  1167. for($j;$j<=$total_list;$j++)
  1168. {
  1169. if($j==$this->PageNo)
  1170. {
  1171. $listdd.= "<li class=\"thisclass\"><a>$j</a></li>\r\n";
  1172. }
  1173. else
  1174. {
  1175. $listdd.="<li><a href='".$purl."PageNo=$j'>".$j."</a></li>\r\n";
  1176. }
  1177. }
  1178. $plist = '';
  1179. if(preg_match('/index/i', $listitem)) $plist .= $indexpage;
  1180. if(preg_match('/pre/i', $listitem)) $plist .= $prepage;
  1181. if(preg_match('/pageno/i', $listitem)) $plist .= $listdd;
  1182. if(preg_match('/next/i', $listitem)) $plist .= $nextpage;
  1183. if(preg_match('/end/i', $listitem)) $plist .= $endpage;
  1184. if(preg_match('/option/i', $listitem)) $plist .= $optionlist;
  1185. if(preg_match('/info/i', $listitem)) $plist .= $maininfo;
  1186. if($cfg_rewrite == 'Y')
  1187. {
  1188. $plist = str_replace('.php?tid=', '-', $plist);
  1189. $plist = str_replace('&TotalResult=', '-', $plist);
  1190. $plist = preg_replace("/&PageNo=(\d+)/i",'-\\1.html',$plist);
  1191. }
  1192. return $plist;
  1193. }
  1194. /**
  1195. *  获得当前的页面文件的url
  1196. *
  1197. * @access    public
  1198. * @return    string
  1199. */
  1200. function GetCurUrl()
  1201. {
  1202. if(!empty($_SERVER['REQUEST_URI']))
  1203. {
  1204. $nowurl = $_SERVER['REQUEST_URI'];
  1205. $nowurls = explode('?', $nowurl);
  1206. $nowurl = $nowurls[0];
  1207. }
  1208. else
  1209. {
  1210. $nowurl = $_SERVER['PHP_SELF'];
  1211. }
  1212. return $nowurl;
  1213. }
  1214. }//End Class
 
 
 
 
原文链接:http://blog.csdn.net/beyond__devil/article/details/52816358