ListInfoDoc.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../class/connect.php");
  4. require("../class/db_sql.php");
  5. require("../class/functions.php");
  6. require LoadLang("pub/fun.php");
  7. require("../data/dbcache/class.php");
  8. $link=db_connect();
  9. $empire=new mysqlquery();
  10. //验证用户
  11. $lur=is_login();
  12. $logininid=$lur['userid'];
  13. $loginin=$lur['username'];
  14. $loginrnd=$lur['rnd'];
  15. $loginlevel=$lur['groupid'];
  16. $loginadminstyleid=$lur['adminstyleid'];
  17. //ehash
  18. $ecms_hashur=hReturnEcmsHashStrAll();
  19. $classid=(int)$_GET['classid'];
  20. $bclassid=(int)$class_r[$classid]['bclassid'];
  21. //取得栏目名
  22. if(!$class_r[$classid][classid]||!$class_r[$classid][tbname])
  23. {
  24. printerror("ErrorUrl","history.go(-1)");
  25. }
  26. //验证权限
  27. $doselfinfo=CheckLevel($logininid,$loginin,$classid,"news");
  28. //取得模型表
  29. $fieldexp="<!--field--->";
  30. $recordexp="<!--record-->";
  31. //返回搜索字段列表
  32. function ReturnSearchOptions($enter,$field,$record){
  33. global $modid,$emod_r;
  34. $r=explode($record,$enter);
  35. $count=count($r)-1;
  36. for($i=0;$i<$count;$i++)
  37. {
  38. if(!$sr['searchallfield'])
  39. {
  40. $or="";
  41. }
  42. else
  43. {
  44. $or=" or ";
  45. }
  46. $r1=explode($field,$r[$i]);
  47. if($r1[1]=="special.field"||strstr($emod_r[$modid]['tbdataf'],','.$r1[1].','))
  48. {
  49. continue;
  50. }
  51. if($r1[1]=="id")
  52. {
  53. $sr['searchallfield'].=$or.$r1[1]."='[!--key--]'";
  54. $sr['select'].="<option value=\"".$r1[1]."\">".$r1[0]."</option>";
  55. continue;
  56. }
  57. $sr['searchallfield'].=$or.$r1[1]." like '%[!--key--]%'";
  58. $sr['select'].="<option value=\"".$r1[1]."\">".$r1[0]."</option>";
  59. }
  60. return $sr;
  61. }
  62. $modid=(int)$class_r[$classid][modid];
  63. $infomod_r=$empire->fetch1("select enter,tbname,sonclass,listfile from {$dbtbpre}enewsmod where mid=".$modid);
  64. if(empty($infomod_r['tbname']))
  65. {
  66. printerror("ErrorUrl","history.go(-1)");
  67. }
  68. $infomod_r['enter'].='发布者<!--field--->username<!--record-->ID<!--field--->id<!--record-->关键字<!--field--->keyboard<!--record-->';
  69. $searchoptions_r=ReturnSearchOptions($infomod_r['enter'],$fieldexp,$recordexp);
  70. //审核表
  71. $search='';
  72. $search.=$ecms_hashur['ehref'];
  73. $addecmscheck='';
  74. $ecmscheck=(int)$_GET['ecmscheck'];
  75. $indexchecked=1;
  76. if($ecmscheck)
  77. {
  78. $search.='&ecmscheck='.$ecmscheck;
  79. $addecmscheck='&ecmscheck='.$ecmscheck;
  80. $indexchecked=0;
  81. }
  82. $infotb=ReturnInfoMainTbname($class_r[$classid][tbname],$indexchecked);
  83. //导航
  84. $url=AdminReturnClassLink($classid).'&nbsp;>&nbsp;管理归档&nbsp;&nbsp;(<a href="AddNews.php?enews=AddNews&bclassid='.$bclassid.'&classid='.$classid.$addecmscheck.$ecms_hashur['ehref'].'">增加信息</a>)';
  85. $start=0;
  86. $page=(int)$_GET['page'];
  87. $page=RepPIntvar($page);
  88. $line=intval($public_r['hlistinfonum']);//每页显示
  89. $page_line=16;
  90. $offset=$page*$line;
  91. $search.="&bclassid=$bclassid&classid=$classid";
  92. $add='';
  93. $ewhere='';
  94. //搜索
  95. $sear=RepPostStr($_GET['sear'],1);
  96. if($sear)
  97. {
  98. $keyboard=RepPostVar2($_GET['keyboard']);
  99. $show=RepPostVar($_GET['show']);
  100. //关键字
  101. if($keyboard)
  102. {
  103. //搜索全部
  104. if(!$show)
  105. {
  106. $add=" and (".str_replace("[!--key--]",$keyboard,$searchoptions_r['searchallfield']).")";
  107. }
  108. //搜索字段
  109. elseif($show&&strstr($infomod_r['enter'],"<!--field--->".$show."<!--record-->"))
  110. {
  111. $add=$show!="id"?" and (".$show." like '%$keyboard%')":" and (".$show."='$keyboard')";
  112. $searchoptions_r['select']=str_replace(" value=\"".$show."\">"," value=\"".$show."\" selected>",$searchoptions_r['select']);
  113. }
  114. }
  115. //标题分类
  116. $ttid=(int)$_GET['ttid'];
  117. if($ttid)
  118. {
  119. $add.=" and ttid='$ttid'";
  120. }
  121. $search.="&sear=1&keyboard=$keyboard&show=$show&ttid=$ttid";
  122. }
  123. //只能编辑自己的信息
  124. if($doselfinfo['doselfinfo'])
  125. {
  126. $add.=" and userid='$logininid' and ismember=0";
  127. }
  128. //单栏目单表
  129. $singletable=0;
  130. if($infomod_r[sonclass]=='|'.$classid.'|')
  131. {
  132. $singletablenum=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsclass where tbname='".$class_r[$classid][tbname]."' and islast=1");
  133. $singletable=$singletablenum==1?1:0;
  134. }
  135. if($infomod_r[sonclass]=='|'.$classid.'|'&&$singletable==1)
  136. {
  137. $ewhere=$add?' where '.substr($add,5):'';
  138. }
  139. else
  140. {
  141. $ewhere=" where classid='$classid'".$add;
  142. }
  143. //统计
  144. $totalquery="select count(*) as total from {$dbtbpre}ecms_".$class_r[$classid][tbname]."_doc".$ewhere;
  145. $totalnum=(int)$_GET['totalnum'];
  146. if($totalnum<1)
  147. {
  148. $num=$empire->gettotal($totalquery);//取得总条数
  149. }
  150. else
  151. {
  152. $num=$totalnum;
  153. }
  154. //排序
  155. $myorder=RepPostStr($_GET['myorder'],1);
  156. if($myorder==1)//时间
  157. {$doorder="newstime desc";}
  158. elseif($myorder==2)//评论数
  159. {$doorder="plnum desc";}
  160. elseif($myorder==3)//人气
  161. {$doorder="onclick desc";}
  162. elseif($myorder==4)//ID号
  163. {$doorder="id desc";}
  164. else//默认排序
  165. {
  166. $thisclassr=$empire->fetch1("select listorder from {$dbtbpre}enewsclass where classid='$classid'");
  167. if(empty($thisclassr[listorder]))
  168. {
  169. $doorder="id desc";
  170. }
  171. else
  172. {
  173. $doorder=$thisclassr[listorder];
  174. }
  175. }
  176. $search.="&totalnum=$num";
  177. $search1=$search;
  178. $search.="&myorder=$myorder";
  179. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  180. $phpmyself=urlencode(eReturnSelfPage(1));
  181. //标题分类
  182. $tts='';
  183. $ttsql=$empire->query("select typeid,tname from {$dbtbpre}enewsinfotype where mid='$modid' order by myorder");
  184. while($ttr=$empire->fetch($ttsql))
  185. {
  186. $select='';
  187. if($ttr[typeid]==$ttid)
  188. {
  189. $select=' selected';
  190. }
  191. $tts.="<option value='$ttr[typeid]'".$select.">$ttr[tname]</option>";
  192. }
  193. $stts=$tts?"<select name='ttid'><option value='0'>标题分类</option>$tts</select>":"";
  194. //栏目链接
  195. $getcurlr['classid']=$classid;
  196. $classurl=sys_ReturnBqClassname($getcurlr,9);
  197. //导入页面
  198. $deftempfile=ECMS_PATH.'e/data/html/list/doclistinfo.php';
  199. if($infomod_r[listfile])
  200. {
  201. $tempfile=ECMS_PATH.'e/data/html/list/doc'.$infomod_r[listfile].'.php';
  202. if(!file_exists($tempfile))
  203. {
  204. $tempfile=$deftempfile;
  205. }
  206. }
  207. else
  208. {
  209. $tempfile=$deftempfile;
  210. }
  211. require($tempfile);
  212. db_close();
  213. $empire=null;
  214. ?>