{template 'common/header'} {if $do == 'post'}
计划任务
设置本任务的任务名称
设置本任务的任务名称
设置本任务的执行程序文件名,必须是PHP文件。请勿包含路径,系统计划任务位于 source/include/cron/ 目录中,插件计划任务位于 source/plugin/插件目录/cron/ 目录中
定时任务是某个时间只执行一次,执行后将会自动关闭。定时群发的执行时间必须在当前时间一小时之后
{php echo tpl_form_field_date('executetime', $cron['lastruntime'], true);}
当天 分钟
设置哪些分钟执行本任务,至多可以设置 2 个分钟值,多个值之间用半角逗号 "," 隔开
{/if} {if $do == 'list'}
{loop $crons $cron} {/loop} {if !empty($crons)} {/if}
名称 所属模块 类型 执行时间 上次执行时间 下次执行时间 添加时间 状态 操作
{$cron['name']} {$modules[$cron['module']]['title']} {if $cron['type'] == 1} 定时任务 {else} 循环任务 {/if} {$cron['cn']} {$cron['lastruntime']} {$cron['nextruntime']} {php echo date('Y-m-d H:i', $cron['createtime']);}
{/if} {template 'common/footer'}