6 declare(strict_types=1);
14 const ID =
'prg_restart_assignments_temporal_progress';
35 $this->
log = $DIC[
'ilLog'];
36 $this->lng = $DIC[
'lng'];
37 $this->lng->loadLanguageModule(
'prg');
50 return $this->lng->txt(
'prg_restart_assignments_temporal_progress_title');
60 return $this->lng->txt(
'prg_restart_assignments_temporal_progress_desc');
99 return self::SCHEDULE_TYPE_IN_DAYS;
121 ->getProgrammeIdsWithReassignmentForExpiringValidity();
123 if (count($programmes_to_reassign) == 0) {
128 $programmes_and_due = [];
130 foreach ($programmes_to_reassign as $programme_obj_id => $days_offset) {
131 $interval =
new DateInterval(
'P' . $days_offset .
'D');
132 $due = $today->add($interval);
133 $programmes_and_due[$programme_obj_id] = $due;
138 ->getAboutToExpire($programmes_and_due,
false);
140 if (count($progresses) == 0) {
146 foreach ($progresses as $progress) {
147 $ass = $assignment_repo->get($progress->getAssignmentId());
148 if ($ass->getRestartedAssignmentId() < 0) {
149 if ($ass->getRootId() != $progress->getNodeId()) {
152 'PRG, RestartAssignments: progress %s is not root of assignment %s. skipping.',
162 'PRG, RestartAssignments: user %s\'s assignment %s is being restarted (Programme %s)',
163 $progress->getUserId(),
165 $progress->getNodeId()
170 $restarted = $prg->assignUser($ass->getUserId(), self::ACTING_USR_ID);
171 $ass = $ass->withRestarted($restarted->getId(), $today);
173 $assignment_repo->update($ass);
175 $events->userReAssigned($restarted);
190 return $this->dic[
'model.Settings.ilStudyProgrammeSettingsRepository'];
195 return $this->dic[
'ilStudyProgrammeUserProgressDB'];
200 return $this->dic[
'ilStudyProgrammeUserAssignmentDB'];
205 return $this->dic[
'ilStudyProgrammeEvents'];
208 protected function log(
string $msg) : void
210 $this->
log->write($msg);
getDescription()
Get description.
Cron job application base class.
getDefaultScheduleValue()
Get schedule value.
static getInstanceByObjId($obj_id)
hasAutoActivation()
Is to be activated on "installation".
getDefaultScheduleType()
Get schedule type.
Re-assign users (according to restart-date).
getAssignmentRepository()
Cron job result data container.
hasFlexibleSchedule()
Can the schedule be configured?