list.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. <?php
  2. require ('../class/connect.php');
  3. require ('../class/db_sql.php');
  4. require ('../class/functions.php');
  5. require ('../class/t_functions.php');
  6. require ('../data/dbcache/class.php');
  7. require LoadLang('pub/fun.php');
  8. $link = db_connect();
  9. $empire = new mysqlquery();
  10. $editor = 1;
  11. $classid = RepPostStr($_GET['classid']); //MaXian:过滤获取
  12. if (!is_numeric($classid)) {
  13. foreach ($class_r as $val) {
  14. foreach ($val as $val2) {
  15. if ($classid == $val['classpath']) {
  16. $classid = $val['classid'];
  17. break;
  18. }
  19. }
  20. }
  21. }
  22. if (empty($classid)) {
  23. printerror("ErrorUrl", "history.go(-1)", 1);
  24. }
  25. $search = '&classid=' . $classid;
  26. $tbname = $class_r[$classid]['tbname'];
  27. $mid = $class_r[$classid]['modid'];
  28. if (empty($tbname) || empty($mid) || InfoIsInTable($tbname)) {
  29. printerror("ErrorUrl", "history.go(-1)", 1);
  30. }
  31. $cr = $empire->fetch1("select classid,classpagekey,intro,classimg,cgroupid,islist,classtempid,listdt,bdinfoid,repagenum,islast,infos,addsql,fclast from {$dbtbpre}enewsclass where classid='$classid'");
  32. if (empty($cr['classid'])) {
  33. printerror("ErrorUrl", "history.go(-1)", 1);
  34. }
  35. if ($class_r[$classid]['islast'] && $cr['bdinfoid']) {
  36. printerror("ErrorUrl", "history.go(-1)", 1);
  37. }
  38. //moreport
  39. if (Moreport_ReturnMustDt()) {
  40. $class_r[$classid]['listdt'] = 1;
  41. $cr['repagenum'] = 0;
  42. $cr['listdt'] = 1;
  43. }
  44. //是否支持动态页
  45. /*if(empty($class_r[$classid]['listdt'])&&!$cr['repagenum']){
  46. $classurl=sys_ReturnBqClassname($cr, 9);
  47. Header("Location:$classurl");
  48. exit();
  49. }*/
  50. //权限
  51. if ($cr['cgroupid']) {
  52. $mgroupid = (int)getcvar('mlgroupid');
  53. if (!strstr($cr['cgroupid'], ',' . $mgroupid . ',')) {
  54. printerror('NotLevelToClass', 'history.go(-1)', 1);
  55. }
  56. }
  57. //缓存
  58. if ($public_r['ctimeopen']) {
  59. $public_r['usetotalnum'] = 0;
  60. }
  61. $ecms_tofunr = array();
  62. $ecms_tofunr['cacheuse'] = 0;
  63. $ecms_tofunr['cacheselfcid'] = $classid;
  64. $ecms_tofunr['cachepath'] = 'empirecms';
  65. //缓存
  66. $GLOBALS['navclassid'] = $classid;
  67. $url = ReturnClassLink($classid);
  68. $pagetitle = $class_r[$classid]['classname'];
  69. $pagekey = $cr['classpagekey'];
  70. $pagedes = $cr['intro'];
  71. $classimg = $cr['classimg'] ? $cr['classimg'] : $public_r['newsurl'] . 'e/data/images/notimg.gif';
  72. //---封面式---
  73. if (!$class_r[$classid]['islast'] && $cr['islist'] != 1) {
  74. /* if(empty($cr['listdt'])||$cr['islist'] == 3){
  75. printerror("ErrorUrl", "history.go(-1)", 1);
  76. }*/
  77. //封面:缓存
  78. $ecms_tofunr['cachetype'] = 'classpage';
  79. $ecms_tofunr['cacheids'] = $classid;
  80. $ecms_tofunr['cachedatepath'] = 'cpage';
  81. $ecms_tofunr['cachetime'] = $public_r['ctimeclass'];
  82. $ecms_tofunr['cachelasttime'] = $public_r['ctimelast'];
  83. $ecms_tofunr['cachelastedit'] = $cr['fclast'];
  84. $ecms_tofunr['cacheopen'] = Ecms_eCacheCheckOpen($ecms_tofunr['cachetime']);
  85. if ($ecms_tofunr['cacheopen'] == 1) {
  86. $ecms_tofunr['cacheuse'] = Ecms_eCacheOut($ecms_tofunr, 0);
  87. }
  88. //封面:缓存
  89. if ($cr['islist'] == 2) {
  90. $classtemp = GetClassText($classid);
  91. $dttempname = 'classpage' . $classid;
  92. } else {
  93. if (empty($cr['classtempid'])) {
  94. printerror('ErrorUrl', '', 1);
  95. }
  96. $classtemp = GetClassTemp($cr['classtempid']);
  97. $dttempname = 'classtemp' . $cr['classtempid'];
  98. }
  99. $string = DtNewsBq($dttempname, $classtemp, 0);
  100. $string = str_replace('[!--newsnav--]', $url, $string); //位置导航
  101. $string = Class_ReplaceSvars($string, $url, $classid, $pagetitle, $pagekey, $pagedes, $classimg, $addr, 0);
  102. $string = str_replace('[!--page.stats--]', '', $string);
  103. //封面:缓存
  104. if ($ecms_tofunr['cacheopen'] == 1) {
  105. Ecms_eCacheIn($ecms_tofunr, stripSlashes($string));
  106. } else {
  107. echo stripSlashes($string);
  108. }
  109. //封面:缓存
  110. exit();
  111. }
  112. //---列表式---
  113. $add = '';
  114. //栏目
  115. if ($class_r[$classid]['islast']) { //终极栏目
  116. $add.= "classid='$classid'";
  117. $have_class = 0;
  118. } else {
  119. $add.= ReturnClass($class_r[$classid]['sonclass']);
  120. $have_class = 1;
  121. }
  122. if ($cr['addsql']) {
  123. $add.= ' and (' . $cr['addsql'] . ')';
  124. }
  125. //排序
  126. if (empty($class_r[$classid]['reorder'])) {
  127. $addorder = "newstime desc";
  128. } else {
  129. $addorder = $class_r[$classid]['reorder'];
  130. }
  131. //列表模板
  132. $tempid = $class_r[$classid]['dtlisttempid'] ? $class_r[$classid]['dtlisttempid'] : $class_r[$classid]['listtempid'];
  133. if (empty($tempid)) {
  134. printerror('ErrorUrl', '', 1);
  135. }
  136. $tempr = $empire->fetch1("select tempid,temptext,subnews,listvar,rownum,showdate,modid,subtitle,docode from " . GetTemptb("enewslisttemp") . " where tempid='$tempid'");
  137. if (empty($tempr['tempid'])) {
  138. printerror('ErrorUrl', '', 1);
  139. }
  140. $PageUrl = $_SERVER['HTTP_X_REWRITE_URL'] ? $_SERVER['HTTP_X_REWRITE_URL'] : $_SERVER['REQUEST_URI'];
  141. $page = (int)substr($_GET['page'], 6); // MaXian:分页获取
  142. if ($page == 1 || strpos($PageUrl, '_0') > 0) { // MaXian:判断分页是1或者0就跳转 404
  143. header('HTTP/1.1 404 Not Found');
  144. header('status: 404 Not Found');
  145. printerror('ErrorUrl', 'history.go(-1)', 1);
  146. }
  147. $page = RepPIntvar($page) ? RepPIntvar($page) : 1;
  148. $start = 0;
  149. $line = $class_r[$classid]['lencord']; //每页显示记录数
  150. $page_line = 5; //每页显示链接数
  151. $offset = $page * $line - $line; //总偏移量
  152. //列表:缓存
  153. $ecms_tofunr['cachetype'] = 'classlist';
  154. $ecms_tofunr['cacheids'] = $classid . ',' . $page;
  155. $ecms_tofunr['cachedatepath'] = 'clist/' . $classid;
  156. $ecms_tofunr['cachetime'] = $public_r['ctimelist'];
  157. $ecms_tofunr['cachelasttime'] = $public_r['ctimelast'];
  158. $ecms_tofunr['cachelastedit'] = $cr['fclast'];
  159. $ecms_tofunr['cacheopen'] = Ecms_eCacheCheckOpen($ecms_tofunr['cachetime']);
  160. if ($ecms_tofunr['cacheopen'] == 1) {
  161. $ecms_tofunr['cacheuse'] = Ecms_eCacheOut($ecms_tofunr, 0);
  162. }
  163. //列表:缓存
  164. //系统模型
  165. $ret_r = ReturnReplaceListF($mid);
  166. //优化
  167. $yhadd = '';
  168. $yhid = $class_r[$classid]['yhid'];
  169. $yhvar = 'qlist';
  170. if ($yhid) {
  171. $yhadd = ReturnYhSql($yhid, $yhvar, 1);
  172. }
  173. //总数
  174. $totalnum = (int)$_GET['totalnum'];
  175. if (!$public_r['usetotalnum']) {
  176. $totalnum = 0;
  177. }
  178. if ($totalnum < 1) {
  179. if ($yhadd || $cr['addsql']) {
  180. $totalquery = "select count(*) as total from {$dbtbpre}ecms_" . $tbname . " where " . $yhadd . $add;
  181. $num = $empire->gettotal($totalquery);
  182. } else {
  183. $num = ReturnClassInfoNum($cr, 0);
  184. }
  185. } else {
  186. $num = $totalnum;
  187. }
  188. if ($public_r['usetotalnum']) {
  189. $search.= '&totalnum=' . $num;
  190. }
  191. //checkpageno
  192. MX_eCheckListPageNo($page - 1, $line, $num); // MaXian:验证页码是否有效
  193. function MX_eCheckListPageNo($page, $line, $totalnum) { // MaXian:验证页码是否有效
  194. $page = (int)$page;
  195. $line = (int)$line;
  196. $totalnum = (int)$totalnum;
  197. if (!$page || !$line) {
  198. return '';
  199. }
  200. $totalpage = ceil($totalnum / $line);
  201. if ($page >= $totalpage) { // MaXian:分页不合法跳转404
  202. header('HTTP/1.1 404 Not Found');
  203. header('status: 404 Not Found');
  204. printerror('ErrorUrl', 'history.go(-1)', 1);
  205. }
  206. }
  207. $query = "select " . ReturnSqlListF($mid) . " from {$dbtbpre}ecms_" . $tbname . " where " . $yhadd . $add;
  208. $query.= " order by " . ReturnSetTopSql('list') . $addorder . " limit $offset,$line";
  209. $sql = $empire->query($query);
  210. //伪静态
  211. $pagefunr = eReturnRewriteClassUrl($classid, 0);
  212. $pagefunr['repagenum'] = $cr['repagenum'];
  213. $pagefunr['dolink'] = empty($class_r[$classid]['classurl']) ? $public_r['newsurl'] . $class_r[$classid]['classpath'] . '/' : $class_r[$classid]['classurl'] . '/';
  214. $pagefunr['dofile'] = 'index';
  215. $pagefunr['dotype'] = $class_r[$classid]['classtype'];
  216. //分页
  217. /*if($pagefunr['rewrite']==1||$pagefunr['repagenum']){
  218. $listpage=InfoUsePage($num,$line,$page_line,$start,$page,$search,$pagefunr);
  219. }else{
  220. $listpage=page1($num,$line,$page_line,$start,$page,$search);
  221. }*/
  222. $listpage = MX_ListPage($num, $line, $page_line, $start, $page); // MaXian:自己加的分页
  223. function MX_ListPage($num, $line, $page_line, $start, $page) { // MaXian:分页函数
  224. global $fun_r;
  225. if ($num <= $line) {
  226. return '';
  227. }
  228. $f = '_'; //伪静态分页分割符号
  229. $url = preg_replace('/_[0-9]+/', '', $_SERVER['HTTP_X_REWRITE_URL'] ? $_SERVER['HTTP_X_REWRITE_URL'] : $_SERVER['REQUEST_URI']);
  230. if (!strripos($url, '.')) {
  231. $url = $url . 'index.html';
  232. }
  233. $urlarr = explode('.', $url);
  234. $snum = 3; //最小页数
  235. $totalpage = ceil($num / $line); //取得总页数
  236. $firststr = '<li class="previous disabled"><a href="' . substr($urlarr[0], 0, -5) . '">首页</a></li>';
  237. //上一页
  238. if ($page > 1) {
  239. //$toppage = '<li class="previous disabled"><a href="' . substr($urlarr[0], 0, -5) . '">&laquo;</a></li>';
  240. $pagepr = $page - 1;
  241. if ($pagepr == 1) {
  242. $prepage = '<li class="previous disabled"><a href="' . substr($urlarr[0], 0, -5) . '">&laquo;</a></li>';
  243. } else {
  244. $prepage = '<li class="previous disabled"><a href="' . $urlarr[0] . $f . $pagepr . '.' . $urlarr[1] . '">&laquo;</a></li>';
  245. }
  246. }
  247. //下一页
  248. if ($page != $totalpage) {
  249. $pagenex = $page + 1;
  250. $nextpage = '<li class="next"><a href="' . $urlarr[0] . $f . $pagenex . '.' . $urlarr[1] . '"> &raquo;</a></li>';
  251. $lastpage = '<li class="next"><a href="' . $urlarr[0] . $f . $totalpage . '.' . $urlarr[1] . '">' . $fun_r['lastpage'] . '</a></li>';
  252. }
  253. $starti = $page - $snum < 0 ? 0 : $page - $snum;
  254. $no = 0;
  255. for ($i = $starti + 1;$i < $totalpage + 1 && $no < $page_line;$i++) {
  256. $no++;
  257. if ($page == $i) {
  258. $is_1 = "<li class=\"disabled active\"><a>";
  259. $is_2 = "</a></li>";
  260. } else {
  261. if ($i == 1) { //第一页不加page0
  262. $is_1 = '<li><a href="' . substr($urlarr[0], 0, -5) . '">';
  263. $is_2 = "</a></li>";
  264. } else {
  265. $is_1 = '<li><a href="' . $urlarr[0] . $f . $i . '.' . $urlarr[1] . '">';
  266. $is_2 = "</a></li>";
  267. }
  268. }
  269. $pagenum = $i;
  270. $returnstr.= $is_1 . $pagenum . $is_2;
  271. }
  272. $returnstr = $firststr . $toppage . $prepage . $returnstr . $nextpage . $lastpage;
  273. return $returnstr;
  274. }
  275. //页面支持标签
  276. if ($public_r['dtcanbq']) {
  277. $tempr['temptext'] = DtNewsBq('list' . $tempid, $tempr['temptext'], 0);
  278. } else {
  279. if ($public_r['searchtempvar']) {
  280. $tempr['temptext'] = ReplaceTempvar($tempr['temptext']);
  281. }
  282. }
  283. $listtemp = $tempr['temptext'];
  284. $rownum = $tempr['rownum'];
  285. if (empty($rownum)) {
  286. $rownum = 1;
  287. }
  288. $formatdate = $tempr['showdate'];
  289. $subnews = $tempr['subnews'];
  290. $subtitle = $tempr['subtitle'];
  291. $docode = $tempr['docode'];
  292. $modid = $tempr['modid'];
  293. $listvar = str_replace('[!--news.url--]', $public_r['newsurl'], $tempr['listvar']);
  294. //公共
  295. $listtemp = str_replace('[!--newsnav--]', $url, $listtemp); //位置导航
  296. $listtemp = Class_ReplaceSvars($listtemp, $url, $classid, $pagetitle, $pagekey, $pagedes, $classimg, $addr, 0);
  297. $listtemp = str_replace('[!--page.stats--]', '', $listtemp);
  298. $listtemp = str_replace('[!--show.page--]', $listpage, $listtemp);
  299. $listtemp = str_replace('[!--show.listpage--]', $listpage, $listtemp);
  300. $listtemp = str_replace('[!--list.pageno--]', $page + 1, $listtemp);
  301. //取得列表模板
  302. $list_exp = "[!--empirenews.listtemp--]";
  303. $list_r = explode($list_exp, $listtemp);
  304. $listtext = $list_r[1];
  305. $no = $offset + 1;
  306. $changerow = 1;
  307. while ($r = $empire->fetch($sql)) {
  308. //替换列表变量
  309. $repvar = ReplaceListVars($no, $listvar, $subnews, $subtitle, $formatdate, $url, $have_class, $r, $ret_r, $docode);
  310. $listtext = str_replace("<!--list.var" . $changerow . "-->", $repvar, $listtext);
  311. $changerow+= 1;
  312. //超过行数
  313. if ($changerow > $rownum) {
  314. $changerow = 1;
  315. $string.= $listtext;
  316. $listtext = $list_r[1];
  317. }
  318. $no++;
  319. }
  320. //多余数据
  321. if ($changerow <= $rownum && $listtext <> $list_r[1]) {
  322. $string.= $listtext;
  323. }
  324. $string = $list_r[0] . $string . $list_r[2];
  325. //列表:缓存
  326. if ($ecms_tofunr['cacheopen'] == 1) {
  327. Ecms_eCacheIn($ecms_tofunr, stripSlashes($string));
  328. } else {
  329. echo stripSlashes($string);
  330. }
  331. //列表:缓存
  332. db_close();
  333. $empire = null;
  334. ?>