12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * 增加任务
- *
- * @version $Id: sys_task_add.php 1 23:07 2010年7月20日Z tianya $
- * @package DedeCMS.Administrator
- * @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
- * @license http://help.dedecms.com/usersguide/license.html
- * @link http://www.dedecms.com
- */
- require(dirname(__FILE__)."/config.php");
- CheckPurview('sys_Task');
- if(empty($dopost)) $dopost = '';
- if($dopost=='save')
- {
- $starttime = empty($starttime) ? 0 : GetMkTime($starttime);
- $endtime = empty($endtime) ? 0 : GetMkTime($endtime);
- $runtime = $h.':'.$m;
- $Query = "INSERT INTO `#@__sys_task`(`taskname`,`dourl`,`islock`,`runtype`,`runtime`,`starttime`,`endtime`,`freq`,`lastrun`,`description`,`parameter`,`settime`)
- VALUES('$taskname', '$dourl', '$nislock', '$runtype', '$runtime', '$starttime', '$endtime','$freq', '0', '$description','$parameter', '".time()."'); ";
- $rs = $dsql->ExecuteNoneQuery($Query);
- if($rs)
- {
- ShowMsg('成功增加一个任务!', 'sys_task.php');
- }
- else
- {
- ShowMsg('增加任务失败!'.$dsql->GetError(), 'javascript:;');
- }
- exit();
- }
- include DedeInclude('templets/sys_task_add.htm');
|