19 declare(strict_types=1);
37 $this->
setId(
"manage_indiv");
42 $this->
ctrl = $DIC[
'ilCtrl'];
43 $this->
lng = $DIC[
'lng'];
44 $this->db = $DIC[
'ilDB'];
46 $this->assignment = $ass;
54 $this->
setRowTemplate(
"tpl.individual_plan_table_row.html",
"Modules/StudyProgramme");
63 "prg_points_required",
74 foreach ($columns as $lng_var) {
86 $ui_factory = $DIC[
'ui.factory'];
87 $ui_renderer = $DIC[
'ui.renderer'];
88 $this->possible_image = $ui_renderer->render(
89 $ui_factory->symbol()->icon()->custom(
ilUtil::getImagePath(
"icon_ok.svg"),
'ok')->withSize(
'small')
91 $this->not_possible_image = $ui_renderer->render(
92 $ui_factory->symbol()->icon()->custom(
ilUtil::getImagePath(
"icon_not_ok.svg"),
'not ok')->withSize(
'small')
96 protected function fillRow(array $a_set): void
98 $this->tpl->setVariable(
"STATUS", $a_set[
'status_repr']);
102 $title .=
" (" . $this->
lng->txt(
"prg_status_draft") .
")";
104 $title .=
" (" . $this->
lng->txt(
"prg_status_outdated") .
")";
107 $this->tpl->setVariable(
"TITLE",
$title);
108 $this->tpl->setVariable(
"POINTS_CURRENT", $a_set[
"points_current"]);
109 $this->tpl->setVariable(
114 $a_set[
"progress_id"],
115 (
int) $a_set[
"status"]
117 $this->tpl->setVariable(
"POSSIBLE", $a_set[
"possible"] ? $this->possible_image : $this->not_possible_image);
118 $this->tpl->setVariable(
"CHANGED_BY", $a_set[
"changed_by"]);
119 $this->tpl->setVariable(
"COMPLETION_BY", $a_set[
"completion_by"]);
123 case self::SEL_COLUMN_ASSIGNMENT_DATE:
124 $this->tpl->setCurrentBlock(
"assignment_date");
125 $this->tpl->setVariable(
"ASSIGNMENT_DATE", $a_set[
"assignment_date"]);
126 $this->tpl->parseCurrentBlock(
"assignment_date");
128 case self::SEL_COLUMN_DEADLINE:
129 $this->tpl->setCurrentBlock(
"deadline");
130 $this->tpl->setVariable(
"DEADLINE", $this->
getDeadlineInput($a_set[
"progress_id"], $a_set[
"deadline"]));
131 $this->tpl->parseCurrentBlock(
"deadline");
133 case self::SEL_COLUMN_COMPLETION_DATE:
134 $this->tpl->setCurrentBlock(
"completion_date");
135 $this->tpl->setVariable(
"COMPLETION_DATE", $a_set[
"completion_date"]);
136 $this->tpl->parseCurrentBlock(
"completion_date");
146 $cols[self::SEL_COLUMN_ASSIGNMENT_DATE] = array(
147 "txt" => $this->
lng->txt(
"assignment_date"));
148 $cols[self::SEL_COLUMN_DEADLINE] = array(
149 "txt" => $this->
lng->txt(
"prg_deadline"));
150 $cols[self::SEL_COLUMN_COMPLETION_DATE] = array(
151 "txt" => $this->
lng->txt(
"completion_date"));
157 $prg_id = $this->assignment->getRootId();
160 $ass_id = $this->assignment->getId();
161 $usr_id = $this->assignment->getUserId();
164 $prg->applyToSubTreeNodes(
165 function ($node) use ($prg_id, $ass_id, $usr_id, &$plan, $prg) {
166 $progress = $this->assignment->getProgressForNode($node->getId());
167 $completion_by_id = $progress->getCompletionBy();
169 if ($completion_by_id) {
171 if (!$completion_by) {
173 if (
$type ===
"crsr") {
181 if ($progress->isSuccessful()) {
182 if ($progress->getCompletionBy()) {
190 "status" => $progress->getStatus(),
191 "status_repr" => $programme->statusToRepr($progress->getStatus()),
192 "title" => $node->getTitle(),
193 "points_current" => $progress->getCurrentAmountOfPoints(),
194 "points_required" => $progress->getAmountOfPoints(),
195 "possible" => $progress->isSuccessful() || $programme->canBeCompleted($progress) || !$progress->isRelevant(),
197 "completion_by" => $completion_by,
198 "progress_id" => $progress->getId(),
200 "program_status" => $programme->getStatus(),
201 "assignment_date" => $progress->getAssignmentDate()->format(
'd.m.Y'),
202 "deadline" => $progress->isSuccessful() ? null : $progress->getDeadline(),
203 "completion_date" => $progress->getCompletionDate() ? $progress->getCompletionDate()->format(
'd.m.Y') :
'' 215 $parent::MANUAL_STATUS_NONE =>
'-',
224 $options = array_filter(
226 static function ($o) use ($allowed, $parent):
bool {
227 return in_array($o, $allowed) || $o === $parent::MANUAL_STATUS_NONE;
232 $select =
new ilSelectInputGUI(
"", $parent::POST_VAR_STATUS .
"[$progress_id]");
233 $select->setOptions($options);
234 $select->setValue($parent::MANUAL_STATUS_NONE);
236 return $select->render();
242 return $points_required;
246 $input =
new ilNumberInputGUI(
"", $parent::POST_VAR_REQUIRED_POINTS .
"[$progress_id]");
247 $input->setValue($points_required);
249 return $input->render();
257 return $gui->render();
setTopCommands(bool $a_val)
static _lookupTitle(int $obj_id)
getDeadlineInput(string $progress_id, $deadline)
setEnableTitle(bool $a_enabletitle)
const SEL_COLUMN_DEADLINE
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
__construct(ilObjStudyProgrammeIndividualPlanGUI $parent_obj, ilPRGAssignment $ass)
getManualStatusSelect(string $progress_id, int $status)
getRequiredPointsInput(string $progress_id, int $status, string $points_required)
static lookupTitle(int $obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
string $not_possible_image
setExternalSorting(bool $a_val)
const SEL_COLUMN_COMPLETION_DATE
static getAllowedTargetStatusFor(int $status_from)
static _lookupTitle(int $obj_id)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setDefaultOrderDirection(string $a_defaultorderdirection)
const STATUS_NOT_RELEVANT
static getInstanceByObjId(int $obj_id)
const SEL_COLUMN_ASSIGNMENT_DATE
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
Assignments are relations of users to a PRG; They hold progress-information for (sub-)nodes of the PR...
static _lookupType(int $id, bool $reference=false)
determineOffsetAndOrder(bool $a_omit_offset=false)
setEnableHeader(bool $a_enableheader)
setMaxCount(int $a_max_count)
set max.
ilPRGAssignment $assignment
setExternalSegmentation(bool $a_val)
static _lookupLogin(int $a_user_id)