123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- <?php
- require('../../class/connect.php');
- require('../../class/db_sql.php');
- require('../../class/functions.php');
- require('../../class/t_functions.php');
- require('../../data/dbcache/class.php');
- require '../'.LoadLang('pub/fun.php');
- $link=db_connect();
- $empire=new mysqlquery();
- $editor=1;
- $ttid=(int)$_GET['ttid'];
- if(empty($ttid))
- {
- printerror("ErrorUrl","history.go(-1)",1);
- }
- $search='&ttid='.$ttid;
- $mid=$class_tr[$ttid]['mid'];
- if(empty($mid))
- {
- printerror("ErrorUrl","history.go(-1)",1);
- }
- $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'");
- $tbname=$ttr['tbname'];
- if(empty($ttr['typeid'])||empty($tbname)||InfoIsInTable($tbname))
- {
- printerror("ErrorUrl","history.go(-1)",1);
- }
- //moreport
- if(Moreport_ReturnMustDt())
- {
- $ttr['listdt']=1;
- $ttr['repagenum']=0;
- }
- //是否支持动态页
- if(empty($ttr['listdt'])&&!$ttr['repagenum'])
- {
- $tturl=sys_ReturnBqInfoTypeUrl($ttid);
- Header("Location:$tturl");
- exit();
- }
- $GLOBALS['navclassid']=$ttid;
- $url=ReturnInfoTypeLink($ttid);
- $pagetitle=$ttr['tname'];
- $pagekey=$ttr['pagekey'];
- $pagedes=$ttr['intro'];
- $classimg=$ttr['timg']?$ttr['timg']:$public_r[newsurl].'e/data/images/notimg.gif';
- $add="ttid='$ttid'";
- $have_class=1;
- //排序
- if(empty($ttr['reorder']))
- {
- $addorder="newstime desc";
- }
- else
- {
- $addorder=$ttr['reorder'];
- }
- //列表模板
- $tempid=$ttr['listtempid'];
- if(empty($tempid))
- {
- printerror('ErrorUrl','',1);
- }
- $tempr=$empire->fetch1("select tempid,temptext,subnews,listvar,rownum,showdate,modid,subtitle,docode from ".GetTemptb("enewslisttemp")." where tempid='$tempid'");
- if(empty($tempr[tempid]))
- {
- printerror('ErrorUrl','',1);
- }
- $page=(int)$_GET['page'];
- $page=RepPIntvar($page);
- $start=0;
- $line=$ttr['tnum'];//每页显示记录数
- $page_line=10;//每页显示链接数
- $offset=$page*$line;//总偏移量
- //缓存
- if($public_r['ctimeopen'])
- {
- $public_r['usetotalnum']=0;
- }
- $ecms_tofunr=array();
- $ecms_tofunr['cacheuse']=0;
- $ecms_tofunr['cachetype']='ttpage';
- $ecms_tofunr['cacheids']=$ttid.','.$page;
- $ecms_tofunr['cachepath']='empirecms';
- $ecms_tofunr['cachedatepath']='cinfotype/'.$ttid;
- $ecms_tofunr['cachetime']=$public_r['ctimett'];
- $ecms_tofunr['cachelasttime']=$public_r['ctimelast'];
- $ecms_tofunr['cachelastedit']=$ttr['fclast'];
- $ecms_tofunr['cacheopen']=Ecms_eCacheCheckOpen($ecms_tofunr['cachetime']);
- if($ecms_tofunr['cacheopen']==1)
- {
- $ecms_tofunr['cacheuse']=Ecms_eCacheOut($ecms_tofunr,0);
- }
- //缓存
- //系统模型
- $ret_r=ReturnReplaceListF($mid);
- //优化
- $yhadd='';
- $yhid=$ttr['yhid'];
- $yhvar='qlist';
- if($yhid)
- {
- $yhadd=ReturnYhSql($yhid,$yhvar,1);
- }
- //总数
- $totalnum=(int)$_GET['totalnum'];
- if(!$public_r['usetotalnum'])
- {
- $totalnum=0;
- }
- if($totalnum<1)
- {
- $totalquery="select count(*) as total from {$dbtbpre}ecms_".$tbname." where ".$yhadd.$add;
- $num=$empire->gettotal($totalquery);
- }
- else
- {
- $num=$totalnum;
- }
- if($public_r['usetotalnum'])
- {
- $search.='&totalnum='.$num;
- }
- //checkpageno
- eCheckListPageNo($page,$line,$num);
- $query="select ".ReturnSqlListF($mid)." from {$dbtbpre}ecms_".$tbname." where ".$yhadd.$add;
- $query.=" order by ".ReturnSetTopSql('list').$addorder." limit $offset,$line";
- $sql=$empire->query($query);
- //伪静态
- $pagefunr=eReturnRewriteTitleTypeUrl($ttid,0);
- $pagefunr['repagenum']=$ttr['repagenum'];
- $pagefunr['dolink']=$public_r['newsurl'].$class_tr[$ttid]['tpath'].'/';
- $pagefunr['dofile']='index';
- $pagefunr['dotype']=$class_tr[$ttid]['ttype'];
- //分页
- if($pagefunr['rewrite']==1||$pagefunr['repagenum'])
- {
- $listpage=InfoUsePage($num,$line,$page_line,$start,$page,$search,$pagefunr);
- }
- else
- {
- $listpage=page1($num,$line,$page_line,$start,$page,$search);
- }
- //页面支持标签
- if($public_r['dtcanbq'])
- {
- $tempr[temptext]=DtNewsBq('list'.$tempid,$tempr[temptext],0);
- }
- else
- {
- if($public_r['searchtempvar'])
- {
- $tempr[temptext]=ReplaceTempvar($tempr[temptext]);
- }
- }
- $listtemp=$tempr[temptext];
- $rownum=$tempr[rownum];
- if(empty($rownum))
- {$rownum=1;}
- $formatdate=$tempr[showdate];
- $subnews=$tempr[subnews];
- $subtitle=$tempr[subtitle];
- $docode=$tempr[docode];
- $modid=$tempr[modid];
- $listvar=str_replace('[!--news.url--]',$public_r[newsurl],$tempr[listvar]);
- //公共
- $listtemp=str_replace('[!--newsnav--]',$url,$listtemp);//位置导航
- $listtemp=Class_ReplaceSvars($listtemp,$url,$ttid,$pagetitle,$pagekey,$pagedes,$classimg,$addr,0);
- $listtemp=str_replace('[!--page.stats--]','',$listtemp);
- $listtemp=str_replace('[!--show.page--]',$listpage,$listtemp);
- $listtemp=str_replace('[!--show.listpage--]',$listpage,$listtemp);
- $listtemp=str_replace('[!--list.pageno--]',$page+1,$listtemp);
- //取得列表模板
- $list_exp="[!--empirenews.listtemp--]";
- $list_r=explode($list_exp,$listtemp);
- $listtext=$list_r[1];
- $no=$offset+1;
- $changerow=1;
- while($r=$empire->fetch($sql))
- {
- //替换列表变量
- $repvar=ReplaceListVars($no,$listvar,$subnews,$subtitle,$formatdate,$url,$have_class,$r,$ret_r,$docode);
- $listtext=str_replace("<!--list.var".$changerow."-->",$repvar,$listtext);
- $changerow+=1;
- //超过行数
- if($changerow>$rownum)
- {
- $changerow=1;
- $string.=$listtext;
- $listtext=$list_r[1];
- }
- $no++;
- }
- //多余数据
- if($changerow<=$rownum&&$listtext<>$list_r[1])
- {
- $string.=$listtext;
- }
- $string=$list_r[0].$string.$list_r[2];
- //缓存
- if($ecms_tofunr['cacheopen']==1)
- {
- Ecms_eCacheIn($ecms_tofunr,stripSlashes($string));
- }
- else
- {
- echo stripSlashes($string);
- }
- //缓存
- db_close();
- $empire=null;
- ?>
|