国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

listview.class.php 54KB

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