62 $this->assignment_object = null;
65 $this->sp_user_assignment_db = $sp_user_assignment_db;
71 $this->tpl->addCss(
"Modules/StudyProgramme/templates/css/ilStudyProgramme.css");
76 $this->parent_gui = $a_parent_gui;
81 $this->ref_id = $a_ref_id;
86 $cmd = $this->ctrl->getCmd();
95 case "updateFromCurrentPlan":
96 case "updateFromInput":
97 $cont = $this->$cmd();
100 throw new ilException(
"ilObjStudyProgrammeMembersGUI: " .
101 "Command not supported: $cmd");
104 $this->tpl->setContent($cont);
109 if (!is_numeric(
$_GET[
"ass_id"])) {
110 throw new ilException(
"Expected integer 'ass_id'");
112 return (
int)
$_GET[
"ass_id"];
117 if ($this->assignment_object === null) {
119 $this->assignment_object = $this->sp_user_assignment_db->getInstanceById((
int) $id);
121 return $this->assignment_object;
126 require_once(
"Modules/StudyProgramme/classes/class.ilStudyProgrammeIndividualPlanProgressListGUI.php");
129 $this->parent_gui->getStudyProgramme()->getAccessControlByOrguPositionsGlobal()
130 && !in_array($progress->getUserId(), $this->parent_gui->viewIndividualPlan())
133 "may not access individua plan of user" 137 $gui->setOnlyRelevant(
true);
139 $tpl =
new ilTemplate(
"tpl.individual_plan_tree_frame.html",
false,
false,
"Modules/StudyProgramme");
140 $tpl->setVariable(
"CONTENT", $gui->getHTML());
147 require_once(
"Modules/StudyProgramme/classes/class.ilStudyProgrammeIndividualPlanTableGUI.php");
150 $this->parent_gui->getStudyProgramme()->getAccessControlByOrguPositionsGlobal()
151 && !in_array($ass->getUserId(), $this->parent_gui->editIndividualPlan())
154 "may not access individua plan of user" 157 $this->ctrl->setParameter($this,
"ass_id", $ass->getId());
158 $this->ctrl->setParameter($this,
"cmd",
"manage");
160 $frame = $this->
buildFrame(
"manage", $table->getHTML());
161 $this->ctrl->setParameter($this,
"ass_id", null);
169 $this->parent_gui->getStudyProgramme()->getAccessControlByOrguPositionsGlobal()
170 && !in_array($ass->getUserId(), $this->parent_gui->editIndividualPlan())
173 "may not access individual plan of user" 176 $ass->updateFromProgram();
177 $ass->updateValidityFromProgram();
178 $ass->updateDeadlineFromProgram();
180 $this->ctrl->setParameter($this,
"ass_id", $ass->getId());
182 $this->ctrl->redirect($this,
"manage");
187 require_once(
"Modules/StudyProgramme/classes/class.ilStudyProgrammeUserProgress.php");
197 $this->ctrl->redirect($this,
"manage");
204 foreach ($status_updates as $prgrs_id => $status) {
205 $prgrs = $this->sp_user_progress_db->getInstanceById($prgrs_id);
206 $cur_status = $prgrs->getStatus();
208 $this->parent_gui->getStudyProgramme()->getAccessControlByOrguPositionsGlobal()
209 && !in_array($prgrs->getUserId(), $this->parent_gui->editIndividualPlan())
214 $prgrs->unmarkAccredited($this->
user->getId());
217 $prgrs->markRelevant($this->
user->getId());
220 $prgrs->markNotRelevant($this->
user->getId());
223 $prgrs->markAccredited($this->
user->getId());
235 if ($deadline !== null && $deadline->format(
'Y-m-d') < date(
"Y-m-d")) {
236 $prgrs->markFailed($this->
user->getId());
239 if ($deadline === null || $deadline->format(
'Y-m-d') > date(
"Y-m-d")) {
240 $prgrs->markNotFailed((
int) $this->
user->getId());
268 $prgrs = $this->sp_user_progress_db->getInstanceById($prgrs_id);
269 $cur_status = $prgrs->getStatus();
274 if ($required_points < 0) {
275 $required_points = 0;
278 if ($required_points == $prgrs->getAmountOfPoints()) {
282 $prgrs->setRequiredAmountOfPoints($required_points, $this->
user->getId());
297 throw new ilException(
"Expected array $post_var in POST");
300 $post_value =
$_POST[$post_var];
301 $deadline = $post_value[$prgrs_id];
303 if ($deadline ==
"") {
306 return DateTime::createFromFormat(
'd.m.Y', $deadline);
317 if (array_key_exists($post_var,
$_POST)) {
325 require_once(
"Services/Utilities/classes/class.ilUtil.php");
326 ilUtil::sendSuccess($this->lng->txt(
"prg_$a_lng_var"),
true);
332 if (!array_key_exists($post_var,
$_POST)) {
333 throw new ilException(
"Expected array $post_var in POST");
341 if (!array_key_exists($post_var,
$_POST)) {
342 throw new ilException(
"Expected array $post_var in POST");
345 $post_value =
$_POST[$post_var];
346 return (
int) $post_value[$prgrs_id];
352 $tpl =
new ilTemplate(
"tpl.indivdual_plan_frame.html",
true,
true,
"Modules/StudyProgramme");
354 $ref_id = $ass->getStudyProgramme()->getRefId();
355 $user_id = $ass->getUserId();
363 if ($this->parent_gui->getStudyProgramme()->getAccessControlByOrguPositionsGlobal()) {
364 if (in_array($user_id, $this->parent_gui->viewIndividualPlan())) {
367 if (in_array($user_id, $this->parent_gui->editIndividualPlan())) {
372 $tabs = array_unique($tabs);
373 foreach ($tabs as $_tab) {
374 $tpl->setCurrentBlock(
"sub_tab");
375 $tpl->setVariable(
"CLASS", $_tab ==
$tab ?
"active" :
"");
377 $tpl->setVariable(
"TITLE", $this->lng->txt(
"prg_$_tab"));
378 $tpl->parseCurrentBlock();
380 $tpl->setVariable(
"CONTENT", $content);
387 $this->ctrl->setParameter($this,
"ass_id", $a_ass_id);
388 $lnk = $this->ctrl->getLinkTarget($this, $a_tab);
389 $this->ctrl->setParameter($this,
"ass_id", null);
396 $a_table->
addCommandButton(
"updateFromCurrentPlan", $this->lng->txt(
"prg_update_from_current_plan"));
409 return self::POST_VAR_STATUS;
414 return self::POST_VAR_REQUIRED_POINTS;
419 return self::POST_VAR_DEADLINE;
424 return self::MANUAL_STATUS_NONE;
429 return self::MANUAL_STATUS_NOT_RELEVANT;
434 return self::MANUAL_STATUS_ACCREDITED;
439 $cl =
"ilObjStudyProgrammeIndividualPlanGUI";
440 $this->ctrl->setParameterByClass($cl,
"ass_id", $a_ass_id);
441 $link = $this->ctrl->getLinkTargetByClass($cl,
"view");
442 $this->ctrl->setParameterByClass($cl,
"ass_id", null);
setDeadline(DateTime $deadline=null)
Set the deadline of this node.
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
updateDeadline(ilStudyProgrammeUserProgress $prgrs)
Updates current deadline.
This class provides processing control methods.
static _lookupFullname($a_user_id)
Lookup Full Name.
updateProgress(int $user_id)
Updates current progress.
getLinkTargetForSubTab($a_tab, $a_ass_id)
Storage implementation for ilStudyProgrammeUserProgress.
const MANUAL_STATUS_NOT_RELEVANT
getRequiredPointsPostVarTitle()
getId()
Get the id of the progress.
Class ilObjStudyProgrammeIndividualPlanGUI.
Class ilStudyProgrammeIndividualPlanTableGUI.
getDeadlineFromForm($prgrs_id)
Get the deadline from form.
getRequiredPointsUpdates($prgrs_id)
getManualStatusNotRelevant()
checkAccess($a_permission, $a_cmd, $a_ref_id, $a_type="", $a_obj_id="", $a_tree_id="")
check access for an object (provide $a_type and $a_obj_id if available for better performance)(option...
const POST_VAR_REQUIRED_POINTS
setParentGUI($a_parent_gui)
const STATUS_NOT_RELEVANT
postContainDeadline()
Checks whether $_POST contains deadline.
getManualStatusAccredited()
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
showSuccessMessage($a_lng_var)
appendIndividualPlanActions(ilTable2GUI $a_table)
const MANUAL_STATUS_ACCREDITED
getLinkTargetView($a_ass_id)
loadLanguageModule($a_module)
__construct(\ilGlobalTemplateInterface $tpl, \ilCtrl $ilCtrl, \ilLanguage $lng, \ilObjUser $ilUser, \ilAccess $ilAccess, ilStudyProgrammeUserProgressDB $sp_user_progress_db, ilStudyProgrammeUserAssignmentDB $sp_user_assignment_db)
Class ilStudyProgrammeExpandableProgressListGUI.
buildFrame($tab, $content)
getDeadlinePostVarTitle()
getManualStatusPostVarTitle()
updateRequiredPoints($prgrs_id)
Represents the progress of a user at one node of a study programme.