AddTask.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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. //验证权限
  19. CheckLevel($logininid,$loginin,$classid,"task");
  20. //返回选项
  21. function ReturnDaySelect($zero,$num,$thisno){
  22. global $enews;
  23. $start=1;
  24. if($zero)
  25. {
  26. $start=0;
  27. }
  28. for($i=$start;$i<=$num;$i++)
  29. {
  30. $select='';
  31. if($enews=='EditTask'&&(','.$i.','==','.$thisno.','||strstr($thisno,','.$i.',')))
  32. {
  33. $select=' selected';
  34. }
  35. $options.="<option value='".$i."'".$select.">".$i."</option>";
  36. }
  37. echo $options;
  38. }
  39. $enews=ehtmlspecialchars($_GET['enews']);
  40. $url="<a href='ListTask.php".$ecms_hashur['whehref']."'>管理计划任务</a> &gt; 增加计划任务";
  41. $postword='增加计划任务';
  42. $r['isopen']=1;
  43. $r['doday']='*';
  44. $r['doweek']='*';
  45. $r['dohour']='*';
  46. $r['dominute']=',';
  47. if($enews=="EditTask")
  48. {
  49. $id=(int)$_GET['id'];
  50. $r=$empire->fetch1("select * from {$dbtbpre}enewstask where id='$id'");
  51. $url="<a href='ListTask.php".$ecms_hashur['whehref']."'>管理计划任务</a> &gt; 修改计划任务:<b>".$r[taskname]."</b>";
  52. $postword='修改计划任务';
  53. }
  54. //用户
  55. $userselect='';
  56. $usersql=$empire->query("select userid,username from {$dbtbpre}enewsuser order by userid");
  57. while($ur=$empire->fetch($usersql))
  58. {
  59. $select="";
  60. if($ur[userid]==$r[userid])
  61. {
  62. $select=" selected";
  63. }
  64. $userselect.="<option value='".$ur[userid]."'".$select.">".$ur[username]."</option>";
  65. }
  66. db_close();
  67. $empire=null;
  68. ?>
  69. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  70. <html>
  71. <head>
  72. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  73. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  74. <title>计划任务</title>
  75. <script>
  76. function selectalls(doselect,formvar)
  77. {
  78. var bool=doselect==1?true:false;
  79. var selectform=document.getElementById(formvar);
  80. for(var i=0;i<selectform.length;i++)
  81. {
  82. selectform.all[i].selected=bool;
  83. }
  84. }
  85. </script>
  86. </head>
  87. <body>
  88. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  89. <tr>
  90. <td>位置:<?=$url?></td>
  91. </tr>
  92. </table>
  93. <form name="form1" method="post" action="ListTask.php">
  94. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  95. <?=$ecms_hashur['form']?>
  96. <tr class="header">
  97. <td height="25" colspan="2"><?=$postword?>
  98. <input name="enews" type="hidden" id="enews" value="<?=$enews?>"> <input name="id" type="hidden" id="id" value="<?=$id?>">
  99. </td>
  100. </tr>
  101. <tr bgcolor="#FFFFFF">
  102. <td width="30%" height="25">任务名称</td>
  103. <td width="70%" height="25"> <input name="taskname" type="text" id="taskname" value="<?=$r[taskname]?>" size="42">
  104. </td>
  105. </tr>
  106. <tr bgcolor="#FFFFFF">
  107. <td height="25">是否开启该计划任务</td>
  108. <td height="25"><input type="radio" name="isopen" value="1"<?=$r[isopen]==1?' checked':''?>>
  109. 是 <input type="radio" name="isopen" value="0"<?=$r[isopen]==0?' checked':''?>>
  110. 否</td>
  111. </tr>
  112. <tr bgcolor="#FFFFFF">
  113. <td height="25">执行者</td>
  114. <td height="25"><select name="userid" id="userid">
  115. <option value="0">*</option>
  116. <?=$userselect?>
  117. </select>
  118. <font color="#666666"> (选择用户后,只有此登陆帐号才会执行这个计划任务) </font></td>
  119. </tr>
  120. <tr bgcolor="#FFFFFF">
  121. <td height="25">每月几号执行</td>
  122. <td height="25"><select name="doday" id="doday">
  123. <option value="*">*</option>
  124. <?php
  125. ReturnDaySelect(0,31,$r[doday]);
  126. ?>
  127. </select> </td>
  128. </tr>
  129. <tr bgcolor="#FFFFFF">
  130. <td height="25">每周星期几执行</td>
  131. <td height="25"><select name="doweek" id="doweek">
  132. <option value="*"<?=$r['doweek']=='*'?' selected':''?>>*</option>
  133. <option value="1"<?=$r['doweek']=='1'?' selected':''?>>星期一</option>
  134. <option value="2"<?=$r['doweek']=='2'?' selected':''?>>星期二</option>
  135. <option value="3"<?=$r['doweek']=='3'?' selected':''?>>星期三</option>
  136. <option value="4"<?=$r['doweek']=='4'?' selected':''?>>星期四</option>
  137. <option value="5"<?=$r['doweek']=='5'?' selected':''?>>星期五</option>
  138. <option value="6"<?=$r['doweek']=='6'?' selected':''?>>星期六</option>
  139. <option value="0"<?=$r['doweek']=='0'?' selected':''?>>星期日</option>
  140. </select> </td>
  141. </tr>
  142. <tr bgcolor="#FFFFFF">
  143. <td height="25">每日几点执行</td>
  144. <td height="25"><select name="dohour">
  145. <option value="*">*</option>
  146. <?php
  147. ReturnDaySelect(1,23,$r[dohour]);
  148. ?>
  149. </select></td>
  150. </tr>
  151. <tr bgcolor="#FFFFFF">
  152. <td height="25" valign="top">每小时几分钟执行<br>
  153. <font color="#666666">设置哪些分钟执行本任务<br>
  154. 不选为不限,选择多个可以用CTRL/SHIFT</font></td>
  155. <td height="25">
  156. <select name="min[]" size="12" multiple id="minselect" style="width:180">
  157. <?php
  158. ReturnDaySelect(1,59,$r['dominute']);
  159. ?>
  160. </select>
  161. [<a href="#empirecms" onclick="selectalls(0,'minselect')">全部取消</a>]</td>
  162. </tr>
  163. <tr bgcolor="#FFFFFF">
  164. <td height="25">执行文件名<br>
  165. (在e/tasks/目录下)</td>
  166. <td height="25"><input name="filename" type="text" id="filename" value="<?=$r[filename]?>" size="42"></td>
  167. </tr>
  168. <tr bgcolor="#FFFFFF">
  169. <td height="25">&nbsp;</td>
  170. <td height="25"> <input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
  171. </tr>
  172. <tr bgcolor="#FFFFFF">
  173. <td height="25" colspan="2"><font color="#666666">说明:“*”表示不限</font></td>
  174. </tr>
  175. </table>
  176. </form>
  177. </body>
  178. </html>