HEX
Server: nginx/1.22.1
System: Linux VM-16-9-centos 3.10.0-1160.99.1.el7.x86_64 #1 SMP Wed Sep 13 14:19:20 UTC 2023 x86_64
User: www (1001)
PHP: 7.3.31
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/oa.sanjiangapp.com/app/sys/cron/lang/en.php
<?php
if(!isset($lang->cron)) $lang->cron = new stdclass();
$lang->cron->common  = 'Cron';
$lang->cron->index   = 'Home';
$lang->cron->list    = 'List';
$lang->cron->create  = 'Create';
$lang->cron->edit    = 'Edit';
$lang->cron->delete  = 'Delete';
$lang->cron->toggle  = 'Enable/Disable';
$lang->cron->turnon  = 'Open/Close';

$lang->cron->m        = 'Minute';
$lang->cron->h        = 'Hour';
$lang->cron->dom      = 'Day';
$lang->cron->mon      = 'Month';
$lang->cron->dow      = 'Week';
$lang->cron->command  = 'Command';
$lang->cron->status   = 'Status';
$lang->cron->type     = 'Type';
$lang->cron->remark   = 'Remark';
$lang->cron->lastTime = 'Last run';

$lang->cron->turnonList['1'] = 'Open';
$lang->cron->turnonList['0'] = 'Close';

$lang->cron->statusList['normal']  = 'Normal';
$lang->cron->statusList['running'] = 'Running';
$lang->cron->statusList['stop']    = 'Stop';

$lang->cron->typeList['zdoo']   = 'Self call';
$lang->cron->typeList['system'] = 'System command';

$lang->cron->toggleList['start'] = 'Enable';
$lang->cron->toggleList['stop']  = 'Disable';

$lang->cron->confirmDelete = 'Do you want to delete the task?';
$lang->cron->confirmTurnon = 'Do you want to trun off the cron?';
$lang->cron->introduction  = <<<EOD
<p>Cron such as compute burn and backup.</p>
<p>Cron features is in optimization, so this feature is not ON by default</p>
EOD;
$lang->cron->confirmOpen = <<<EOD
<p>Do you want to set this feature ON? <a href="%s">Open timing task</a></p>
EOD;

$lang->cron->notice = new stdclass();
$lang->cron->notice->m   = 'Range : 0-59,"*" means the range of numbers, "/" means "Every", "-" means digit range.';
$lang->cron->notice->h   = 'Range : 0-23';
$lang->cron->notice->dom = 'Range : 1-31';
$lang->cron->notice->mon = 'Range : 1-12';
$lang->cron->notice->dow = 'Range : 0-6';