1 <?php declare(strict_types = 1);
39 self::STATUS_IN_PROGRESS,
40 self::STATUS_COMPLETED,
41 self::STATUS_ACCREDITED,
42 self::STATUS_NOT_RELEVANT,
200 $clone = clone $this;
215 $clone = clone $this;
230 $clone = clone $this;
251 throw new ilException(
"ilStudyProgrammeProgress::setAmountOfPoints: " 252 .
"Expected a number >= 0 as argument, got '$points'");
255 $clone = clone $this;
271 if ($points_cur < 0) {
272 throw new ilException(
"ilStudyProgrammeProgress::setAmountOfPoints: " 273 .
"Expected a number >= 0 as argument, got '$points'");
275 $clone = clone $this;
296 if (!in_array($status, self::$STATUS)) {
297 throw new ilException(
"No such status: " .
"'$status'");
302 "Changing progress with status " . $this->
getStatus()
303 .
" cannot change to status " .
"'$status'" 304 .
' (progress_id: ' . $this->
getId() .
')' 308 $clone = clone $this;
315 return is_null($this->status) ||
316 $this->status == $new_status ||
317 in_array($new_status, self::getAllowedTargetStatusFor($this->status));
322 switch ($status_from) {
323 case self::STATUS_IN_PROGRESS:
325 self::STATUS_ACCREDITED,
326 self::STATUS_COMPLETED,
328 self::STATUS_NOT_RELEVANT
330 case self::STATUS_ACCREDITED:
332 self::STATUS_IN_PROGRESS,
333 self::STATUS_COMPLETED,
335 self::STATUS_NOT_RELEVANT
337 case self::STATUS_COMPLETED:
339 self::STATUS_IN_PROGRESS
341 case self::STATUS_FAILED:
343 self::STATUS_IN_PROGRESS,
344 self::STATUS_COMPLETED,
345 self::STATUS_NOT_RELEVANT
347 case self::STATUS_NOT_RELEVANT:
349 self::STATUS_IN_PROGRESS
368 if ($this->last_change) {
369 return DateTimeImmutable::createFromFormat(self::DATE_TIME_FORMAT, $this->last_change);
381 $new_date = $timestamp->format(self::DATE_TIME_FORMAT);
384 "Cannot set last change to an earlier date:" 385 .
"\ncurrent: " . $this->
getLastChange()->format(self::DATE_TIME_FORMAT)
386 .
"\nnew: " . $new_date,
390 $clone = clone $this;
391 $clone->last_change = $new_date;
403 $clone = clone $this;
423 int $usr_or_obj_id = null,
426 $clone = clone $this;
427 $clone->completion_by = $usr_or_obj_id;
439 $clone = clone $this;
451 $clone = clone $this;
452 $clone->vq_date = $date;
463 $clone = clone $this;
464 $clone->is_individual = $individual;
473 self::STATUS_COMPLETED,
474 self::STATUS_ACCREDITED
496 return $this->
getStatus() != self::STATUS_NOT_RELEVANT;
501 return $this->
getStatus() == self::STATUS_FAILED;
506 return $this->
getStatus() == self::STATUS_ACCREDITED;
511 return $this->
getStatus() == self::STATUS_IN_PROGRESS;
516 if (!$this->vq_date || $this->vq_date->format(
'Y-m-d') > date(
'Y-m-d')) {
517 throw new ilException(
"may not invalidate non-expired progress");
519 $clone = clone $this;
520 $clone->invalidated =
true;
547 ->withCompletion($acting_usr_id, $date)
548 ->withLastChange($acting_usr_id, $date);
555 ->withCompletion(null, null)
556 ->withValidityOfQualification(null)
557 ->withLastChange($acting_usr_id, $date);
564 ->withCompletion(null, null)
565 ->withLastChange($acting_usr_id, $date);
572 ->withCompletion(null, null)
573 ->withLastChange($acting_usr_id, $date);
580 ->withCompletion($triggering_obj_id, $date)
581 ->withLastChange($triggering_obj_id, $date);
588 ->withLastChange($acting_usr_id, $date)
589 ->withValidityOfQualification(null)
591 ->withIndividualModifications(
true);
598 ->withCompletion(null, null)
599 ->withLastChange($acting_usr_id, $date)
600 ->withIndividualModifications(
true);
withIndividualModifications(bool $individual)
markFailed(DateTimeImmutable $date, int $acting_usr_id)
getAssignmentId()
Get the assignment this progress belongs to.
isTransitionAllowedTo(int $new_status)
getLastChangeBy()
Get the id of the user/object who/which invoked the last change on this assignment.
markNotFailed(DateTimeImmutable $date, int $acting_usr_id)
getCurrentAmountOfPoints()
markNotRelevant(DateTimeImmutable $date, int $acting_usr_id)
static getAllowedTargetStatusFor(int $status_from)
getCompletionBy()
Get the id of object or user that lead to the successful completion of this node. ...
withCurrentAmountOfPoints(int $points_cur)
Set the amount of points the user currently has achieved on this node.
withLastChange(int $last_change_by, DateTimeImmutable $timestamp)
hasValidQualification(DateTimeImmutable $now)
There may be no qualification at all (since the PRG is not passed), or the qualification is valid or ...
hasIndividualModifications()
getId()
Get the id of the progress.
getStatus()
Get the status the user has on this node.
getAmountOfPoints()
Get the amount of points the user needs to achieve on the subnodes of this node.
const STATUS_NOT_RELEVANT
getUserId()
Get the id of the user this progress is for.
withCompletion(int $usr_or_obj_id=null, DateTimeImmutable $completion_date=null)
Class ilStudyProgrammeProgress.
succeed(DateTimeImmutable $date, int $triggering_obj_id)
foreach($mandatory_scripts as $file) $timestamp
const DATE_FORMAT_ENDOFDAY
withValidityOfQualification(DateTimeImmutable $date=null)
withStatus(int $status)
Set the status of this node.
withAssignmentId(int $assignment_id)
unmarkAccredited(DateTimeImmutable $date, int $acting_usr_id)
withAssignmentDate(DateTimeImmutable $assignment_date)
markRelevant(DateTimeImmutable $date, int $acting_usr_id)
getNodeId()
Get the obj_id of the program node this progress belongs to.
withAmountOfPoints(int $points)
Throws when amount of points is smaller then zero.
markAccredited(DateTimeImmutable $date, int $acting_usr_id)
getValidityOfQualification()
withDeadline(DateTimeImmutable $deadline=null)