19 declare(strict_types=1);
34 private const ID =
'prg_invalidate_expired_progresses';
44 $this->log = $DIC[
'ilLog'];
45 $this->
lng = $DIC[
'lng'];
46 $this->
lng->loadLanguageModule(
'prg');
49 $this->assignment_repo =
$dic[
'repo.assignment'];
50 $this->settings_repo =
$dic[
'model.Settings.ilStudyProgrammeSettingsRepository'];
55 return $this->
lng->txt(
'prg_invalidate_expired_progresses_title');
60 return $this->
lng->txt(
'prg_invalidate_expired_progresses_desc');
80 return JobScheduleType::IN_DAYS;
91 $expired = $this->assignment_repo->getExpiredAndNotInvalidated();
93 if ($expired === []) {
94 $result->setStatus(JobResult::STATUS_NO_ACTION);
98 foreach ($expired as $assignment) {
100 $assignment = $assignment->invalidate($this->settings_repo);
101 $this->assignment_repo->store($assignment);
103 $this->log->write(
'an error occured: ' . $e->getMessage());
104 $result->setStatus(JobResult::STATUS_FAIL);
109 $result->setStatus(JobResult::STATUS_OK);
ilPRGAssignmentDBRepository $assignment_repo
ilStudyProgrammeSettingsDBRepository $settings_repo
Component logger with individual log levels by component id.
Assignments are relations of users to a PRG; They hold progress-information for (sub-)nodes of the PR...
getDefaultScheduleValue()