ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilPRGAssignmentActions.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 {
29  abstract public function getEvents(): StudyProgrammeEvents;
30 
31  protected function getProgressIdString(int $node_id): string
32  {
33  return sprintf(
34  '%s, progress-id (%s/%s)',
35  $this->user_info->getFullname(),
36  $this->getId(),
37  (string) $node_id
38  );
39  }
40 
41  protected function getNow(): DateTimeImmutable
42  {
43  return new DateTimeImmutable();
44  }
45 
46  protected function getRefIdFor(int $obj_id): int
47  {
48  $refs = ilObject::_getAllReferences($obj_id);
49  if (count($refs) < 1) {
50  throw new ilException("Could not find ref_id for programme with obj_id $obj_id");
51  }
52  return (int) array_shift($refs);
53  }
54 
55  protected function recalculateProgressStatus(
57  ilPRGProgress $progress
58  ): ilPRGProgress {
59  if (!$progress->isRelevant()) {
60  return $progress;
61  }
62  $node_settings = $settings_repo->get($progress->getNodeId());
63  $completion_mode = $node_settings->getLPMode();
64 
65  switch ($completion_mode) {
68  return $progress;
69  break;
71  $completing_crs_id = ilPRGProgress::COMPLETED_BY_SUBNODES;
72  $achieved_points = $progress->getAchievedPointsOfChildren();
73  break;
74  }
75 
76  $progress = $progress->withCurrentAmountOfPoints($achieved_points);
77  $this->notifyScoreChange($progress);
78 
79  $required_points = $progress->getAmountOfPoints();
80  $successful = ($achieved_points >= $required_points);
81 
82  if ($successful && !$progress->isSuccessful()) {
83  $progress = $progress
85  ->withCompletion($completing_crs_id, $this->getNow());
86 
87  $this->notifyProgressSuccess($progress);
88  }
89 
90  if (!$successful && $progress->isSuccessful()
92  ) {
93  $progress = $progress
95  ->withCompletion(null, null)
96  ->withValidityOfQualification(null);
97 
98  $this->notifyValidityChange($progress);
99  $this->notifyProgressRevertSuccess($progress);
100  }
101 
102  return $progress;
103  }
104 
105  protected function updateParentProgresses(
106  ilStudyProgrammeSettingsRepository $settings_repo,
107  Zipper $zipper
108  ): Zipper {
109  while (!$zipper->isTop()) {
110  $zipper = $zipper->toParent()
111  ->modifyFocus(
112  function ($pgs) use ($settings_repo) {
113  $today = $this->getNow();
114  $format = ilPRGProgress::DATE_FORMAT;
115  $deadline = $pgs->getDeadline();
116  if (!is_null($deadline)
117  && $deadline->format($format) <= $today->format($format)
118  ) {
119  return $pgs;
120  }
121  return $this->recalculateProgressStatus($settings_repo, $pgs);
122  }
123  );
124  }
125  return $zipper;
126  }
127 
130  ilPRGProgress $progress
131  ): ilPRGProgress {
132  $cdate = $progress->getCompletionDate();
133  if (!$cdate
134  || $progress->isSuccessful() === false
135  ) {
136  return $progress;
137  }
138  $period = $settings->getQualificationPeriod();
139  $date = $settings->getQualificationDate();
140 
141  if ($period) {
142  $date = $cdate->add(new DateInterval('P' . $period . 'D'));
143  }
144 
145  $validity = is_null($date) || $date->format(ilPRGProgress::DATE_FORMAT) >= $this->getNow()->format(ilPRGProgress::DATE_FORMAT);
146  $this->notifyValidityChange($progress);
147  return $progress->withValidityOfQualification($date)
148  ->withInvalidated(!$validity);
149  }
150 
153  ilPRGProgress $progress
154  ): ilPRGProgress {
155  $period = $settings->getDeadlinePeriod();
156  $date = $settings->getDeadlineDate();
157 
158  if ($period) {
159  $date = $progress->getAssignmentDate();
160  $date = $date->add(new DateInterval('P' . $period . 'D'));
161  }
162  $this->notifyDeadlineChange($progress);
163  return $progress->withDeadline($date);
164  }
165 
167  ilStudyProgrammeSettingsRepository $settings_repo,
168  ilPRGProgress $pgs
169  ): ilPRGProgress {
170  $programme_status = $settings_repo->get($pgs->getNodeId())->getAssessmentSettings()->getStatus();
171  $active = $programme_status === ilStudyProgrammeSettings::STATUS_ACTIVE;
172 
173  if ($active && !$pgs->isRelevant()) {
175  }
176  if (!$active && $pgs->isInProgress()) {
178  }
179  return $pgs;
180  }
181 
182 
183  protected function applyProgressDeadline(
184  ilStudyProgrammeSettingsRepository $settings_repo,
185  ilPRGProgress $progress,
186  ?int $acting_usr_id = null,
187  bool $recalculate = true
188  ): ilPRGProgress {
189  $today = $this->getNow();
190  $format = ilPRGProgress::DATE_FORMAT;
191  $deadline = $progress->getDeadline();
192 
193  if (is_null($acting_usr_id)) {
194  throw new Exception('no acting user.');
195  $acting_usr_id = $this->getLoggedInUserId(); //TODO !
196  }
197 
198  switch ($progress->getStatus()) {
200  if (!is_null($deadline)
201  && $deadline->format($format) < $today->format($format)
202  ) {
203  $progress = $progress->markFailed($this->getNow(), $acting_usr_id);
204  $this->notifyProgressRevertSuccess($progress);
205  } else {
206  $node_settings = $settings_repo->get($progress->getNodeId());
207  $completion_mode = $node_settings->getLPMode();
208  if ($recalculate || $completion_mode !== ilStudyProgrammeSettings::MODE_LP_COMPLETED) {
209  $progress = $this->recalculateProgressStatus($settings_repo, $progress);
210  }
211  }
212  break;
213 
215  if (is_null($deadline)
216  || $deadline->format($format) >= $today->format($format)
217  ) {
218  $progress = $progress->markNotFailed($this->getNow(), $acting_usr_id);
219  $this->notifyProgressRevertSuccess($progress);
220  }
221  break;
222  }
223 
224  return $progress;
225  }
226 
227 
228  protected function resetProgressToSettings(
229  ilStudyProgrammeSettingsRepository $settings_repo,
230  ilPRGProgress $pgs,
231  int $acting_usr_id
232  ): ilPRGProgress {
233  $settings = $settings_repo->get($pgs->getNodeId());
234  if ($pgs->isRelevant()) {
235  $pgs = $this->updateProgressValidityFromSettings($settings->getValidityOfQualificationSettings(), $pgs);
236  $pgs = $this->updateProgressDeadlineFromSettings($settings->getDeadlineSettings(), $pgs);
237  } else {
238  $pgs = $pgs
240  ->withDeadline(null);
241  $this->notifyValidityChange($pgs);
242  }
243 
244  $pgs = $pgs
245  ->withAmountOfPoints($settings->getAssessmentSettings()->getPoints())
246  ->withLastChange($acting_usr_id, $this->getNow())
247  ->withIndividualModifications(false);
248 
249  if ($pgs->isSuccessful()) {
250  $pgs = $pgs->withCurrentAmountOfPoints($pgs->getAmountOfPoints());
251  $this->notifyScoreChange($pgs);
252  }
253 
254  return $pgs;
255  }
256 
257 
258 
259  // ------------------------- tree-manipulation -----------------------------
260 
261  protected function getZipper($node_id)
262  {
263  $progress_path = $this->getProgressForNode($node_id)->getPath();
264  $zipper = new Zipper($this->getProgressTree());
265  return $zipper = $zipper->toPath($progress_path);
266  }
267 
268  protected function notifyProgressSuccess(ilPRGProgress $pgs): void
269  {
270  $this->getEvents()->userSuccessful($this, $pgs->getNodeId());
271  }
272  protected function notifyValidityChange(ilPRGProgress $pgs): void
273  {
274  $this->getEvents()->validityChange($this, $pgs->getNodeId());
275  }
276  protected function notifyDeadlineChange(ilPRGProgress $pgs): void
277  {
278  $this->getEvents()->deadlineChange($this, $pgs->getNodeId());
279  }
280  protected function notifyScoreChange(ilPRGProgress $pgs): void
281  {
282  $this->getEvents()->scoreChange($this, $pgs->getNodeId());
283  }
284  protected function notifyProgressRevertSuccess(ilPRGProgress $pgs): void
285  {
286  $this->getEvents()->userRevertSuccessful($this, $pgs->getNodeId());
287  }
288 
289  public function initAssignmentDates(): self
290  {
291  $zipper = $this->getZipper($this->getRootId());
292  $zipper = $zipper->modifyAll(
293  fn($pgs) => $pgs->withAssignmentDate($this->getNow())
294  );
295  return $this->withProgressTree($zipper->getRoot());
296  }
297 
298  public function resetProgresses(
299  ilStudyProgrammeSettingsRepository $settings_repo,
300  int $acting_usr_id
301  ): self {
302  $zipper = $this->getZipper($this->getRootId());
303  $zipper = $zipper->modifyAll(
304  function ($pgs) use ($acting_usr_id, $settings_repo): ilPRGProgress {
305  $pgs = $this->updateProgressRelevanceFromSettings($settings_repo, $pgs);
306  $pgs = $this->resetProgressToSettings($settings_repo, $pgs, $acting_usr_id);
307  return $pgs;
308  }
309  );
310  return $this->withProgressTree($zipper->getRoot());
311  }
312 
313  public function markRelevant(
314  ilStudyProgrammeSettingsRepository $settings_repo,
315  int $node_id,
316  int $acting_usr_id,
317  ilPRGMessageCollection $err_collection
318  ): self {
319  $zipper = $this->getZipper($node_id)->modifyFocus(
320  function ($pgs) use ($err_collection, $acting_usr_id, $settings_repo): ilPRGProgress {
321  if ($pgs->isRelevant()) {
322  $err_collection->add(false, 'will_not_modify_relevant_progress', $this->getProgressIdString($pgs->getNodeId()));
323  return $pgs;
324  }
325  $pgs = $pgs->markRelevant($this->getNow(), $acting_usr_id);
326  $err_collection->add(true, 'set_to_relevant', $this->getProgressIdString($pgs->getNodeId()));
327  $pgs = $this->recalculateProgressStatus($settings_repo, $pgs);
328  return $pgs;
329  }
330  );
331 
332  $zipper = $this->updateParentProgresses($settings_repo, $zipper);
333  return $this->withProgressTree($zipper->getRoot());
334  }
335 
336  public function markNotRelevant(
337  ilStudyProgrammeSettingsRepository $settings_repo,
338  int $node_id,
339  int $acting_usr_id,
340  ilPRGMessageCollection $err_collection
341  ): self {
342  $zipper = $this->getZipper($node_id);
343 
344  if ($zipper->isTop()) {
345  $err_collection->add(false, 'will_not_set_top_progress_to_irrelevant', $this->getProgressIdString($node_id));
346  return $this;
347  }
348 
349  $zipper = $zipper->modifyFocus(
350  function ($pgs) use ($err_collection, $acting_usr_id): ilPRGProgress {
351  if (!$pgs->isRelevant()) {
352  $err_collection->add(false, 'will_not_modify_irrelevant_progress', $this->getProgressIdString($pgs->getNodeId()));
353  return $pgs;
354  }
355  if ($pgs->getStatus() === ilPRGProgress::STATUS_COMPLETED) {
356  $err_collection->add(false, 'will_not_modify_successful_progress', $this->getProgressIdString($pgs->getNodeId()));
357  return $pgs;
358  }
359 
360  $pgs = $pgs->markNotRelevant($this->getNow(), $acting_usr_id);
361  $err_collection->add(true, 'set_to_irrelevant', $this->getProgressIdString($pgs->getNodeId()));
362  return $pgs;
363  }
364  );
365 
366  $zipper = $this->updateParentProgresses($settings_repo, $zipper);
367  return $this->withProgressTree($zipper->getRoot());
368  }
369 
370  public function markAccredited(
371  ilStudyProgrammeSettingsRepository $settings_repo,
372  ilStudyProgrammeEvents $events, //TODO: remove.
373  int $node_id,
374  int $acting_usr_id,
375  ilPRGMessageCollection $err_collection
376  ): self {
377  $zipper = $this->getZipper($node_id);
378 
379  $zipper = $zipper->modifyFocus(
380  function ($pgs) use ($err_collection, $acting_usr_id, $settings_repo): ilPRGProgress {
381  if (!$pgs->isRelevant()) {
382  $err_collection->add(false, 'will_not_modify_irrelevant_progress', $this->getProgressIdString($pgs->getNodeId()));
383  return $pgs;
384  }
385 
386  $new_status = ilPRGProgress::STATUS_ACCREDITED;
387  if ($pgs->getStatus() === $new_status) {
388  $err_collection->add(false, 'status_unchanged', $this->getProgressIdString($pgs->getNodeId()));
389  return $pgs;
390  }
391  if (!$pgs->isTransitionAllowedTo($new_status)) {
392  $err_collection->add(false, 'status_transition_not_allowed', $this->getProgressIdString($pgs->getNodeId()));
393  return $pgs;
394  }
395 
396  $pgs = $pgs
397  ->markAccredited($this->getNow(), $acting_usr_id)
398  ->withCurrentAmountOfPoints($pgs->getAmountOfPoints());
399  $this->notifyScoreChange($pgs);
400 
401  if (!$pgs->getValidityOfQualification()) {
402  $settings = $settings_repo->get($pgs->getNodeId())->getValidityOfQualificationSettings();
403  $pgs = $this->updateProgressValidityFromSettings($settings, $pgs);
404  }
405 
406  $this->notifyProgressSuccess($pgs);
407  $err_collection->add(true, 'status_changed', $this->getProgressIdString($pgs->getNodeId()));
408  return $pgs;
409  }
410  );
411 
412  $zipper = $this->updateParentProgresses($settings_repo, $zipper);
413  return $this->withProgressTree($zipper->getRoot());
414  }
415 
416 
417  public function unmarkAccredited(
418  ilStudyProgrammeSettingsRepository $settings_repo,
419  int $node_id,
420  int $acting_usr_id,
421  ilPRGMessageCollection $err_collection
422  ): self {
423  $zipper = $this->getZipper($node_id);
424 
425  $zipper = $zipper->modifyFocus(
426  function ($pgs) use ($err_collection, $acting_usr_id, $settings_repo): ilPRGProgress {
427  if (!$pgs->isRelevant()) {
428  $err_collection->add(false, 'will_not_modify_irrelevant_progress', $this->getProgressIdString($pgs->getNodeId()));
429  return $pgs;
430  }
431 
432  $new_status = ilPRGProgress::STATUS_IN_PROGRESS;
433  if ($pgs->getStatus() === $new_status) {
434  $err_collection->add(false, 'status_unchanged', $this->getProgressIdString($pgs->getNodeId()));
435  return $pgs;
436  }
437  if (!$pgs->isTransitionAllowedTo($new_status)
438  //special case: completion may not be revoked manually (but might be as a calculation-result of underlying progresses)
439  || $pgs->getStatus() === ilPRGProgress::STATUS_COMPLETED
440  ) {
441  $err_collection->add(false, 'status_transition_not_allowed', $this->getProgressIdString($pgs->getNodeId()));
442  return $pgs;
443  }
444 
445  $pgs = $pgs
446  ->unmarkAccredited($this->getNow(), $acting_usr_id)
447  ->withCurrentAmountOfPoints($pgs->getAchievedPointsOfChildren());
448  $this->notifyScoreChange($pgs);
449 
450  $old_status = $pgs->getStatus();
451  $pgs = $this->applyProgressDeadline($settings_repo, $pgs, $acting_usr_id);
452  if ($pgs->getStatus() !== $old_status) {
453  $err_collection->add(false, 'status_changed_due_to_deadline', $this->getProgressIdString($pgs->getNodeId()));
454  } else {
455  $err_collection->add(true, 'status_changed', $this->getProgressIdString($pgs->getNodeId()));
456  }
457  $this->notifyProgressRevertSuccess($pgs);
458  return $pgs;
459  }
460  );
461 
462  $zipper = $this->updateParentProgresses($settings_repo, $zipper);
463  return $this->withProgressTree($zipper->getRoot());
464  }
465 
466  public function updatePlanFromRepository(
467  ilStudyProgrammeSettingsRepository $settings_repo,
468  int $acting_usr_id,
469  ilPRGMessageCollection $err_collection
470  ): self {
471  $zipper = $this->getZipper($this->getRootId());
472  $leafs = [];
473  $zipper = $zipper->modifyAll(
474  function ($pgs) use ($err_collection, $acting_usr_id, $settings_repo, &$leafs): ilPRGProgress {
475  $pgs = $this->updateProgressRelevanceFromSettings($settings_repo, $pgs);
476  $pgs = $this->resetProgressToSettings($settings_repo, $pgs, $acting_usr_id);
477  $pgs = $this->applyProgressDeadline($settings_repo, $pgs, $acting_usr_id, false);
478  if (!$pgs->getSubnodes()) {
479  $leafs[] = $pgs->getPath();
480  }
481  return $pgs;
482  }
483  );
484 
485  foreach ($leafs as $path) {
486  $zipper = $this->updateParentProgresses($settings_repo, $zipper->toPath($path));
487  }
488  return $this->withProgressTree($zipper->getRoot());
489  }
490 
491  public function succeed(
492  ilStudyProgrammeSettingsRepository $settings_repo,
493  int $node_id,
494  int $triggering_obj_id
495  ): self {
496  $zipper = $this->getZipper($node_id)->modifyFocus(
497  function ($pgs) use ($settings_repo, $triggering_obj_id): ilPRGProgress {
498  $deadline = $pgs->getDeadline();
499  $format = ilPRGProgress::DATE_FORMAT;
500  $now = $this->getNow();
501  if ($pgs->isInProgress() &&
502  (is_null($deadline) || $deadline->format($format) >= $now->format($format))
503  ) {
504  $pgs = $pgs->succeed($now, $triggering_obj_id)
505  ->withCurrentAmountOfPoints($pgs->getAmountOfPoints());
506  $this->notifyScoreChange($pgs);
507 
508  $settings = $settings_repo->get($pgs->getNodeId());
509  $pgs = $this->updateProgressValidityFromSettings($settings->getValidityOfQualificationSettings(), $pgs);
510  }
511 
512  $this->notifyProgressSuccess($pgs);
513  return $pgs;
514  }
515  );
516 
517  $zipper = $this->updateParentProgresses($settings_repo, $zipper);
518  return $this->withProgressTree($zipper->getRoot());
519  }
520 
521 
523  ilStudyProgrammeSettingsRepository $settings_repo,
524  int $acting_usr_id
525  ): self {
526  $zipper = $this->getZipper($this->getRootId());
527  $touched = [];
528 
529  $deadline = $this->getNow();
530  $zipper = $zipper->modifyAll(
531  function ($pgs) use ($acting_usr_id, $deadline, &$touched): ilPRGProgress {
532  if (is_null($pgs->getDeadline())
533  || !$pgs->isInProgress()
534  || $pgs->getDeadline()->format(ilPRGProgress::DATE_FORMAT) >= $deadline->format(ilPRGProgress::DATE_FORMAT)
535  ) {
536  return $pgs;
537  }
538 
539  $touched[] = $pgs->getPath();
540  $this->notifyProgressRevertSuccess($pgs);
541  return $pgs->markFailed($this->getNow(), $acting_usr_id);
542  }
543  );
544 
545  foreach ($touched as $path) {
546  $zipper = $this->updateParentProgresses($settings_repo, $zipper->toPath($path));
547  }
548 
549  return $this->withProgressTree($zipper->getRoot());
550  }
551 
552  public function changeProgressDeadline(
553  ilStudyProgrammeSettingsRepository $settings_repo,
554  int $node_id,
555  int $acting_usr_id,
556  ilPRGMessageCollection $err_collection,
557  ?DateTimeImmutable $deadline
558  ): self {
559  $zipper = $this->getZipper($node_id)->modifyFocus(
560  function ($pgs) use ($err_collection, $acting_usr_id, $settings_repo, $deadline): ilPRGProgress {
561  if (!$pgs->isRelevant()) {
562  $err_collection->add(false, 'will_not_modify_irrelevant_progress', $this->getProgressIdString($pgs->getNodeId()));
563  return $pgs;
564  }
565  if ($pgs->isSuccessful()) {
566  $err_collection->add(false, 'will_not_modify_deadline_on_successful_progress', $this->getProgressIdString($pgs->getNodeId()));
567  return $pgs;
568  }
569 
570  $pgs = $pgs->withDeadline($deadline)
571  ->withLastChange($acting_usr_id, $this->getNow())
572  ->withIndividualModifications(true);
573  $pgs = $this->applyProgressDeadline($settings_repo, $pgs, $acting_usr_id);
574  if ($pgs->isInProgress()) {
575  $this->notifyDeadlineChange($pgs);
576  }
577  $err_collection->add(true, 'deadline_updated', $this->getProgressIdString($pgs->getNodeId()));
578  return $pgs;
579  }
580  );
581 
582  $zipper = $this->updateParentProgresses($settings_repo, $zipper);
583  return $this->withProgressTree($zipper->getRoot());
584  }
585 
586  public function changeProgressValidityDate(
587  ilStudyProgrammeSettingsRepository $settings_repo,
588  int $node_id,
589  int $acting_usr_id,
590  ilPRGMessageCollection $err_collection,
591  ?DateTimeImmutable $validity_date
592  ): self {
593  $zipper = $this->getZipper($node_id)->modifyFocus(
594  function ($pgs) use ($err_collection, $acting_usr_id, $settings_repo, $validity_date): ilPRGProgress {
595  if (!$pgs->isRelevant()) {
596  $err_collection->add(false, 'will_not_modify_irrelevant_progress', $this->getProgressIdString($pgs->getNodeId()));
597  return $pgs;
598  }
599  if (!$pgs->isSuccessful()) {
600  $err_collection->add(false, 'will_not_modify_validity_on_non_successful_progress', $this->getProgressIdString($pgs->getNodeId()));
601  return $pgs;
602  }
603 
604  $validity = is_null($validity_date) || $validity_date->format(ilPRGProgress::DATE_FORMAT) >= $this->getNow()->format(ilPRGProgress::DATE_FORMAT);
605  $pgs = $pgs->withValidityOfQualification($validity_date)
606  ->withLastChange($acting_usr_id, $this->getNow())
607  ->withIndividualModifications(true)
608  ->withInvalidated(!$validity);
609 
610  $this->notifyValidityChange($pgs);
611  $err_collection->add(true, 'validity_updated', $this->getProgressIdString($pgs->getNodeId()));
612  return $pgs;
613  }
614  );
615 
616  //$zipper = $this->updateParentProgresses($settings_repo, $zipper);
617  return $this->withProgressTree($zipper->getRoot());
618  }
619 
620  public function changeAmountOfPoints(
621  ilStudyProgrammeSettingsRepository $settings_repo,
622  int $node_id,
623  int $acting_usr_id,
624  ilPRGMessageCollection $err_collection,
625  int $points
626  ): self {
627  $zipper = $this->getZipper($node_id)->modifyFocus(
628  function ($pgs) use ($err_collection, $acting_usr_id, $settings_repo, $points): ilPRGProgress {
629  if (!$pgs->isRelevant()) {
630  $err_collection->add(false, 'will_not_modify_irrelevant_progress', $this->getProgressIdString($pgs->getNodeId()));
631  return $pgs;
632  }
633  if ($pgs->isSuccessful()) {
634  $err_collection->add(false, 'will_not_modify_successful_progress', $this->getProgressIdString($pgs->getNodeId()));
635  return $pgs;
636  }
637 
638  $pgs = $pgs->withAmountOfPoints($points)
639  ->withLastChange($acting_usr_id, $this->getNow())
640  ->withIndividualModifications(true);
641 
642  $err_collection->add(true, 'required_points_updated', $this->getProgressIdString($pgs->getNodeId()));
643  $pgs = $this->recalculateProgressStatus($settings_repo, $pgs);
644  return $pgs;
645  }
646  );
647 
648  $zipper = $this->updateParentProgresses($settings_repo, $zipper);
649  return $this->withProgressTree($zipper->getRoot());
650  }
651 
652  public function invalidate(
654  ): self {
655  $zipper = $this->getZipper($this->getRootId());
656  $touched = [];
657  $now = $this->getNow();
658 
659  $zipper = $zipper->modifyAll(
660  function ($pgs) use ($now, &$touched): ilPRGProgress {
661  if (!$pgs->isSuccessful() || $pgs->hasValidQualification($now)) {
662  return $pgs;
663  }
664  $touched[] = $pgs->getPath();
665  return $pgs->invalidate();
666  }
667  );
668 
669  foreach ($touched as $path) {
670  $zipper = $this->updateParentProgresses($settings_repo, $zipper->toPath($path));
671  }
672 
673  return $this->withProgressTree($zipper->getRoot());
674  }
675 }
unmarkAccredited(ilStudyProgrammeSettingsRepository $settings_repo, int $node_id, int $acting_usr_id, ilPRGMessageCollection $err_collection)
notifyProgressRevertSuccess(ilPRGProgress $pgs)
notifyScoreChange(ilPRGProgress $pgs)
markNotRelevant(ilStudyProgrammeSettingsRepository $settings_repo, int $node_id, int $acting_usr_id, ilPRGMessageCollection $err_collection)
resetProgressToSettings(ilStudyProgrammeSettingsRepository $settings_repo, ilPRGProgress $pgs, int $acting_usr_id)
markAccredited(ilStudyProgrammeSettingsRepository $settings_repo, ilStudyProgrammeEvents $events, int $node_id, int $acting_usr_id, ilPRGMessageCollection $err_collection)
withValidityOfQualification(?\DateTimeImmutable $date=null)
changeProgressDeadline(ilStudyProgrammeSettingsRepository $settings_repo, int $node_id, int $acting_usr_id, ilPRGMessageCollection $err_collection, ?DateTimeImmutable $deadline)
withStatus(int $status)
succeed(ilStudyProgrammeSettingsRepository $settings_repo, int $node_id, int $triggering_obj_id)
getRefIdFor(int $obj_id)
withDeadline(?\DateTimeImmutable $deadline=null)
recalculateProgressStatus(ilStudyProgrammeSettingsRepository $settings_repo, ilPRGProgress $progress)
notifyProgressSuccess(ilPRGProgress $pgs)
static _getAllReferences(int $id)
get all reference ids for object ID
withCurrentAmountOfPoints(int $points_cur)
get(int $obj_id)
Load settings belonging to a SP-Object.
updateProgressDeadlineFromSettings(ilStudyProgrammeDeadlineSettings $settings, ilPRGProgress $progress)
invalidate(ilStudyProgrammeSettingsRepository $settings_repo)
add(bool $success, string $message, string $record_identitifer)
markNotFailed(\DateTimeImmutable $date, int $acting_usr_id)
$path
Definition: ltiservices.php:29
updateParentProgresses(ilStudyProgrammeSettingsRepository $settings_repo, Zipper $zipper)
changeProgressValidityDate(ilStudyProgrammeSettingsRepository $settings_repo, int $node_id, int $acting_usr_id, ilPRGMessageCollection $err_collection, ?DateTimeImmutable $validity_date)
applyProgressDeadline(ilStudyProgrammeSettingsRepository $settings_repo, ilPRGProgress $progress, ?int $acting_usr_id=null, bool $recalculate=true)
getProgressIdString(int $node_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
withAmountOfPoints(int $points)
A Progress is the status of a user on a single node of an assignment; it is unique by assignment_id:u...
updateProgressRelevanceFromSettings(ilStudyProgrammeSettingsRepository $settings_repo, ilPRGProgress $pgs)
updatePlanFromRepository(ilStudyProgrammeSettingsRepository $settings_repo, int $acting_usr_id, ilPRGMessageCollection $err_collection)
Covers the persistence of settings belonging to a study programme (SP).
getZipper($node_id)
markFailed(\DateTimeImmutable $date, int $acting_usr_id)
resetProgresses(ilStudyProgrammeSettingsRepository $settings_repo, int $acting_usr_id)
changeAmountOfPoints(ilStudyProgrammeSettingsRepository $settings_repo, int $node_id, int $acting_usr_id, ilPRGMessageCollection $err_collection, int $points)
markProgressesFailedForExpiredDeadline(ilStudyProgrammeSettingsRepository $settings_repo, int $acting_usr_id)
notifyValidityChange(ilPRGProgress $pgs)
initAssignmentDates()
notifyDeadlineChange(ilPRGProgress $pgs)
updateProgressValidityFromSettings(ilStudyProgrammeValidityOfAchievedQualificationSettings $settings, ilPRGProgress $progress)
Holds information about multi-actions, mainly in context of member-assignemnts and status changes...
markRelevant(ilStudyProgrammeSettingsRepository $settings_repo, int $node_id, int $acting_usr_id, ilPRGMessageCollection $err_collection)