TogZt.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require('../../class/connect.php');
  4. require('../../class/db_sql.php');
  5. require('../../class/functions.php');
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. $ztid=(int)$_GET['ztid'];
  19. if(empty($ztid))
  20. {
  21. $ztid=(int)$_POST['ztid'];
  22. }
  23. //验证权限
  24. //CheckLevel($logininid,$loginin,$classid,"zt");
  25. $returnandlevel=CheckAndUsernamesLevel('dozt',$ztid,$logininid,$loginin,$loginlevel);
  26. $enews=$_POST['enews'];
  27. if(empty($enews))
  28. {
  29. $enews=$_GET['enews'];
  30. }
  31. if($enews)
  32. {
  33. hCheckEcmsRHash();
  34. include('../../class/classfun.php');
  35. }
  36. if($enews=="TogZt")
  37. {
  38. include('../../data/dbcache/class.php');
  39. $re=TogZt($_POST,$logininid,$loginin);
  40. }
  41. elseif($enews=='SaveTogZtInfo')
  42. {
  43. SaveTogZtInfo($_POST,$logininid,$loginin);
  44. }
  45. elseif($enews=='DelTogZtInfo')
  46. {
  47. DelTogZtInfo($_GET,$logininid,$loginin);
  48. }
  49. ?>
  50. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  51. <html>
  52. <head>
  53. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  54. <title>组合专题</title>
  55. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  56. </head>
  57. <body>
  58. <?
  59. if($enews=="TogZt")
  60. {
  61. include '../'.LoadLang("pub/fun.php");
  62. $totalnum=(int)$_POST['totalnum'];
  63. $start=0;
  64. $page=(int)$_POST['page'];
  65. $page=RepPIntvar($page);
  66. $line=(int)$_POST['pline'];//每行显示
  67. $page_line=12;
  68. $offset=$page*$line;
  69. $addsql='';
  70. if($ecms_config['db']['dbver']>=4.1)
  71. {
  72. $addsql=" and id not in (select id from {$dbtbpre}enewsztinfo where ztid='$ztid' and mid in (".eGetTableModids(0,$re[2])."))";
  73. }
  74. $query="select id,title,ismember,username,plnum,isqf,classid,totaldown,onclick,newstime,isurl,titleurl,titlepic,havehtml,truetime,lastdotime,istop,isgood,firsttitle from {$dbtbpre}ecms_".$re[2]." where ".$re[0].$addsql;
  75. $totalquery="select count(*) as total from {$dbtbpre}ecms_".$re[2]." where ".$re[0].$addsql;
  76. if($totalnum<1)
  77. {
  78. $num=$empire->gettotal($totalquery);//取得总条数
  79. }
  80. else
  81. {
  82. $num=$totalnum;
  83. }
  84. $query.=" order by newstime desc limit $offset,$line";
  85. $sql=$empire->query($query);
  86. //专题子类
  87. $zcurl='';
  88. $zcid=(int)$_POST['zcid'];
  89. if($zcid)
  90. {
  91. $zcr=$empire->fetch1("select cname from {$dbtbpre}enewszttype where cid='$zcid'");
  92. $zcurl='&nbsp;->&nbsp;<b>'.$zcr[cname].'</b>';
  93. }
  94. $url="专题: <b>".$re[3]."</b>".$zcurl."&nbsp;->&nbsp;<a href='TogZt.php?ztid=".$ztid.$ecms_hashur['ehref']."'>组合专题</a>&nbsp;(".$dbtbpre."ecms_".$re[2].")";
  95. $returnpage=postpage($num,$line,$page_line,$start,$page,"document.ListZtInfo");
  96. ?>
  97. <script>
  98. function DelInfoid(id){
  99. var inid=document.ListZtInfo.inid.value;
  100. var dh="",cinid="";
  101. if(inid=="")
  102. {
  103. dh="";
  104. }
  105. else
  106. {
  107. dh=",";
  108. }
  109. cinid=","+inid+",";
  110. if(cinid.indexOf(","+id+",")==-1)
  111. {
  112. document.ListZtInfo.inid.value+=dh+id;
  113. }
  114. }
  115. function ReInfoid(id){
  116. var inid=","+document.ListZtInfo.inid.value+",";
  117. var dh="",newinid="",len;
  118. if(inid=="")
  119. {
  120. return "";
  121. }
  122. if(inid.indexOf(","+id+",")!=-1)
  123. {
  124. newinid=inid.replace(","+id+",",",");
  125. if(newinid==",")
  126. {
  127. document.ListZtInfo.inid.value="";
  128. return "";
  129. }
  130. //去掉前后,
  131. len=newinid.length;
  132. newinid=newinid.substring(1,len-1);
  133. document.ListZtInfo.inid.value=newinid;
  134. }
  135. }
  136. function DoTogzt(){
  137. document.ListZtInfo.doecmszt.value=1;
  138. document.ListZtInfo.submit();
  139. }
  140. </script>
  141. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  142. <tr>
  143. <td height="25">位置:<?=$url?></td>
  144. </tr>
  145. </table>
  146. <br>
  147. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="tableborder">
  148. <form name="ListZtInfo" method="POST" action="TogZt.php">
  149. <?=$ecms_hashur['form']?>
  150. <input type=hidden name=totalnum value="<?=$num?>">
  151. <input type=hidden name=page value="<?=$page?>">
  152. <input type=hidden name=start value="<?=$start?>">
  153. <?=$re[1]?>
  154. <tr class="header">
  155. <td width="6%" height="25"> <div align="center">选择</div></td>
  156. <td width="55%"><div align="center">标题</div></td>
  157. <td width="18%"><div align="center">发布者</div></td>
  158. <td width="21%"><div align="center">发布时间</div></td>
  159. </tr>
  160. <?
  161. while($r=$empire->fetch($sql))
  162. {
  163. //时间
  164. $truetime=date_time($r[truetime],"Y-m-d H:i:s");
  165. $lastdotime=date_time($r[lastdotime],"Y-m-d H:i:s");
  166. $oldtitle=$r[title];
  167. $r[title]=stripSlashes(sub($r[title],0,45,false));
  168. //会员投稿
  169. if($r[ismember])
  170. {
  171. $r[username]="<font color=red>".$r[username]."</font>";
  172. }
  173. $titleurl=sys_ReturnBqTitleLink($r);
  174. $checked='';
  175. $bgcolor="#FFFFFF";
  176. if(strstr(",".$_POST['inid'].",",",".$r[id].","))
  177. {
  178. $bgcolor="#DBEAF5";
  179. $checked=" checked";
  180. }
  181. //是否已加入专题
  182. $checkbox='<input name="checkid" type="checkbox" id="checkid" onClick="if(this.checked){DelInfoid('.$r[id].');news'.$r[id].'.style.backgroundColor=\'#DBEAF5\';}else{ReInfoid('.$r[id].');news'.$r[id].'.style.backgroundColor=\'#ffffff\';}" value="'.$r[id].'"'.$checked.'>';
  183. if(empty($addsql))
  184. {
  185. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsztinfo where ztid='$ztid' and classid='$r[classid]' and id='$r[id]' limit 1");
  186. if($num)
  187. {
  188. $checkbox='';
  189. }
  190. }
  191. ?>
  192. <tr bgcolor="<?=$bgcolor?>" id=news<?=$r[id]?>>
  193. <td height="25"> <div align="center">
  194. <?=$checkbox?>
  195. </div></td>
  196. <td>
  197. <a href='<?=$titleurl?>' target=_blank title="<?=$oldtitle?>">
  198. <?=$r[title]?>
  199. </a>
  200. </td>
  201. <td><div align="center"><?=$r[username]?></div></td>
  202. <td><div align="center"><a href="../AddNews.php?enews=EditNews&id=<?=$r[id]?>&classid=<?=$r[classid]?><?=$ecms_hashur['ehref']?>" title="<? echo"增加时间:".$truetime."\r\n最后修改:".$lastdotime;?>" target=_blank><?=date("Y-m-d H:i:s",$r[newstime])?></a></div></td>
  203. </tr>
  204. <?
  205. }
  206. ?>
  207. <tr bgcolor="ffffff">
  208. <td height="25"> <div align="center"></div></td>
  209. <td colspan="3"><?=$returnpage?></td>
  210. </tr>
  211. <tr bgcolor="ffffff">
  212. <td height="25"> <div align="center"></div></td>
  213. <td colspan="3"><input name="togtype" type="radio" value="0" checked>
  214. 排除选中
  215. <input type="radio" name="togtype" value="1">
  216. 组合选中
  217. <input type="button" name="Submit3" value="开始组合专题" onclick="javascript:DoTogzt();"></td>
  218. </tr>
  219. </form>
  220. </table>
  221. <?
  222. }
  223. else
  224. {
  225. if(empty($ztid))
  226. {
  227. printerror("ErrorUrl","history.go(-1)");
  228. }
  229. $r=$empire->fetch1("select ztid,ztname from {$dbtbpre}enewszt where ztid='$ztid'");
  230. if(empty($r['ztid']))
  231. {
  232. printerror("ErrorUrl","history.go(-1)");
  233. }
  234. //初始值
  235. $togr[startid]=0;
  236. $togr[endid]=0;
  237. $togr[pline]=50;
  238. $togr[searchf]=",stitle,";
  239. $togr[doecmszt]=0;
  240. $url="专题: <b>".$r[ztname]."</b>&nbsp;->&nbsp;组合专题";
  241. //--------------------操作的栏目
  242. $fcjsfile='../../data/fc/cmsclass.js';
  243. $class=GetFcfiletext($fcjsfile);
  244. $togid=(int)$_GET['togid'];
  245. if($togid)
  246. {
  247. $togr=$empire->fetch1("select * from {$dbtbpre}enewstogzts where togid='$togid'");
  248. $class=str_replace("<option value='$togr[classid]'","<option value='$togr[classid]' selected",$class);
  249. }
  250. //参数
  251. $togsql=$empire->query("select togid,togztname from {$dbtbpre}enewstogzts order by togid");
  252. while($tgr=$empire->fetch($togsql))
  253. {
  254. $selected='';
  255. if($togid==$tgr[togid])
  256. {
  257. $selected=' selected';
  258. }
  259. $togzts.="<option value='".$tgr[togid]."'".$selected.">".$tgr[togztname]."</option>";
  260. }
  261. //数据表
  262. $tables='';
  263. $tsql=$empire->query("select tid,tbname,tname from {$dbtbpre}enewstable order by tid");
  264. while($tr=$empire->fetch($tsql))
  265. {
  266. $tables.="<option value='".$tr[tbname]."'>".$tr[tname]."(".$tr[tbname].")</option>";
  267. }
  268. //专题子类
  269. $zttypes='';
  270. $zttypesql=$empire->query("select cid,cname from {$dbtbpre}enewszttype where ztid='$ztid'");
  271. while($zttyper=$empire->fetch($zttypesql))
  272. {
  273. $zttypes.="<option value='".$zttyper['cid']."'>".$zttyper['cname']."</option>";
  274. }
  275. ?>
  276. <script type="text/javascript" src="../ecmseditor/js/jstime/WdatePicker.js"></script>
  277. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  278. <form name="loadtogzt" method="get" action="TogZt.php">
  279. <?=$ecms_hashur['form']?>
  280. <tr>
  281. <td width="50%" height="25">位置:
  282. <?=$url?>
  283. </td>
  284. <td><div align="right">
  285. <select name="togid" id="togid">
  286. <option name="">选择组合参数</option>
  287. <?=$togzts?>
  288. </select>
  289. <input type="submit" name="Submit5" value="导入参数" onclick="document.loadtogzt.enews.value='';">
  290. &nbsp;
  291. <input type="submit" name="Submit6" value="删除" onclick="document.loadtogzt.enews.value='DelTogZtInfo';">
  292. <input name="enews" type="hidden" id="enews" value="">
  293. <input name="ztid" type="hidden" id="ztid" value="<?=$ztid?>">
  294. </div></td>
  295. </tr>
  296. </form>
  297. </table>
  298. <br>
  299. <table width="100%" border="0" align="center" cellpadding="5" cellspacing="1" class=tableborder>
  300. <form name="form1" method="post" action="TogZt.php" onsubmit="if(document.form1.doecmszt.checked){return confirm('确认要执行此操作?');}else{return true;}">
  301. <tr class=header>
  302. <?=$ecms_hashur['form']?>
  303. <td height="27" colspan="2">组合专题</td>
  304. </tr>
  305. <tr bgcolor="#FFFFFF">
  306. <td height="27">加入专题</td>
  307. <td height="27"><b><?=$r[ztname]?></b></td>
  308. </tr>
  309. <tr bgcolor="#FFFFFF">
  310. <td height="27">加入专题子类</td>
  311. <td height="27"><select name="zcid" id="zcid">
  312. <option value="0">不属专题子类</option>
  313. <?=$zttypes?>
  314. </select>
  315. </td>
  316. </tr>
  317. <tr bgcolor="#FFFFFF">
  318. <td width="22%" height="27">选择数据表(*)</td>
  319. <td width="78%" height="27"><select name="tbname" id="tbname">
  320. <?=$tables?>
  321. </select></td>
  322. </tr>
  323. <tr bgcolor="#FFFFFF">
  324. <td height="27">查询栏目</td>
  325. <td height="27"> <select name="classid" id="select">
  326. <option value="0">所有栏目</option>
  327. <?=$class?>
  328. </select> <font color="#666666">(如选择大栏目,将查询所有子栏目)</font></td>
  329. </tr>
  330. <tr bgcolor="#FFFFFF">
  331. <td height="27">组合关键字</td>
  332. <td height="27"> <input name="keyboard" type="text" id="keyboard2" size="38" value="<?=stripSlashes($togr[keyboard])?>">
  333. <font color="#666666">(不填为不限制)</font></td>
  334. </tr>
  335. <tr bgcolor="#FFFFFF">
  336. <td height="27">查询字段</td>
  337. <td height="27"> <input name="stitle" type="checkbox" id="stitle3" value="1"<?=strstr($togr[searchf],',stitle,')?' checked':''?>>
  338. 标题
  339. <input name="susername" type="checkbox" id="susername2" value="1"<?=strstr($togr[searchf],',susername,')?' checked':''?>>
  340. 发布者</td>
  341. </tr>
  342. <tr bgcolor="#FFFFFF">
  343. <td height="27">附加SQL条件</td>
  344. <td height="27"><input name="query" type="text" id="query" value="<?=stripSlashes($togr[query])?>" size="60"></td>
  345. </tr>
  346. <tr bgcolor="#FFFFFF">
  347. <td height="27">&nbsp;</td>
  348. <td height="27"><font color="#666666">(格式如:“writer='作者'”)</font></td>
  349. </tr>
  350. <tr bgcolor="#FFFFFF">
  351. <td height="27">特殊条件</td>
  352. <td height="27"> <input name="isgood" type="checkbox" id="isgood3" value="1"<?=strstr($togr[specialsearch],',isgood,')?' checked':''?>>
  353. 推荐
  354. <input name="firsttitle" type="checkbox" id="firsttitle2" value="1"<?=strstr($togr[specialsearch],',firsttitle,')?' checked':''?>>
  355. 头条
  356. <input name="titlepic" type="checkbox" id="titlepic2" value="1"<?=strstr($togr[specialsearch],',titlepic,')?' checked':''?>>
  357. 有标题图片<font color="#666666">(不选为不限制)</font></td>
  358. </tr>
  359. <tr bgcolor="#FFFFFF">
  360. <td height="27"> <input name="retype" type="radio" value="0"<?=$togr[retype]==0?' checked':''?>>
  361. 按时间查询</td>
  362. <td height="27">从
  363. <input name="startday" type="text" value="<?=$togr[startday]?>" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  364. <input name="endday" type="text" value="<?=$togr[endday]?>" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  365. 之间的数据<font color="#666666">(不填将查询所有信息)</font></td>
  366. </tr>
  367. <tr bgcolor="#FFFFFF">
  368. <td height="27"> <input name="retype" type="radio" value="1"<?=$togr[retype]==1?' checked':''?>>
  369. 按ID查询</td>
  370. <td height="27">从
  371. <input name="startid" type="text" id="startid2" value="<?=$togr[startid]?>" size="6">
  372. <input name="endid" type="text" id="endid2" value="<?=$togr[endid]?>" size="6">
  373. 之间的数据<font color="#666666">(如两个值为0将查询所有信息)</font></td>
  374. </tr>
  375. <tr bgcolor="#FFFFFF">
  376. <td height="27">每页显示行数</td>
  377. <td height="27"><input name="pline" type="text" id="pline" value="<?=$togr[pline]?>" size="6">
  378. <input name="doecmszt" type="checkbox" id="doecmszt" value="1"<?=$togr[doecmszt]==1?' checked':''?>>
  379. 直接组合专题<font color="#666666">(不显示列表)</font></td>
  380. </tr>
  381. <tr bgcolor="#FFFFFF">
  382. <td height="27">&nbsp;</td>
  383. <td height="27"> <input type="submit" name="Submit" value=" 开始组合 " onclick="document.form1.enews.value='TogZt';"> <input type="reset" name="Submit2" value="重置">
  384. <input name="enews" type="hidden" id="enews2" value="TogZt"> <input name="ztid" type="hidden" id="ztid" value="<?=$ztid?>"></td>
  385. </tr>
  386. <tr bgcolor="#FFFFFF">
  387. <td height="27">&nbsp;</td>
  388. <td height="27">参数名:
  389. <input name="togztname" type="text" id="togztname" value="<?=$togr[togztname]?>">
  390. <input type="submit" name="Submit4" value="保存参数" onclick="document.form1.enews.value='SaveTogZtInfo';"></td>
  391. </tr>
  392. <tr bgcolor="#FFFFFF">
  393. <td height="27" colspan="2"><font color="#666666">说明:此功能是将查询的信息加入专题。</font></td>
  394. </tr>
  395. </form>
  396. </table>
  397. <?
  398. }
  399. ?>
  400. </body>
  401. </html>
  402. <?
  403. db_close();
  404. $empire=null;
  405. ?>