ListDo.php 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  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. $link=db_connect();
  8. $empire=new mysqlquery();
  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,"do");
  20. //组合栏目
  21. function AddDoTogClassid($classid){
  22. $count=count($classid);
  23. $class=',';
  24. for($i=0;$i<$count;$i++)
  25. {
  26. $class.=intval($classid[$i]).',';
  27. }
  28. return $class;
  29. }
  30. //增加刷新任务
  31. function AddDo($add,$userid,$username){
  32. global $empire,$dbtbpre;
  33. $count=count($add[classid]);
  34. if(empty($add[doname])||($add[doing]&&!$count))
  35. {
  36. printerror("EmptyDoname","history.go(-1)");
  37. }
  38. //验证权限
  39. CheckLevel($userid,$username,$classid,"do");
  40. if($add[dotime]<5)
  41. {
  42. $add[dotime]=5;
  43. }
  44. $lasttime=time();
  45. //变量处理
  46. $add[dotime]=(int)$add[dotime];
  47. $add[isopen]=(int)$add[isopen];
  48. $add[doing]=(int)$add[doing];
  49. $classid=AddDoTogClassid($add[classid]);
  50. $add['doname']=hRepPostStr($add['doname'],1);
  51. $sql=$empire->query("insert into {$dbtbpre}enewsdo(doname,dotime,isopen,doing,classid,lasttime) values('$add[doname]',$add[dotime],$add[isopen],$add[doing],'$classid',$lasttime);");
  52. $doid=$empire->lastid();
  53. if($sql)
  54. {
  55. //操作日志
  56. insert_dolog("doid=$doid&doname=$add[doname]");
  57. printerror("AddDoSuccess","AddDo.php?enews=AddDo".hReturnEcmsHashStrHref2(0));
  58. }
  59. else
  60. {printerror("DbError","history.go(-1)");}
  61. }
  62. //修改刷新任务
  63. function EditDo($add,$userid,$username){
  64. global $empire,$dbtbpre;
  65. $count=count($add[classid]);
  66. if(empty($add[doname])||($add[doing]&&!$count))
  67. {
  68. printerror("EmptyDoname","history.go(-1)");
  69. }
  70. //验证权限
  71. CheckLevel($userid,$username,$classid,"do");
  72. if($add[dotime]<5)
  73. {
  74. $add[dotime]=5;
  75. }
  76. //变量处理
  77. $add[dotime]=(int)$add[dotime];
  78. $add[isopen]=(int)$add[isopen];
  79. $add[doing]=(int)$add[doing];
  80. $classid=AddDoTogClassid($add[classid]);
  81. $add['doname']=hRepPostStr($add['doname'],1);
  82. $sql=$empire->query("update {$dbtbpre}enewsdo set doname='$add[doname]',dotime=$add[dotime],isopen=$add[isopen],doing=$add[doing],classid='$classid' where doid='$add[doid]'");
  83. if($sql)
  84. {
  85. //操作日志
  86. insert_dolog("doid=$add[doid]&doname=$add[doname]");
  87. printerror("EditDoSuccess","ListDo.php".hReturnEcmsHashStrHref2(1));
  88. }
  89. else
  90. {printerror("DbError","history.go(-1)");}
  91. }
  92. //删除刷新任务
  93. function DelDo($doid,$userid,$username){
  94. global $empire,$dbtbpre;
  95. $doid=(int)$doid;
  96. if(empty($doid))
  97. {printerror("EmptyDoid","history.go(-1)");}
  98. //验证权限
  99. CheckLevel($userid,$username,$classid,"do");
  100. $r=$empire->fetch1("select doname from {$dbtbpre}enewsdo where doid='$doid'");
  101. $sql=$empire->query("delete from {$dbtbpre}enewsdo where doid='$doid'");
  102. if($sql)
  103. {
  104. //操作日志
  105. insert_dolog("doid=$doid&doname=$r[doname]");
  106. printerror("EditDoSuccess","ListDo.php".hReturnEcmsHashStrHref2(1));
  107. }
  108. else
  109. {printerror("DbError","history.go(-1)");}
  110. }
  111. $enews=$_POST['enews'];
  112. if(empty($enews))
  113. {$enews=$_GET['enews'];}
  114. if($enews)
  115. {
  116. hCheckEcmsRHash();
  117. }
  118. //增加刷新任务
  119. if($enews=="AddDo")
  120. {
  121. $add=$_POST;
  122. AddDo($add,$logininid,$loginin);
  123. }
  124. //修改刷新任务
  125. elseif($enews=="EditDo")
  126. {
  127. $add=$_POST;
  128. EditDo($add,$logininid,$loginin);
  129. }
  130. //删除刷新任务
  131. elseif($enews=="DelDo")
  132. {
  133. $doid=$_GET['doid'];
  134. DelDo($doid,$logininid,$loginin);
  135. }
  136. $search=$ecms_hashur['ehref'];
  137. $page=(int)$_GET['page'];
  138. $page=RepPIntvar($page);
  139. $start=0;
  140. $line=25;//每页显示条数
  141. $page_line=12;//每页显示链接数
  142. $offset=$page*$line;//总偏移量
  143. $query="select * from {$dbtbpre}enewsdo";
  144. $num=$empire->num($query);//取得总条数
  145. $query=$query." order by doid desc limit $offset,$line";
  146. $sql=$empire->query($query);
  147. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  148. ?>
  149. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  150. <html>
  151. <head>
  152. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  153. <link href="adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  154. <title>管理刷新任务</title>
  155. </head>
  156. <body>
  157. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  158. <tr>
  159. <td width="50%" height="25">位置:<a href="ListDo.php<?=$ecms_hashur['whehref']?>">管理定时刷新任务</a></td>
  160. <td> <div align="right" class="emenubutton">
  161. <input type="button" name="Submit" value="增加刷新任务" onclick="self.location.href='AddDo.php?enews=AddDo<?=$ecms_hashur['ehref']?>';">
  162. </div></td>
  163. </tr>
  164. </table>
  165. <br>
  166. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  167. <tr class="header">
  168. <td width="6%" height="25"> <div align="center">ID</div></td>
  169. <td width="46%" height="25"> <div align="center">任务名</div></td>
  170. <td width="8%"><div align="center">时间间隔</div></td>
  171. <td width="18%"><div align="center">最后执行时间</div></td>
  172. <td width="8%" height="25"> <div align="center">开启</div></td>
  173. <td width="14%" height="25"> <div align="center">操作</div></td>
  174. </tr>
  175. <?
  176. while($r=$empire->fetch($sql))
  177. {
  178. if($r[isopen])
  179. {$isopen="开启";}
  180. else
  181. {$isopen="关闭";}
  182. ?>
  183. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  184. <td height="25"> <div align="center">
  185. <?=$r[doid]?>
  186. </div></td>
  187. <td height="25"> <div align="center">
  188. <?=$r[doname]?>
  189. </div></td>
  190. <td><div align="center">
  191. <?=$r[dotime]?>
  192. </div></td>
  193. <td><div align="center">
  194. <?=date("Y-m-d H:i:s",$r[lasttime])?>
  195. </div></td>
  196. <td height="25"> <div align="center">
  197. <?=$isopen?>
  198. </div></td>
  199. <td height="25"> <div align="center">[<a href="AddDo.php?enews=EditDo&doid=<?=$r[doid]?><?=$ecms_hashur['ehref']?>">修改</a>]&nbsp;[<a href="ListDo.php?enews=DelDo&doid=<?=$r[doid]?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  200. </tr>
  201. <?
  202. }
  203. ?>
  204. <tr bgcolor="#FFFFFF">
  205. <td height="25" colspan="6">&nbsp;&nbsp;&nbsp;
  206. <?=$returnpage?>
  207. </td>
  208. </tr>
  209. <tr bgcolor="#FFFFFF">
  210. <td height="25" colspan="6"><font color="#666666">说明:执行定时刷新任务需要开着后台或者<a href="DoTimeRepage.php<?=$ecms_hashur['whehref']?>" target="_blank"><strong>点击这里</strong></a>开着这个页面才会执行。</font></td>
  211. </tr>
  212. </table>
  213. </body>
  214. </html>
  215. <?
  216. db_close();
  217. $empire=null;
  218. ?>