1 <?php declare(strict_types=1);
71 $this->jobId = (string) $record[
'job_id'];
72 $this->component = (string) $record[
'component'];
73 $this->scheduleType = (int) $record[
'schedule_type'];
74 $this->scheduleValue = (int) $record[
'schedule_value'];
75 $this->jobStatus = (int) $record[
'job_status'];
76 $this->jobStatusUsrId = (int) $record[
'job_status_user_id'];
77 $this->jobStatusType = (int) $record[
'job_status_type'];
78 $this->jobStatusTimestamp = (int) $record[
'job_status_ts'];
79 $this->jobResultStatus = (int) $record[
'job_result_status'];
80 $this->jobResultUsrId = (int) $record[
'job_result_user_id'];
81 $this->jobResultCode = (string) $record[
'job_result_code'];
82 $this->jobResultMessage = (string) $record[
'job_result_message'];
83 $this->jobResultType = (int) $record[
'job_result_type'];
84 $this->jobResultTimestamp = (int) $record[
'job_result_ts'];
85 $this->
class = (string) $record['class'];
86 $this->path = (string) $record[
'path'];
87 $this->runningTimestamp = (int) $record[
'running_ts'];
88 $this->jobResultDuration = (int) $record[
'job_result_dur'];
89 $this->aliveTimestamp = (int) $record[
'alive_ts'];
266 if (!$this->
getJob()->hasFlexibleSchedule() || !
$type) {
267 $type = (int) $this->
getJob()->getDefaultScheduleType();
280 if (!$this->
getJob()->hasFlexibleSchedule() || !
$type) {
281 $value = (int) $this->
getJob()->getDefaultScheduleValue();
297 $title = (string) $this->
getJob()->getTitle();
298 if (0 === strlen($title)) {
getEffectiveScheduleValue()
getEffectiveScheduleType()
__construct(ilCronJob $job, array $record, bool $isPlugin=false)
ilCronJobEntity constructor.
Cron job application base class.