PushToZt.php 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  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. //推送信息
  21. function PushInfoToZt($add,$userid,$username){
  22. global $empire,$dbtbpre,$class_r;
  23. $classid=(int)$add['classid'];
  24. $tid=(int)$add['tid'];
  25. $ztid=$add['ztid'];
  26. $cid=$add['cid'];
  27. $id=$add['id'];
  28. $count=count($ztid);
  29. if(!$count||!$id)
  30. {
  31. echo"<script>window.close();</script>";
  32. exit();
  33. }
  34. //表名
  35. $tbname='';
  36. if($classid)
  37. {
  38. $tbname=$class_r[$classid]['tbname'];
  39. }
  40. elseif($tid)
  41. {
  42. $tbr=$empire->fetch1("select tbname from {$dbtbpre}enewstable where tid='$tid'");
  43. $tbname=$tbr['tbname'];
  44. }
  45. if(!$tbname)
  46. {
  47. printerror('ErrorUrl','');
  48. }
  49. //ID
  50. $id=eReturnInids($id);
  51. $where='id in ('.$id.')';
  52. $ztids='';
  53. $zcids='';
  54. for($i=0;$i<$count;$i++)
  55. {
  56. $true_ztid=(int)$ztid[$i];
  57. if(!$true_ztid)
  58. {
  59. continue;
  60. }
  61. $true_cid=(int)$cid[$true_ztid];
  62. if($true_cid<0)
  63. {
  64. $true_cid=0;
  65. }
  66. $ztids.=$dh.$true_ztid;
  67. $dh=',';
  68. AddMoreInfoToZt($true_ztid,$true_cid,$tbname,$where,1);
  69. }
  70. //操作日志
  71. insert_dolog("classid=$classid&tid=$tid<br>ztid=".$ztids."<br>id=".$id);
  72. echo"<script>alert('推送成功');window.close();</script>";
  73. exit();
  74. }
  75. //返回所属选择专题
  76. function ReturnZtToInfo($add,$userid,$username){
  77. global $empire,$dbtbpre,$class_r;
  78. $ztid=$add['ztid'];
  79. $cid=$add['cid'];
  80. $count=count($ztid);
  81. if(!$count)
  82. {
  83. //echo"<script>window.close();</script>";
  84. //exit();
  85. }
  86. $ztids='';
  87. $zcids='';
  88. $oldztids=$add['oldztids'];
  89. $oldzcids=$add['oldcids'];
  90. for($i=0;$i<$count;$i++)
  91. {
  92. $true_ztid=(int)$ztid[$i];
  93. if(!$true_ztid)
  94. {
  95. continue;
  96. }
  97. $true_cid=(int)$cid[$true_ztid];
  98. $ztids.=$dh.$true_ztid;
  99. $dh=',';
  100. $zcids.=$cdh.$true_cid;
  101. $cdh=',';
  102. }
  103. ?>
  104. <script>
  105. opener.document.add.ztids.value="<?=$ztids?>";
  106. opener.document.add.zcids.value="<?=$zcids?>";
  107. opener.document.add.oldztids.value="<?=$oldztids?>";
  108. opener.document.add.oldzcids.value="<?=$oldzcids?>";
  109. window.close();
  110. </script>
  111. <?php
  112. exit();
  113. }
  114. $enews=$_POST['enews'];
  115. if(empty($enews))
  116. {$enews=$_GET['enews'];}
  117. if($enews)
  118. {
  119. hCheckEcmsRHash();
  120. }
  121. if($enews=='PushInfoToZt')//选择专题
  122. {
  123. if($_POST['sinfo'])
  124. {
  125. ReturnZtToInfo($_POST,$logininid,$loginin);
  126. }
  127. PushInfoToZt($_POST,$logininid,$loginin);
  128. }
  129. $add='';
  130. //分类
  131. $zcid=(int)$_GET['zcid'];
  132. if($zcid)
  133. {
  134. $add.=" and zcid='$zcid'";
  135. }
  136. //栏目
  137. $classid=(int)$_GET['classid'];
  138. if($classid)
  139. {
  140. $classwhere=ReturnClass($class_r[$classid][featherclass]);
  141. $add.=" and (classid=0 or classid='$classid' or (".$classwhere."))";
  142. }
  143. $sinfo=(int)$_GET['sinfo'];
  144. //表ID
  145. $tid=(int)$_GET['tid'];
  146. //ID
  147. $id=RepPostStr($_GET['id'],1);
  148. if(empty($sinfo)&&!$id)
  149. {
  150. echo"<script>alert('请选择信息');window.close();</script>";
  151. exit();
  152. }
  153. //信息
  154. $info_ztids='';
  155. $info_cids='';
  156. if($sinfo&&$id)
  157. {
  158. $ztdh='';
  159. $cdh='';
  160. $id=(int)$id;
  161. $infosql=$empire->query("select ztid,cid from {$dbtbpre}enewsztinfo where id='$id' and classid='$classid'");
  162. while($infor=$empire->fetch($infosql))
  163. {
  164. $info_ztids.=$ztdh.$infor['ztid'];
  165. $ztdh=',';
  166. if($infor['cid'])
  167. {
  168. $info_cids.=$cdh.$infor['cid'];
  169. }
  170. else
  171. {
  172. $info_cids.=$cdh.'-'.$infor['ztid'];
  173. }
  174. $cdh=',';
  175. }
  176. }
  177. elseif($sinfo&&empty($id))
  178. {
  179. $firstpost=1;
  180. }
  181. $time=time();
  182. //专题
  183. $query="select ztid,ztname from {$dbtbpre}enewszt where usezt=0 and (endtime=0 or endtime>$time)".$add." order by myorder,ztid desc";
  184. $sql=$empire->query($query);
  185. //分类
  186. $zcstr="";
  187. $zcsql=$empire->query("select classid,classname from {$dbtbpre}enewsztclass order by classid");
  188. while($zcr=$empire->fetch($zcsql))
  189. {
  190. $select="";
  191. if($zcr[classid]==$zcid)
  192. {
  193. $select=" selected";
  194. }
  195. $zcstr.="<option value='".$zcr[classid]."'".$select.">".$zcr[classname]."</option>";
  196. }
  197. ?>
  198. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  199. <html>
  200. <head>
  201. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  202. <title>推送信息到专题</title>
  203. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  204. </head>
  205. <body>
  206. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  207. <tr>
  208. <td>位置: 推送信息到专题
  209. <div align="right"> </div></td>
  210. </tr>
  211. </table>
  212. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  213. <form name="searchform" method="GET" action="PushToZt.php">
  214. <?=$ecms_hashur['eform']?>
  215. <tr>
  216. <td> 选择专题分类:
  217. <select name="select" id="select" onchange=window.location='PushToZt.php?<?=$ecms_hashur['ehref']?>&classid=<?=$classid?>&tid=<?=$tid?>&id=<?=$id?>&sinfo=<?=$sinfo?>&oldztids=<?=$info_ztids?>&oldcids=<?=$info_cids?>&zcid='+this.options[this.selectedIndex].value>
  218. <option value="0">所有分类</option>
  219. <?=$zcstr?>
  220. </select></td>
  221. </tr>
  222. </form>
  223. </table>
  224. <form name="form1" method="post" action="PushToZt.php">
  225. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  226. <?=$ecms_hashur['form']?>
  227. <tr>
  228. <td>
  229. <?php
  230. if(empty($sinfo))
  231. {
  232. ?>
  233. 推送信息ID:<?=$id?>
  234. <?php
  235. }
  236. else
  237. {
  238. ?>
  239. 推送信息:<script>document.write(opener.document.add.title.value);</script>
  240. <?php
  241. }
  242. ?>
  243. </td>
  244. </tr>
  245. </table>
  246. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  247. <tr class="header">
  248. <td width="74%" height="25"> 专题名称</td>
  249. </tr>
  250. <?
  251. while($r=$empire->fetch($sql))
  252. {
  253. $check='';
  254. if($info_ztids&&strstr(','.$info_ztids.',',','.$r[ztid].','))
  255. {
  256. $check=' checked';
  257. }
  258. ?>
  259. <tr bgcolor="#FFFFFF" id="chzt<?=$r[ztid]?>">
  260. <td height="25"><input name="ztid[]" type="checkbox" id="ztid[]" value="<?=$r[ztid]?>"<?=$check?>>
  261. <?=$r['ztname']?></td>
  262. </tr>
  263. <tr bgcolor="#FFFFFF">
  264. <td height="25"><table width="98%" border="0" align="center" cellpadding="3" cellspacing="1">
  265. <tr>
  266. <td><input type="radio" name="cid[<?=$r['ztid']?>]" value="-<?=$r[ztid]?>"<?=empty($check)||$firstpost==1||($check&&$info_cids&&strstr(','.$info_cids.',',',-'.$r[ztid].','))?' checked':''?>> 不属专题子类</td>
  267. </tr>
  268. <?php
  269. $csql=$empire->query("select cid,cname from {$dbtbpre}enewszttype where ztid='$r[ztid]'");
  270. while($cr=$empire->fetch($csql))
  271. {
  272. ?>
  273. <tr>
  274. <td><input type="radio" name="cid[<?=$r['ztid']?>]" value="<?=$cr[cid]?>"<?=$check&&$info_cids&&strstr(','.$info_cids.',',','.$cr[cid].',')?' checked':''?>> <?=$cr[cname]?></td>
  275. </tr>
  276. <?php
  277. }
  278. ?>
  279. </table></td>
  280. </tr>
  281. <?php
  282. }
  283. ?>
  284. <tr bgcolor="#FFFFFF">
  285. <td height="25"><div align="center">
  286. <input type="submit" name="Submit2" value="确定推送">
  287. &nbsp;&nbsp;
  288. <input type="button" name="Submit3" value="取消" onclick="window.close();">
  289. <input name="enews" type="hidden" id="enews" value="PushInfoToZt">
  290. <input name="classid" type="hidden" id="classid" value="<?=$classid?>">
  291. <input name="tid" type="hidden" id="tid" value="<?=$tid?>">
  292. <input name="id" type="hidden" id="id" value="<?=$id?>">
  293. <input name="sinfo" type="hidden" id="sinfo" value="<?=$sinfo?>">
  294. <input name="oldztids" type="hidden" value="<?=$info_ztids?>">
  295. <input name="oldcids" type="hidden" value="<?=$info_cids?>">
  296. </div></td>
  297. </tr>
  298. </table>
  299. </form>
  300. </body>
  301. </html>
  302. <?
  303. db_close();
  304. $empire=null;
  305. ?>