国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
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.

1194 lines
52KB

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