17 $this->progress_repository = $progress_repository;
18 $this->assignment_repository = $assignment_repository;
20 $this->events = $events;
32 public function getInstance($a_assignment_id, $a_program_id, $a_user_id)
34 $prgrs = $this->progress_repository->readByIds($a_program_id, $a_assignment_id, $a_user_id);
37 $this->progress_repository,
38 $this->assignment_repository,
51 $prgrs = $this->progress_repository->read($a_prgrs_id);
52 if ($prgrs === null) {
53 throw new ilException(
"Unknown progress id $a_prgrs_id.");
57 $this->progress_repository,
58 $this->assignment_repository,
74 $this->progress_repository->readByPrgIdAndUserId($a_program_id, $a_user_id)
91 $progress = $this->progress_repository->readByPrgIdAndAssignmentId($a_program_id, $a_assignment_id);
93 require_once(
"Modules/StudyProgramme/classes/exceptions/class.ilStudyProgrammeNoProgressForAssignmentException.php");
95 .
"Assignment '$a_assignment_id' does not belong to program " 100 $this->progress_repository,
101 $this->assignment_repository,
118 $progresses = $this->progress_repository->readByAssignmentId($a_assignment_id);
119 if (count($progresses) == 0) {
120 require_once(
"Modules/StudyProgramme/classes/exceptions/class.ilStudyProgrammeNoProgressForAssignmentException.php");
122 .
"Can't find progresses for assignment '$a_assignment_id'.");
135 return array_values($this->
getObjectsByModels($this->progress_repository->readByPrgId($a_program_id)));
145 return $this->
getObjectsByModels($this->progress_repository->readExpiredSuccessfull());
158 return $this->
getObjectsByModels($this->progress_repository->readRiskyToFailInstances());
163 return array_map(
function ($dat) {
166 $this->progress_repository,
167 $this->assignment_repository,
179 $lng->loadLanguageModule(
"prg");
182 return $lng->txt(
"prg_status_in_progress");
185 return $lng->txt(
"prg_status_completed");
188 return $lng->txt(
"prg_status_accredited");
191 return $lng->txt(
"prg_status_not_relevant");
194 return $lng->txt(
"prg_status_failed");
196 throw new ilException(
"Unknown status: '$a_status'");
201 $this->progress_repository->reminderSendFor($assignment_id);
statusToRepr($a_status)
Get a user readable representation of a status.
Storage implementation for ilStudyProgrammeUserProgress.
reminderSendFor(int $assignment_id)
Exception is thrown when a progress for some programme node and assignment is missing.
getInstanceById($a_prgrs_id)
Get an instance by progress id.
getInstancesForAssignment($a_assignment_id)
Get the instance for an assignment.
const STATUS_NOT_RELEVANT
getExpiredSuccessfulInstances()
Get all expired and successful progresses.
getObjectsByModels(array $models)
Covers the persistence of settings belonging to a study programme (SP).
getRiskyToFailInstances()
__construct(ilStudyProgrammeProgressRepository $progress_repository, ilStudyProgrammeAssignmentRepository $assignment_repository, ilLanguage $lng, ilStudyProgrammeEvents $events)
getInstancesForUser($a_program_id, $a_user_id)
Get the instances that user has on program.
getInstance($a_assignment_id, $a_program_id, $a_user_id)
Get an instance.
getInstanceForAssignment($a_program_id, $a_assignment_id)
Get the instance for the assignment on the program.
getInstancesForProgram($a_program_id)
Get the instances for a program node.
Represents the progress of a user at one node of a study programme.