AddDo.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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. //验证用户
  9. $lur=is_login();
  10. $logininid=$lur['userid'];
  11. $loginin=$lur['username'];
  12. $loginrnd=$lur['rnd'];
  13. $loginlevel=$lur['groupid'];
  14. $loginadminstyleid=$lur['adminstyleid'];
  15. //ehash
  16. $ecms_hashur=hReturnEcmsHashStrAll();
  17. //验证权限
  18. CheckLevel($logininid,$loginin,$classid,"do");
  19. $enews=ehtmlspecialchars($_GET['enews']);
  20. $url="<a href=ListDo.php".$ecms_hashur['whehref'].">管理刷新任务</a>&nbsp;>&nbsp;增加定时刷新任务";
  21. $cdoing=(int)$_GET['cdoing'];
  22. $cname='';
  23. $class='';
  24. $r[dotime]=30;
  25. $r[isopen]=1;
  26. //修改
  27. if($enews=="EditDo")
  28. {
  29. $doid=(int)$_GET['doid'];
  30. $r=$empire->fetch1("select * from {$dbtbpre}enewsdo where doid='$doid'");
  31. $url="<a href=ListDo.php".$ecms_hashur['whehref'].">管理刷新任务</a>&nbsp;>&nbsp;修改定时刷新任务";
  32. if($cdoing&&$cdoing<>$r['doing'])
  33. {
  34. $r[classid]='';
  35. }
  36. }
  37. //栏目
  38. if($r['doing']==1||$cdoing==1)
  39. {
  40. $cname='栏目';
  41. $fcfile="../data/fc/ListEnews.php";
  42. $fcjsfile="../data/fc/cmsclass.js";
  43. if(file_exists($fcjsfile)&&file_exists($fcfile))
  44. {
  45. $class=GetFcfiletext($fcjsfile);
  46. $acr=explode(",",$r[classid]);
  47. $count=count($acr);
  48. for($i=1;$i<$count-1;$i++)
  49. {
  50. $class=str_replace("<option value='$acr[$i]'","<option value='$acr[$i]' selected",$class);
  51. }
  52. }
  53. else
  54. {
  55. $class=ShowClass_AddClass(str_replace(',','|',$r[classid]),"n",0,"|-",0,3);
  56. }
  57. }
  58. elseif($r['doing']==2||$cdoing==2)//专题
  59. {
  60. $cname='专题';
  61. $ztsql=$empire->query("select ztid,ztname from {$dbtbpre}enewszt order by ztid");
  62. while($ztr=$empire->fetch($ztsql))
  63. {
  64. $selected=strstr($r[classid],','.$ztr[ztid].',')?' selected':'';
  65. $class.="<option value='$ztr[ztid]'".$selected.">$ztr[ztname]</option>";
  66. }
  67. }
  68. elseif($r['doing']==3||$cdoing==3)//自定义列表
  69. {
  70. $cname='列表';
  71. $ulsql=$empire->query("select listid,listname from {$dbtbpre}enewsuserlist order by listid");
  72. while($ulr=$empire->fetch($ulsql))
  73. {
  74. $selected=strstr($r[classid],','.$ulr[listid].',')?' selected':'';
  75. $class.="<option value='$ulr[listid]'".$selected.">$ulr[listname]</option>";
  76. }
  77. }
  78. elseif($r['doing']==4||$cdoing==4)//自定义页面
  79. {
  80. $cname='页面';
  81. $upsql=$empire->query("select id,title from {$dbtbpre}enewspage order by id");
  82. while($upr=$empire->fetch($upsql))
  83. {
  84. $selected=strstr($r[classid],','.$upr[id].',')?' selected':'';
  85. $class.="<option value='$upr[id]'".$selected.">$upr[title]</option>";
  86. }
  87. }
  88. elseif($r['doing']==5||$cdoing==5)//自定义JS
  89. {
  90. $cname='JS';
  91. $jssql=$empire->query("select jsid,jsname from {$dbtbpre}enewsuserjs order by jsid");
  92. while($jsr=$empire->fetch($jssql))
  93. {
  94. $selected=strstr($r[classid],','.$jsr[jsid].',')?' selected':'';
  95. $class.="<option value='$jsr[jsid]'".$selected.">$jsr[jsname]</option>";
  96. }
  97. }
  98. elseif($r['doing']==6||$cdoing==6)//标题分类页面
  99. {
  100. $cname='标题分类';
  101. $infotypesql=$empire->query("select typeid,tname from {$dbtbpre}enewsinfotype order by typeid");
  102. while($infotyper=$empire->fetch($infotypesql))
  103. {
  104. $selected=strstr($r[classid],','.$infotyper[typeid].',')?' selected':'';
  105. $class.="<option value='$infotyper[typeid]'".$selected.">$infotyper[tname]</option>";
  106. }
  107. }
  108. if($cdoing)
  109. {
  110. $r['doing']=$cdoing;
  111. }
  112. db_close();
  113. $empire=null;
  114. ?>
  115. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  116. <html>
  117. <head>
  118. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  119. <title>定时刷新任务</title>
  120. <link href="adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  121. <script>
  122. function selectalls(doselect,formvar)
  123. {
  124. var bool=doselect==1?true:false;
  125. var selectform=document.getElementById(formvar);
  126. for(var i=0;i<selectform.length;i++)
  127. {
  128. selectform.all[i].selected=bool;
  129. }
  130. }
  131. </script>
  132. </head>
  133. <body>
  134. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  135. <tr>
  136. <td height="25">位置:<?=$url?></td>
  137. </tr>
  138. </table>
  139. <form name="form1" method="post" action="ListDo.php">
  140. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  141. <?=$ecms_hashur['form']?>
  142. <tr class="header">
  143. <td height="25" colspan="2">增加定时刷新任务
  144. <input name="enews" type="hidden" id="enews" value="<?=$enews?>"> <input name="doid" type="hidden" value="<?=$doid?>"></td>
  145. </tr>
  146. <tr bgcolor="#FFFFFF">
  147. <td height="25">任务类型:</td>
  148. <td height="25"> <select name="doing" size="8" style="width:270" onchange="self.location.href='AddDo.php?<?=$ecms_hashur['ehref']?>&enews=<?=$enews?>&doid=<?=$doid?>&cdoing='+this.options[this.selectedIndex].value;">
  149. <option value="0"<?=$r[doing]==0?' selected':''?>>刷新首页</option>
  150. <option value="1"<?=$r[doing]==1?' selected':''?>>刷新栏目页面</option>
  151. <option value="6"<?=$r[doing]==6?' selected':''?>>刷新标题分类页面</option>
  152. <option value="2"<?=$r[doing]==2?' selected':''?>>刷新专题页面</option>
  153. <option value="3"<?=$r[doing]==3?' selected':''?>>刷新自定义列表</option>
  154. <option value="4"<?=$r[doing]==4?' selected':''?>>刷新自定义页面</option>
  155. <option value="5"<?=$r[doing]==5?' selected':''?>>刷新自定义JS</option>
  156. </select>
  157. </td>
  158. </tr>
  159. <tr bgcolor="#FFFFFF">
  160. <td width="22%" height="25">任务名:</td>
  161. <td width="78%" height="25"><input name="doname" type="text" value="<?=$r[doname]?>" size="38">
  162. <font color="#666666">(比如首页定时刷新)</font></td>
  163. </tr>
  164. <tr bgcolor="#FFFFFF">
  165. <td height="25">任务状态:</td>
  166. <td height="25"><input type="radio" name="isopen" value="1"<?=$r[isopen]==1?' checked':''?>>
  167. 开启
  168. <input type="radio" name="isopen" value="0"<?=$r[isopen]==0?' checked':''?>>
  169. 关闭</td>
  170. </tr>
  171. <tr bgcolor="#FFFFFF">
  172. <td height="25">执行时间间隔:</td>
  173. <td height="25"><input name="dotime" type="text" value="<?=$r[dotime]?>" size="38">
  174. 分钟<font color="#666666">(小于5分钟系统将视为5分钟)</font></td>
  175. </tr>
  176. <tr bgcolor="#FFFFFF">
  177. <td height="25"><p>选择<?=$cname?>:<br>
  178. <br>
  179. <br>
  180. <font color="#666666">(首页刷新此栏失效;<br>
  181. 可同时选择多个;<br>
  182. 说明:选择越多占用资源越大.</font><font color="#666666">)</font></p>
  183. </td>
  184. <td height="25"><select name="classid[]" size="16" multiple style="width:270" id="classidselect">
  185. <?=$class?>
  186. </select>
  187. [<a href="#empirecms" onclick="selectalls(0,'classidselect')">全部取消</a>]</td>
  188. </tr>
  189. <tr bgcolor="#FFFFFF">
  190. <td height="25">&nbsp;</td>
  191. <td height="25"><input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
  192. </tr>
  193. </table>
  194. </form>
  195. </body>
  196. </html>