ListZtInfo.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  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. $editor=1;
  11. //验证用户
  12. $lur=is_login();
  13. $logininid=$lur['userid'];
  14. $loginin=$lur['username'];
  15. $loginrnd=$lur['rnd'];
  16. $loginlevel=$lur['groupid'];
  17. $loginadminstyleid=$lur['adminstyleid'];
  18. //ehash
  19. $ecms_hashur=hReturnEcmsHashStrAll();
  20. $ztid=(int)$_GET['ztid'];
  21. if(empty($ztid))
  22. {
  23. $ztid=(int)$_POST['ztid'];
  24. }
  25. //验证权限
  26. //CheckLevel($logininid,$loginin,$classid,"zt");
  27. $returnandlevel=CheckAndUsernamesLevel('dozt',$ztid,$logininid,$loginin,$loginlevel);
  28. //删除专题信息
  29. function DoDelZtInfo($add,$userid,$username){
  30. global $empire,$dbtbpre;
  31. //CheckLevel($userid,$username,$classid,"zt");
  32. $ztid=(int)$add['ztid'];
  33. $zid=$add['zid'];
  34. $count=count($zid);
  35. if(!$count||!$ztid)
  36. {
  37. printerror('EmptyZtInfoZid','history.go(-1)');
  38. }
  39. $ztr=$empire->fetch1("select ztid from {$dbtbpre}enewszt where ztid='$ztid'");
  40. if(!$ztr['ztid'])
  41. {
  42. printerror('EmptyZtInfoZid','history.go(-1)');
  43. }
  44. $zids=eArrayReturnInids($zid);
  45. DelZtInfo("zid in (".$zids.") and ztid='$ztid'");
  46. insert_dolog("ztid=$ztid");//操作日志
  47. printerror('DelZtInfoSuccess',EcmsGetReturnUrl());
  48. }
  49. //转移专题信息
  50. function DoMoveZtInfo($add,$userid,$username){
  51. global $empire,$dbtbpre;
  52. //CheckLevel($userid,$username,$classid,"zt");
  53. $ztid=(int)$add['ztid'];
  54. $to_cid=(int)$add['to_cid'];
  55. $zid=$add['zid'];
  56. $count=count($zid);
  57. if(!$count||!$ztid)
  58. {
  59. printerror('EmptyZtInfoZid','history.go(-1)');
  60. }
  61. if(!$to_cid)
  62. {
  63. printerror('EmptyMoveZtInfoCid','history.go(-1)');
  64. }
  65. $ztr=$empire->fetch1("select ztid from {$dbtbpre}enewszt where ztid='$ztid'");
  66. if(!$ztr['ztid'])
  67. {
  68. printerror('EmptyZtInfoZid','history.go(-1)');
  69. }
  70. $zids=eArrayReturnInids($zid);
  71. $sql=$empire->query("update {$dbtbpre}enewsztinfo set cid='$to_cid' where zid in (".$zids.") and ztid='$ztid'");
  72. if($sql)
  73. {
  74. insert_dolog("ztid=$ztid&to_cid=$to_cid");//操作日志
  75. printerror('MoveZtInfoSuccess',EcmsGetReturnUrl());
  76. }
  77. else
  78. {printerror("DbError","history.go(-1)");}
  79. }
  80. //推荐专题信息
  81. function DoGoodZtInfo($add,$userid,$username){
  82. global $empire,$dbtbpre;
  83. //CheckLevel($userid,$username,$classid,"zt");
  84. $ztid=(int)$add['ztid'];
  85. $doing=(int)$add['doing'];
  86. $isgood=(int)$add['isgood'];
  87. $zid=$add['zid'];
  88. $count=count($zid);
  89. if(!$count||!$ztid)
  90. {
  91. printerror('EmptyZtInfoZid','history.go(-1)');
  92. }
  93. $ztr=$empire->fetch1("select ztid from {$dbtbpre}enewszt where ztid='$ztid'");
  94. if(!$ztr['ztid'])
  95. {
  96. printerror('EmptyZtInfoZid','history.go(-1)');
  97. }
  98. $zids=eArrayReturnInids($zid);
  99. $sql=$empire->query("update {$dbtbpre}enewsztinfo set isgood='$isgood' where zid in (".$zids.") and ztid='$ztid'");
  100. if($sql)
  101. {
  102. insert_dolog("ztid=$ztid&isgood=$isgood");//操作日志
  103. printerror('GoodZtInfoSuccess',EcmsGetReturnUrl());
  104. }
  105. else
  106. {printerror("DbError","history.go(-1)");}
  107. }
  108. //修改专题信息发布时间
  109. function DoEditZtInfoTime($add,$userid,$username){
  110. global $empire,$dbtbpre;
  111. //CheckLevel($userid,$username,$classid,"zt");
  112. $ztid=(int)$add['ztid'];
  113. $zid=$add['dozid'];
  114. $count=count($zid);
  115. $newstime=$add['newstime'];
  116. if(!$count||!$ztid)
  117. {
  118. printerror('EmptyZtInfoZid','history.go(-1)');
  119. }
  120. $ztr=$empire->fetch1("select ztid from {$dbtbpre}enewszt where ztid='$ztid'");
  121. if(!$ztr['ztid'])
  122. {
  123. printerror('EmptyZtInfoZid','history.go(-1)');
  124. }
  125. for($i=0;$i<$count;$i++)
  126. {
  127. $dozid=(int)$zid[$i];
  128. $donewstime=$newstime[$i]?to_time($newstime[$i]):time();
  129. $empire->query("update {$dbtbpre}enewsztinfo set newstime='$donewstime' where zid='$dozid' and ztid='$ztid'");
  130. }
  131. insert_dolog("ztid=$ztid");//操作日志
  132. printerror('EditZtInfoTimeSuccess',EcmsGetReturnUrl());
  133. }
  134. $enews=$_POST['enews'];
  135. if(empty($enews))
  136. {$enews=$_GET['enews'];}
  137. if($enews)
  138. {
  139. hCheckEcmsRHash();
  140. }
  141. if($enews=="DoDelZtInfo")//删除专题信息
  142. {
  143. DoDelZtInfo($_POST,$logininid,$loginin);
  144. }
  145. elseif($enews=="DoMoveZtInfo")//转移专题信息
  146. {
  147. DoMoveZtInfo($_POST,$logininid,$loginin);
  148. }
  149. elseif($enews=="DoGoodZtInfo")//推荐专题信息
  150. {
  151. DoGoodZtInfo($_POST,$logininid,$loginin);
  152. }
  153. elseif($enews=="DoEditZtInfoTime")//修改专题信息发布时间
  154. {
  155. DoEditZtInfoTime($_POST,$logininid,$loginin);
  156. }
  157. else
  158. {}
  159. //专题
  160. if(!$ztid)
  161. {
  162. printerror('ErrorUrl','');
  163. }
  164. $ztr=$empire->fetch1("select ztid,ztname from {$dbtbpre}enewszt where ztid='$ztid'");
  165. if(!$ztr['ztid'])
  166. {
  167. printerror('ErrorUrl','');
  168. }
  169. $page=(int)$_GET['page'];
  170. $page=RepPIntvar($page);
  171. $start=0;
  172. $line=intval($public_r['hlistinfonum']);//每页显示
  173. $page_line=12;//每页显示链接数
  174. $offset=$page*$line;//总偏移量
  175. $add='';
  176. $search='&ztid='.$ztid.$ecms_hashur['ehref'];
  177. //专题子类
  178. $cid=(int)$_GET['cid'];
  179. if($cid)
  180. {
  181. $add.=" and cid='$cid'";
  182. $search.='&cid='.$cid;
  183. }
  184. //系统模型
  185. $mid=(int)$_GET['mid'];
  186. if($mid)
  187. {
  188. $add.=" and mid='$mid'";
  189. $search.='&mid='.$mid;
  190. }
  191. //栏目
  192. $classid=(int)$_GET['classid'];
  193. if($classid)
  194. {
  195. $add.=' and '.($class_r[$classid][islast]?"classid='$classid'":"(".ReturnClass($class_r[$classid][sonclass]).")");
  196. $search.='&classid='.$classid;
  197. }
  198. //推荐
  199. $isgood=(int)$_GET['isgood'];
  200. if($isgood)
  201. {
  202. $add.=" and isgood>0";
  203. $search.='&isgood='.$isgood;
  204. }
  205. //排序
  206. $myorder=(int)$_GET['myorder'];
  207. $search.='&myorder='.$myorder;
  208. if($myorder==1)
  209. {
  210. $doorder='zid desc';
  211. }
  212. elseif($myorder==2)
  213. {
  214. $doorder='zid asc';
  215. }
  216. elseif($myorder==3)
  217. {
  218. $doorder='newstime desc';
  219. }
  220. elseif($myorder==4)
  221. {
  222. $doorder='newstime asc';
  223. }
  224. else
  225. {
  226. $doorder='zid desc';
  227. }
  228. $totalquery="select count(*) as total from {$dbtbpre}enewsztinfo where ztid='$ztid'".$add;
  229. $num=$empire->gettotal($totalquery);
  230. $query="select zid,cid,id,classid,mid,isgood,newstime from {$dbtbpre}enewsztinfo where ztid='$ztid'".$add;
  231. $query=$query." order by ".$doorder." limit $offset,$line";
  232. $sql=$empire->query($query);
  233. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  234. //专题子类
  235. $csql=$empire->query("select cid,cname from {$dbtbpre}enewszttype where ztid='$ztid'");
  236. $ztcs='';
  237. $moveztcs='';
  238. while($cr=$empire->fetch($csql))
  239. {
  240. $selected='';
  241. if($cr['cid']==$cid)
  242. {
  243. $selected=' selected';
  244. }
  245. $ztcs.="<option value='$cr[cid]'".$selected.">$cr[cname]</option>";
  246. $moveztcs.="<option value='$cr[cid]'>$cr[cname]</option>";
  247. }
  248. ?>
  249. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  250. <html>
  251. <head>
  252. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  253. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  254. <title>管理专题信息</title>
  255. <script>
  256. function CheckAll(form)
  257. {
  258. for (var i=0;i<form.elements.length;i++)
  259. {
  260. var e = form.elements[i];
  261. if (e.name != 'chkall')
  262. e.checked = form.chkall.checked;
  263. }
  264. }
  265. </script>
  266. </head>
  267. <body>
  268. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  269. <tr>
  270. <td width="36%" height="25">位置:专题:<b><?=$ztr['ztname']?></b> &gt; <a href="ListZtInfo.php?ztid=<?=$ztid?><?=$ecms_hashur['ehref']?>">管理专题信息</a></td>
  271. <td width="64%"><div align="right" class="emenubutton">
  272. <input type="button" name="Submit6" value="组合专题" onclick="window.open('TogZt.php?ztid=<?=$ztid?><?=$ecms_hashur['ehref']?>');">
  273. &nbsp;&nbsp;
  274. <input type="button" name="Submit6" value="管理专题子类" onclick="window.open('ZtType.php?ztid=<?=$ztid?><?=$ecms_hashur['ehref']?>');">
  275. </div></td>
  276. </tr>
  277. </table>
  278. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  279. <form name="SearchForm" method="GET" action="ListZtInfo.php">
  280. <?=$ecms_hashur['eform']?>
  281. <tr>
  282. <td width="100%"> <div align="right">
  283. <input name="ztid" type="hidden" id="ztid" value="<?=$ztid?>">
  284. <select name="cid" id="cid">
  285. <option value="0">所有专题子类</option>
  286. <?=$ztcs?>
  287. </select>
  288. <span id="searchclassnav"></span>
  289. <select name="myorder" id="myorder">
  290. <option value="1"<?=$myorder==1?' selected':''?>>按专题信息ID降序排序</option>
  291. <option value="2"<?=$myorder==2?' selected':''?>>按专题信息ID升序排序</option>
  292. <option value="3"<?=$myorder==3?' selected':''?>>按发布时间降序排序</option>
  293. <option value="4"<?=$myorder==4?' selected':''?>>按发布时间升序排序</option>
  294. </select>
  295. </select>
  296. <input name="isgood" type="checkbox" id="isgood" value="1"<?=$isgood==1?' checked':''?>>
  297. 推荐
  298. <input type="submit" name="Submit2" value="显示">
  299. </div></td>
  300. </tr>
  301. </form>
  302. </table>
  303. <br>
  304. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  305. <form name="listform" method="post" action="ListZtInfo.php" onsubmit="return confirm('确认要执行此操作?');">
  306. <?=$ecms_hashur['form']?>
  307. <tr class="header">
  308. <td width="3%"><div align="center"></div></td>
  309. <td width="13%"><div align="center">专题子类</div></td>
  310. <td width="6%" height="25"><div align="center">ID</div></td>
  311. <td width="43%" height="25"><div align="center">标题</div></td>
  312. <td width="28%" height="25"> <div align="center">发布时间</div></td>
  313. <td width="7%"><div align="center">操作</div></td>
  314. </tr>
  315. <?php
  316. while($zr=$empire->fetch($sql))
  317. {
  318. //专题子类
  319. $cname='---';
  320. if($zr['cid'])
  321. {
  322. $cr=$empire->fetch1("select cname from {$dbtbpre}enewszttype where cid='$zr[cid]'");
  323. $cname="<a href='ListZtInfo.php?ztid=$ztid&cid=$zr[cid]".$ecms_hashur['ehref']."'>$cr[cname]</a>";
  324. }
  325. $tbname=$class_r[$zr[classid]]['tbname'];
  326. if(!$tbname)
  327. {
  328. continue;
  329. }
  330. $index_r=$empire->fetch1("select checked from {$dbtbpre}ecms_".$tbname."_index where id='$zr[id]'");
  331. $infotb=ReturnInfoMainTbname($tbname,$index_r['checked']);
  332. $r=$empire->fetch1("select id,classid,isurl,isqf,havehtml,newstime,truetime,lastdotime,titlepic,title,titleurl from ".$infotb." where id='$zr[id]'");
  333. $addecmscheck='';
  334. if($index_r['checked'])
  335. {
  336. $addecmscheck='&ecmscheck=1';
  337. }
  338. //状态
  339. $st='';
  340. if($zr['isgood'])//推荐
  341. {
  342. $st.="<font color=red>[推".$zr['isgood']."]</font>";
  343. }
  344. $oldtitle=$r[title];
  345. $r[title]=stripSlashes(sub($r[title],0,36,false));
  346. //时间
  347. $truetime=date("Y-m-d H:i:s",$r[truetime]);
  348. $lastdotime=date("Y-m-d H:i:s",$r[lastdotime]);
  349. //审核
  350. if(empty($index_r['checked']))
  351. {
  352. $checked=" title='未审核' style='background:#99C4E3'";
  353. $titleurl="../ShowInfo.php?classid=$r[classid]&id=$r[id]".$addecmscheck.$ecms_hashur['ehref'];
  354. }
  355. else
  356. {
  357. $checked="";
  358. $titleurl=sys_ReturnBqTitleLink($r);
  359. }
  360. //取得类别名
  361. $do=$r[classid];
  362. $dob=$class_r[$r[classid]][bclassid];
  363. //标题图片
  364. $showtitlepic="";
  365. if($r[titlepic])
  366. {
  367. $showtitlepic="<a href='".$r[titlepic]."' title='预览标题图片' target=_blank><img src='../../data/images/showimg.gif' border=0></a>";
  368. }
  369. $myid=$r['id'];
  370. ?>
  371. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  372. <td><div align="center">
  373. <input name="zid[]" type="checkbox" id="zid[]" value="<?=$zr['zid']?>"<?=$checked?>>
  374. </div></td>
  375. <td><div align="center">
  376. <?=$cname?>
  377. </div></td>
  378. <td height="42"> <div align="center">
  379. <?=$myid?>
  380. </div></td>
  381. <td height="42"> <div align="left">
  382. <?=$st?>
  383. <?=$showtitlepic?>
  384. <a href='<?=$titleurl?>' target=_blank title="<?=$oldtitle?>">
  385. <?=$r[title]?>
  386. </a>
  387. <?=$qf?>
  388. <br>
  389. <font color="#574D5C">栏目:<a href='../ListNews.php?bclassid=<?=$class_r[$r[classid]][bclassid]?>&classid=<?=$r[classid]?><?=$addecmscheck?><?=$ecms_hashur['ehref']?>'>
  390. <font color="#574D5C">
  391. <?=$class_r[$dob][classname]?>
  392. </font> </a> > <a href='../ListNews.php?bclassid=<?=$class_r[$r[classid]][bclassid]?>&classid=<?=$r[classid]?><?=$addecmscheck?><?=$ecms_hashur['ehref']?>'>
  393. <font color="#574D5C">
  394. <?=$class_r[$r[classid]][classname]?>
  395. </font> </a></font></div></td>
  396. <td height="42"> <div align="center">
  397. <input name="dozid[]" type="hidden" id="dozid[]" value="<?=$zr[zid]?>">
  398. <input name="newstime[]" type="text" value="<?=date("Y-m-d H:i:s",$zr[newstime])?>" size="22">
  399. </div></td>
  400. <td><div align="center">[<a href="../AddNews.php?enews=EditNews&id=<?=$r[id]?>&classid=<?=$r[classid]?>&bclassid=<?=$class_r[$r[classid]][bclassid]?><?=$addecmscheck?><?=$ecms_hashur['ehref']?>" title="<? echo"增加时间:".$truetime."\r\n最后修改:".$lastdotime;?>" target="_blank">修改</a>]</div></td>
  401. </tr>
  402. <?
  403. }
  404. ?>
  405. <tr bgcolor="#FFFFFF">
  406. <td height="25"> <div align="center">
  407. <input type=checkbox name=chkall value=on onclick=CheckAll(this.form)>
  408. </div></td>
  409. <td height="25" colspan="5"> <div align="right">
  410. <input type="submit" name="Submit3" value="从专题移除" onclick="document.listform.enews.value='DoDelZtInfo';document.listform.action='ListZtInfo.php';">
  411. <select name="isgood" id="isgood">
  412. <option value="0">不推荐</option>
  413. <option value="1">1级推荐</option>
  414. <option value="2">2级推荐</option>
  415. <option value="3">3级推荐</option>
  416. <option value="4">4级推荐</option>
  417. <option value="5">5级推荐</option>
  418. <option value="6">6级推荐</option>
  419. <option value="7">7级推荐</option>
  420. <option value="8">8级推荐</option>
  421. <option value="9">9级推荐</option>
  422. </select>
  423. <input type="submit" name="Submit82" value="推荐" onClick="document.listform.enews.value='DoGoodZtInfo';document.listform.doing.value='1';document.listform.action='ListZtInfo.php';">
  424. <span id="moveclassnav">
  425. <input type="submit" name="Submit8223" value="批量修改时间" onClick="document.listform.enews.value='DoEditZtInfoTime';document.listform.action='ListZtInfo.php';">
  426. <select name="to_cid" id="to_cid">
  427. <option value="">选择专题子类</option>
  428. <?=$moveztcs?>
  429. </select>
  430. <input type="submit" name="Submit8222" value="转移" onClick="document.listform.enews.value='DoMoveZtInfo';document.listform.action='ListZtInfo.php';">
  431. <input name="enews" type="hidden" id="enews" value="DoGoodZtInfo">
  432. <input type=hidden name=doing value=0>
  433. </span> </div></td>
  434. </tr>
  435. <tr bgcolor="#FFFFFF">
  436. <td height="25" colspan="6">
  437. <?=$returnpage?>
  438. <input name="ztid" type="hidden" id="ztid" value="<?=$ztid?>"></td>
  439. </tr>
  440. <tr bgcolor="#FFFFFF">
  441. <td height="25" colspan="6"><font color="#666666">说明:信息是按发布时间排序,如果要改顺序可以修改发布时间,发布时间设置空则改为当前时间。</font></td>
  442. </tr>
  443. </form>
  444. </table>
  445. <IFRAME frameBorder="0" id="showclassnav" name="showclassnav" scrolling="no" src="../ShowClassNav.php?ecms=2&classid=<?=$classid?><?=$ecms_hashur['ehref']?>" style="HEIGHT:0;VISIBILITY:inherit;WIDTH:0;Z-INDEX:1"></IFRAME>
  446. </body>
  447. </html>
  448. <?
  449. db_close();
  450. $empire=null;
  451. ?>