index.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <?php
  2. require("../class/connect.php");
  3. require("../class/db_sql.php");
  4. require("../class/q_functions.php");
  5. require("../data/dbcache/class.php");
  6. require LoadLang("pub/fun.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  9. eCheckCloseMods('pl');//关闭模块
  10. //用户名
  11. $lusername=getcvar('mlusername');
  12. $lpassword='';
  13. if($lusername)
  14. {
  15. $lusername=RepPostVar($lusername);
  16. $lpassword=md5($lusername);
  17. }
  18. $id=(int)$_GET['id'];
  19. $classid=(int)$_GET['classid'];
  20. //专题
  21. $doaction=$_GET['doaction']=='dozt'?'dozt':'';
  22. $rewritedoaction='doinfo';
  23. if($doaction=='dozt')
  24. {
  25. $rewritedoaction='dozt';
  26. if(empty($classid))
  27. {
  28. printerror("ErrorUrl","history.go(-1)",1);
  29. }
  30. $n_r=$empire->fetch1("select ztid,ztname,intro,ztimg,ztpagekey,restb from {$dbtbpre}enewszt where ztid='$classid'");
  31. if(!$n_r['ztid'])
  32. {
  33. printerror("ErrorUrl","history.go(-1)",1);
  34. }
  35. $pubid='-'.$classid;
  36. $search="&doaction=dozt&classid=$classid";
  37. //标题链接
  38. $titleurl=sys_ReturnBqZtname($n_r);
  39. $title=stripSlashes($n_r['ztname']);
  40. $pagetitle=ehtmlspecialchars($title);
  41. //评分
  42. $infopfennum=0;
  43. $pinfopfen=0;
  44. $url=ReturnZtLink($n_r['ztid'])."&nbsp;>&nbsp;".$fun_r[pl];
  45. }
  46. else
  47. {
  48. if(empty($id)||empty($classid))
  49. {
  50. printerror("ErrorUrl","history.go(-1)",1);
  51. }
  52. if(empty($class_r[$classid][tbname])||InfoIsInTable($class_r[$classid][tbname]))
  53. {
  54. printerror("ErrorUrl","history.go(-1)",1);
  55. }
  56. $n_r=$empire->fetch1("select * from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where id='$id' limit 1");
  57. if(!$n_r['id']||$n_r['classid']!=$classid)
  58. {
  59. printerror("ErrorUrl","history.go(-1)",1);
  60. }
  61. $pubid=ReturnInfoPubid($classid,$id);
  62. $search="&classid=$classid&id=".$id;
  63. //标题链接
  64. $titleurl=sys_ReturnBqTitleLink($n_r);
  65. $title=stripSlashes($n_r[title]);
  66. $pagetitle=ehtmlspecialchars($title);
  67. //评分
  68. $infopfennum=$n_r['infopfennum'];
  69. $pinfopfen=$infopfennum?round($n_r['infopfen']/$infopfennum):0;
  70. $url=ReturnClassLink($n_r[classid])."&nbsp;>&nbsp;<a href=".$titleurl.">".$title."</a>&nbsp;>&nbsp;".$fun_r[pl];
  71. }
  72. //使用模板
  73. $rewritetempid=0;
  74. if($_GET['tempid'])
  75. {
  76. $tempid=(int)$_GET['tempid'];
  77. $tempnum=$empire->gettotal("select count(*) as total from ".GetTemptb("enewspltemp")." where tempid='$tempid'");
  78. $tempid=$tempnum?$tempid:$public_r['defpltempid'];
  79. $search.='&tempid='.$tempid;
  80. $rewritetempid=$tempid;
  81. }
  82. else
  83. {
  84. if($doaction=='dozt')
  85. {
  86. $tempid=$class_zr[$classid]['pltempid']?$class_zr[$classid]['pltempid']:$public_r['defpltempid'];
  87. }
  88. else
  89. {
  90. $tempid=$class_r[$classid]['pltempid']?$class_r[$classid]['pltempid']:$public_r['defpltempid'];
  91. }
  92. }
  93. if(empty($tempid))
  94. {
  95. $tempid=1;
  96. }
  97. $page=(int)$_GET['page'];
  98. $page=RepPIntvar($page);
  99. $start=0;
  100. $page_line=10;//每页显示链接数
  101. $line=$public_r['pl_num'];//每页显示记录数
  102. $offset=$page*$line;//总偏移量
  103. $query="select * from {$dbtbpre}enewspl_".$n_r['restb']." where pubid='$pubid' and checked=0";
  104. //总数量
  105. if($doaction=='dozt')
  106. {
  107. $totalquery="select count(*) as total from {$dbtbpre}enewspl_".$n_r['restb']." where pubid='$pubid' and checked=0";
  108. $num=$empire->gettotal($totalquery);
  109. }
  110. else
  111. {
  112. //需审核
  113. if($class_r[$classid][checkpl])
  114. {
  115. $totalquery="select count(*) as total from {$dbtbpre}enewspl_".$n_r['restb']." where pubid='$pubid' and checked=0";
  116. $num=$empire->gettotal($totalquery);
  117. }
  118. else
  119. {
  120. $num=$n_r['plnum'];
  121. }
  122. }
  123. //排序
  124. $addorder='plid desc';
  125. $myorder=(int)$_GET['myorder'];
  126. if($myorder==1)
  127. {
  128. $addorder='plid';
  129. $search.='&myorder='.$myorder;
  130. }
  131. $query.=" order by ".$addorder." limit $offset,$line";
  132. $sql=$empire->query($query);
  133. //伪静态
  134. $pagefunr=eReturnRewritePlUrl($classid,$id,$rewritedoaction,$myorder,$rewritetempid,0);
  135. $pagefunr['repagenum']=0;
  136. //分页
  137. if($pagefunr['rewrite']==1)
  138. {
  139. $listpage=InfoUsePage($num,$line,$page_line,$start,$page,$search,$pagefunr);
  140. }
  141. else
  142. {
  143. $listpage=page1($num,$line,$page_line,$start,$page,$search);
  144. }
  145. @require(ECMS_PATH.'e/data/filecache/template/pl'.$tempid.'.php');
  146. db_close();
  147. $empire=null;
  148. ?>