ListNews.php 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  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. $thiscr=$empire->fetch1("select tbname,listorder,allinfos,infos from {$dbtbpre}enewsclass where classid='$classid'");
  28. if(!$thiscr['tbname'])
  29. {
  30. printerror('ErrorUrl','history.go(-1)');
  31. }
  32. $classallinfos=$thiscr['allinfos'];
  33. $classinfos=$thiscr['infos'];
  34. $classckinfos=$classallinfos-$classinfos;
  35. //验证权限
  36. $doselfinfo=CheckLevel($logininid,$loginin,$classid,"news");
  37. //取得模型表
  38. $fieldexp="<!--field--->";
  39. $recordexp="<!--record-->";
  40. //返回搜索字段列表
  41. function ReturnSearchOptions($enter,$field,$record){
  42. global $modid,$emod_r;
  43. $r=explode($record,$enter);
  44. $count=count($r)-1;
  45. for($i=0;$i<$count;$i++)
  46. {
  47. if(!$sr['searchallfield'])
  48. {
  49. $or="";
  50. }
  51. else
  52. {
  53. $or=" or ";
  54. }
  55. $r1=explode($field,$r[$i]);
  56. if($r1[1]=="special.field"||strstr($emod_r[$modid]['tbdataf'],','.$r1[1].','))
  57. {
  58. continue;
  59. }
  60. if($r1[1]=="id")
  61. {
  62. $sr['searchallfield'].=$or.$r1[1]."='[!--key--]'";
  63. $sr['select'].="<option value=\"".$r1[1]."\">".$r1[0]."</option>";
  64. continue;
  65. }
  66. $sr['searchallfield'].=$or.$r1[1]." like '%[!--key--]%'";
  67. $sr['select'].="<option value=\"".$r1[1]."\">".$r1[0]."</option>";
  68. }
  69. return $sr;
  70. }
  71. $modid=(int)$class_r[$classid][modid];
  72. $infomod_r=$empire->fetch1("select enter,tbname,sonclass,listfile from {$dbtbpre}enewsmod where mid=".$modid);
  73. if(empty($infomod_r['tbname']))
  74. {
  75. printerror("ErrorUrl","history.go(-1)");
  76. }
  77. $infomod_r['enter'].='发布者<!--field--->username<!--record-->ID<!--field--->id<!--record-->关键字<!--field--->keyboard<!--record-->';
  78. $searchoptions_r=ReturnSearchOptions($infomod_r['enter'],$fieldexp,$recordexp);
  79. //审核表
  80. $search='';
  81. $search.=$ecms_hashur['ehref'];
  82. $addecmscheck='';
  83. $ecmscheck=(int)$_GET['ecmscheck'];
  84. $indexchecked=1;
  85. if($ecmscheck)
  86. {
  87. $search.='&ecmscheck='.$ecmscheck;
  88. $addecmscheck='&ecmscheck='.$ecmscheck;
  89. $indexchecked=0;
  90. }
  91. $infotb=ReturnInfoMainTbname($class_r[$classid]['tbname'],$indexchecked);
  92. //导航
  93. $url=AdminReturnClassLink($classid).'&nbsp;>&nbsp;信息列表';
  94. $start=0;
  95. $page=(int)$_GET['page'];
  96. $page=RepPIntvar($page);
  97. $line=intval($public_r['hlistinfonum']);//每页显示
  98. $page_line=12;
  99. $offset=$page*$line;
  100. $search.="&bclassid=$bclassid&classid=$classid";
  101. $add='';
  102. $ewhere='';
  103. //搜索
  104. $showisgood=(int)$_GET['showisgood'];
  105. $showfirsttitle=(int)$_GET['showfirsttitle'];
  106. $sear=(int)$_GET['sear'];
  107. if($sear)
  108. {
  109. $keyboard=RepPostVar2($_GET['keyboard']);
  110. $show=RepPostVar($_GET['show']);
  111. //关键字
  112. if($keyboard)
  113. {
  114. //搜索全部
  115. if(!$show)
  116. {
  117. $add=" and (".str_replace("[!--key--]",$keyboard,$searchoptions_r['searchallfield']).")";
  118. }
  119. //搜索字段
  120. elseif($show&&strstr($infomod_r['enter'],"<!--field--->".$show."<!--record-->"))
  121. {
  122. $add=$show!="id"?" and (".$show." like '%$keyboard%')":" and (".$show."='$keyboard')";
  123. $searchoptions_r['select']=str_replace(" value=\"".$show."\">"," value=\"".$show."\" selected>",$searchoptions_r['select']);
  124. }
  125. }
  126. //特殊属性
  127. $showspecial=(int)$_GET['showspecial'];
  128. if($showspecial==1)//置顶
  129. {
  130. $add.=' and istop>0';
  131. }
  132. elseif($showspecial==2)//推荐
  133. {
  134. $add.=' and isgood>0';
  135. }
  136. elseif($showspecial==3)//头条
  137. {
  138. $add.=' and firsttitle>0';
  139. }
  140. elseif($showspecial==5)//签发
  141. {
  142. $add.=' and isqf=1';
  143. }
  144. elseif($showspecial==7)//投稿
  145. {
  146. $add.=' and ismember=1';
  147. }
  148. elseif($showspecial==8)//我的信息
  149. {
  150. $add.=" and userid='$logininid' and ismember=0";
  151. }
  152. //推荐
  153. if($showisgood)
  154. {
  155. if($showisgood>0)
  156. {
  157. $add.=" and isgood='$showisgood'";
  158. }
  159. else
  160. {
  161. $add.=' and isgood>0';
  162. }
  163. }
  164. //头条
  165. if($showfirsttitle)
  166. {
  167. if($showfirsttitle>0)
  168. {
  169. $add.=" and firsttitle='$showfirsttitle'";
  170. }
  171. else
  172. {
  173. $add.=' and firsttitle>0';
  174. }
  175. }
  176. //标题分类
  177. $ttid=(int)$_GET['ttid'];
  178. if($ttid)
  179. {
  180. $add.=" and ttid='$ttid'";
  181. }
  182. $search.="&sear=1&keyboard=$keyboard&show=$show&showspecial=$showspecial&ttid=$ttid&showisgood=$showisgood&showfirsttitle=$showfirsttitle";
  183. }
  184. //显示重复标题
  185. if($_GET['showretitle']==1)
  186. {
  187. $search.="&showretitle=1&srt=".intval($_GET['srt']);
  188. $addsrt="";
  189. $srtid="";
  190. $first=1;
  191. $srtsql=$empire->query("select id,title from ".$infotb." where classid='$classid' group by title having(count(*))>1");
  192. while($srtr=$empire->fetch($srtsql))
  193. {
  194. if($first==1)
  195. {
  196. $addsrt.="title='".addslashes($srtr['title'])."'";
  197. $srtid.=$srtr['id'];
  198. $first=0;
  199. }
  200. else
  201. {
  202. $addsrt.=" or title='".addslashes($srtr['title'])."'";
  203. $srtid.=",".$srtr['id'];
  204. }
  205. }
  206. if(!empty($addsrt))
  207. {
  208. if($_GET['srt']==1)
  209. {
  210. $add.=" and (".$addsrt.") and id not in (".$srtid.")";
  211. }
  212. else
  213. {
  214. $add.=" and (".$addsrt.")";
  215. }
  216. }
  217. else
  218. {
  219. printerror("HaveNotReInfo","ListNews.php?bclassid=$bclassid&classid=$classid".$addecmscheck.$ecms_hashur['ehref']);
  220. }
  221. }
  222. //只能编辑自己的信息
  223. if($doselfinfo['doselfinfo'])
  224. {
  225. $add.=" and userid='$logininid' and ismember=0";
  226. }
  227. //优化
  228. $yhadd='';
  229. $yhid=$class_r[$classid][yhid];
  230. $yhvar='hlist';
  231. if($yhid)
  232. {
  233. $yhadd=ReturnYhSql($yhid,$yhvar);
  234. }
  235. if(empty($yhadd))
  236. {
  237. //时间范围
  238. $infolday=(int)$_GET['infolday'];
  239. if(empty($infolday))
  240. {
  241. $infolday=$public_r['infolday'];
  242. }
  243. if($infolday&&$infolday!=1)
  244. {
  245. $ckinfolday=time()-$infolday;
  246. $yhadd.="newstime>'$ckinfolday'";
  247. $search.="&infolday=$infolday";
  248. }
  249. if($infolday==1)
  250. {
  251. $search.="&infolday=$infolday";
  252. }
  253. }
  254. //单栏目单表
  255. $singletable=0;
  256. if($infomod_r[sonclass]=='|'.$classid.'|')
  257. {
  258. $singletablenum=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsclass where tbname='".$class_r[$classid][tbname]."' and islast=1");
  259. $singletable=$singletablenum==1?1:0;
  260. }
  261. if($infomod_r[sonclass]=='|'.$classid.'|'&&$singletable==1)
  262. {
  263. if($yhadd)
  264. {
  265. $ewhere=$add?' where '.$yhadd.$add:' where '.$yhadd;
  266. }
  267. else
  268. {
  269. $ewhere=$add?' where '.substr($add,5):'';
  270. }
  271. }
  272. else
  273. {
  274. if($yhadd)
  275. {
  276. $ewhere=" where ".$yhadd." and classid='$classid'".$add;
  277. }
  278. else
  279. {
  280. $ewhere=" where classid='$classid'".$add;
  281. }
  282. }
  283. //统计
  284. $totalquery="select count(*) as total from ".$infotb.$ewhere;
  285. $totalnum=(int)$_GET['totalnum'];
  286. if($totalnum<1)
  287. {
  288. if(empty($ewhere)||$ewhere==" where classid='$classid'")
  289. {
  290. $num=$indexchecked==1?$classinfos:$classckinfos;
  291. }
  292. else
  293. {
  294. $num=$empire->gettotal($totalquery);//取得总条数
  295. }
  296. }
  297. else
  298. {
  299. $num=$totalnum;
  300. }
  301. //排序
  302. $myorder=RepPostStr($_GET['myorder'],1);
  303. if($myorder==1)//时间
  304. {$doorder="newstime desc";}
  305. elseif($myorder==2)//评论数
  306. {$doorder="plnum desc";}
  307. elseif($myorder==3)//人气
  308. {$doorder="onclick desc";}
  309. elseif($myorder==4)//ID号
  310. {$doorder="id desc";}
  311. else//默认排序
  312. {
  313. if(empty($thiscr['listorder']))
  314. {
  315. $doorder="id desc";
  316. }
  317. else
  318. {
  319. $doorder=$thiscr['listorder'];
  320. }
  321. }
  322. $search.="&totalnum=$num";
  323. $search1=$search;
  324. $search.="&myorder=$myorder";
  325. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  326. $phpmyself=urlencode(eReturnSelfPage(1));
  327. //标题分类
  328. $tts='';
  329. $ttsql=$empire->query("select typeid,tname from {$dbtbpre}enewsinfotype where mid='$modid' order by myorder");
  330. while($ttr=$empire->fetch($ttsql))
  331. {
  332. $select='';
  333. if($ttr[typeid]==$ttid)
  334. {
  335. $select=' selected';
  336. }
  337. $tts.="<option value='$ttr[typeid]'".$select.">$ttr[tname]</option>";
  338. }
  339. $stts=$tts?"<select name='ttid'><option value='0'>标题分类</option>$tts</select>":"";
  340. //栏目链接
  341. $getcurlr['classid']=$classid;
  342. $classurl=sys_ReturnBqClassname($getcurlr,9);
  343. //导入页面
  344. $deftempfile=ECMS_PATH.'e/data/html/list/listinfo.php';
  345. if($infomod_r[listfile])
  346. {
  347. $tempfile=ECMS_PATH.'e/data/html/list/'.$infomod_r[listfile].'.php';
  348. if(!file_exists($tempfile))
  349. {
  350. $tempfile=$deftempfile;
  351. }
  352. }
  353. else
  354. {
  355. $tempfile=$deftempfile;
  356. }
  357. require($tempfile);
  358. db_close();
  359. $empire=null;
  360. ?>