index.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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. $ttid=(int)$_GET['ttid'];
  12. if(empty($ttid))
  13. {
  14. printerror("ErrorUrl","history.go(-1)",1);
  15. }
  16. $search='&ttid='.$ttid;
  17. $mid=$class_tr[$ttid]['mid'];
  18. if(empty($mid))
  19. {
  20. printerror("ErrorUrl","history.go(-1)",1);
  21. }
  22. $ttr=$empire->fetch1("select typeid,tname,mid,yhid,tnum,listtempid,tpath,ttype,maxnum,reorder,tid,tbname,timg,intro,pagekey,listdt,repagenum,fclast from {$dbtbpre}enewsinfotype where typeid='$ttid'");
  23. $tbname=$ttr['tbname'];
  24. if(empty($ttr['typeid'])||empty($tbname)||InfoIsInTable($tbname))
  25. {
  26. printerror("ErrorUrl","history.go(-1)",1);
  27. }
  28. //moreport
  29. if(Moreport_ReturnMustDt())
  30. {
  31. $ttr['listdt']=1;
  32. $ttr['repagenum']=0;
  33. }
  34. //是否支持动态页
  35. if(empty($ttr['listdt'])&&!$ttr['repagenum'])
  36. {
  37. $tturl=sys_ReturnBqInfoTypeUrl($ttid);
  38. Header("Location:$tturl");
  39. exit();
  40. }
  41. $GLOBALS['navclassid']=$ttid;
  42. $url=ReturnInfoTypeLink($ttid);
  43. $pagetitle=$ttr['tname'];
  44. $pagekey=$ttr['pagekey'];
  45. $pagedes=$ttr['intro'];
  46. $classimg=$ttr['timg']?$ttr['timg']:$public_r[newsurl].'e/data/images/notimg.gif';
  47. $add="ttid='$ttid'";
  48. $have_class=1;
  49. //排序
  50. if(empty($ttr['reorder']))
  51. {
  52. $addorder="newstime desc";
  53. }
  54. else
  55. {
  56. $addorder=$ttr['reorder'];
  57. }
  58. //列表模板
  59. $tempid=$ttr['listtempid'];
  60. if(empty($tempid))
  61. {
  62. printerror('ErrorUrl','',1);
  63. }
  64. $tempr=$empire->fetch1("select tempid,temptext,subnews,listvar,rownum,showdate,modid,subtitle,docode from ".GetTemptb("enewslisttemp")." where tempid='$tempid'");
  65. if(empty($tempr[tempid]))
  66. {
  67. printerror('ErrorUrl','',1);
  68. }
  69. $page=(int)$_GET['page'];
  70. $page=RepPIntvar($page);
  71. $start=0;
  72. $line=$ttr['tnum'];//每页显示记录数
  73. $page_line=10;//每页显示链接数
  74. $offset=$page*$line;//总偏移量
  75. //缓存
  76. if($public_r['ctimeopen'])
  77. {
  78. $public_r['usetotalnum']=0;
  79. }
  80. $ecms_tofunr=array();
  81. $ecms_tofunr['cacheuse']=0;
  82. $ecms_tofunr['cachetype']='ttpage';
  83. $ecms_tofunr['cacheids']=$ttid.','.$page;
  84. $ecms_tofunr['cachepath']='empirecms';
  85. $ecms_tofunr['cachedatepath']='cinfotype/'.$ttid;
  86. $ecms_tofunr['cachetime']=$public_r['ctimett'];
  87. $ecms_tofunr['cachelasttime']=$public_r['ctimelast'];
  88. $ecms_tofunr['cachelastedit']=$ttr['fclast'];
  89. $ecms_tofunr['cacheopen']=Ecms_eCacheCheckOpen($ecms_tofunr['cachetime']);
  90. if($ecms_tofunr['cacheopen']==1)
  91. {
  92. $ecms_tofunr['cacheuse']=Ecms_eCacheOut($ecms_tofunr,0);
  93. }
  94. //缓存
  95. //系统模型
  96. $ret_r=ReturnReplaceListF($mid);
  97. //优化
  98. $yhadd='';
  99. $yhid=$ttr['yhid'];
  100. $yhvar='qlist';
  101. if($yhid)
  102. {
  103. $yhadd=ReturnYhSql($yhid,$yhvar,1);
  104. }
  105. //总数
  106. $totalnum=(int)$_GET['totalnum'];
  107. if(!$public_r['usetotalnum'])
  108. {
  109. $totalnum=0;
  110. }
  111. if($totalnum<1)
  112. {
  113. $totalquery="select count(*) as total from {$dbtbpre}ecms_".$tbname." where ".$yhadd.$add;
  114. $num=$empire->gettotal($totalquery);
  115. }
  116. else
  117. {
  118. $num=$totalnum;
  119. }
  120. if($public_r['usetotalnum'])
  121. {
  122. $search.='&totalnum='.$num;
  123. }
  124. //checkpageno
  125. eCheckListPageNo($page,$line,$num);
  126. $query="select ".ReturnSqlListF($mid)." from {$dbtbpre}ecms_".$tbname." where ".$yhadd.$add;
  127. $query.=" order by ".ReturnSetTopSql('list').$addorder." limit $offset,$line";
  128. $sql=$empire->query($query);
  129. //伪静态
  130. $pagefunr=eReturnRewriteTitleTypeUrl($ttid,0);
  131. $pagefunr['repagenum']=$ttr['repagenum'];
  132. $pagefunr['dolink']=$public_r['newsurl'].$class_tr[$ttid]['tpath'].'/';
  133. $pagefunr['dofile']='index';
  134. $pagefunr['dotype']=$class_tr[$ttid]['ttype'];
  135. //分页
  136. if($pagefunr['rewrite']==1||$pagefunr['repagenum'])
  137. {
  138. $listpage=InfoUsePage($num,$line,$page_line,$start,$page,$search,$pagefunr);
  139. }
  140. else
  141. {
  142. $listpage=page1($num,$line,$page_line,$start,$page,$search);
  143. }
  144. //页面支持标签
  145. if($public_r['dtcanbq'])
  146. {
  147. $tempr[temptext]=DtNewsBq('list'.$tempid,$tempr[temptext],0);
  148. }
  149. else
  150. {
  151. if($public_r['searchtempvar'])
  152. {
  153. $tempr[temptext]=ReplaceTempvar($tempr[temptext]);
  154. }
  155. }
  156. $listtemp=$tempr[temptext];
  157. $rownum=$tempr[rownum];
  158. if(empty($rownum))
  159. {$rownum=1;}
  160. $formatdate=$tempr[showdate];
  161. $subnews=$tempr[subnews];
  162. $subtitle=$tempr[subtitle];
  163. $docode=$tempr[docode];
  164. $modid=$tempr[modid];
  165. $listvar=str_replace('[!--news.url--]',$public_r[newsurl],$tempr[listvar]);
  166. //公共
  167. $listtemp=str_replace('[!--newsnav--]',$url,$listtemp);//位置导航
  168. $listtemp=Class_ReplaceSvars($listtemp,$url,$ttid,$pagetitle,$pagekey,$pagedes,$classimg,$addr,0);
  169. $listtemp=str_replace('[!--page.stats--]','',$listtemp);
  170. $listtemp=str_replace('[!--show.page--]',$listpage,$listtemp);
  171. $listtemp=str_replace('[!--show.listpage--]',$listpage,$listtemp);
  172. $listtemp=str_replace('[!--list.pageno--]',$page+1,$listtemp);
  173. //取得列表模板
  174. $list_exp="[!--empirenews.listtemp--]";
  175. $list_r=explode($list_exp,$listtemp);
  176. $listtext=$list_r[1];
  177. $no=$offset+1;
  178. $changerow=1;
  179. while($r=$empire->fetch($sql))
  180. {
  181. //替换列表变量
  182. $repvar=ReplaceListVars($no,$listvar,$subnews,$subtitle,$formatdate,$url,$have_class,$r,$ret_r,$docode);
  183. $listtext=str_replace("<!--list.var".$changerow."-->",$repvar,$listtext);
  184. $changerow+=1;
  185. //超过行数
  186. if($changerow>$rownum)
  187. {
  188. $changerow=1;
  189. $string.=$listtext;
  190. $listtext=$list_r[1];
  191. }
  192. $no++;
  193. }
  194. //多余数据
  195. if($changerow<=$rownum&&$listtext<>$list_r[1])
  196. {
  197. $string.=$listtext;
  198. }
  199. $string=$list_r[0].$string.$list_r[2];
  200. //缓存
  201. if($ecms_tofunr['cacheopen']==1)
  202. {
  203. Ecms_eCacheIn($ecms_tofunr,stripSlashes($string));
  204. }
  205. else
  206. {
  207. echo stripSlashes($string);
  208. }
  209. //缓存
  210. db_close();
  211. $empire=null;
  212. ?>