{:build_select('row[type]', $typeList, null, ['class'=>'form-control', 'data-rule'=>'required'])}
*    *    *    *    *
-    -    -    -    -
|    |    |    |    +--- day of week (0 - 7) (Sunday=0 or 7)
|    |    |    +-------- month (1 - 12)
|    |    +------------- day of month (1 - 31)
|    +------------------ hour (0 - 23)
+----------------------- min (0 - 59)
minute   hour   day   month   week

minute:表示分钟,可以是0~59的任意整数。
hour:表示小时,可以是2~23的任意整数
day:表示日期,可以是1~31的任意整数
month:表示月份,可以是1~12的任意整数
week:表示星期几,可以是0~7之间的整数,0或者7表示星期天
星号(*):表示所有可能的值,`* * * * * `表示为每分钟都执行。
逗号(,):表示一个列表范围,如`1,2,3,5,10 * * * *`表示每天每小时的第一、第二、第三、第五、第十分钟执行。
中杠(-):表示一个数值范围,如`1-15 * * * *`表示每天每小时的1到15分钟执行。
正斜线(/):表示间隔频率,如`0 10-12/3 * * *`表示每天的10点到12点间隔3小时执行,`/`也可以配合`*`使用,如:`*/5 * * * * *`表示每隔5分钟执行。

                    使用前准备工作

                    Linux下使用crontab -e -u 用户名添加一条记录

* * * * * /usr/bin/php /www/yoursite/public/index.php /addons/crontab/autotask/index > /dev/null  2>&1 &
{:__('The next %s times the execution time', '')}
{:build_radios('row[status]', ['normal'=>__('Normal'), 'hidden'=>__('Hidden')])}