19 declare(strict_types=1);
91 ILIAS\
HTTP\Wrapper\WrapperFactory $http_wrapper,
95 GuzzleHttp\Psr7\ServerRequest $request
98 $this->
ctrl = $ilCtrl;
114 $this->
object = null;
115 $this->permissions = null;
118 $this->
toolbar->setPreventDoubleSubmission(
true);
123 $this->parent_gui = $a_parent_gui;
135 $cmd = $this->
ctrl->getCmd();
136 $next_class = $this->
ctrl->getNextClass($this);
138 if ($cmd ===
"" || $cmd === null) {
142 switch ($next_class) {
143 case "ilstudyprogrammerepositorysearchgui":
144 $this->repository_search_gui->setCallback($this,
"addUsers");
145 $this->
ctrl->setReturn($this,
"view");
146 $this->
ctrl->forwardCommand($this->repository_search_gui);
148 case "ilobjstudyprogrammeindividualplangui":
149 $this->individual_plan_gui->setParentGUI($this);
150 $this->individual_plan_gui->setRefId($this->ref_id);
151 $this->
ctrl->forwardCommand($this->individual_plan_gui);
153 case "ilstudyprogrammemailmembersearchgui":
154 $this->
tabs->clearTargets();
155 $this->
tabs->setBackTarget(
156 $this->
lng->txt(
'btn_back'),
160 $mail_search =
$dic[
'ilStudyProgrammeMailMemberSearchGUI'];
162 $mail_search->setBackTarget(
163 $this->
ctrl->getLinkTarget($this, $this->getDefaultCommand())
165 $this->
ctrl->forwardCommand($mail_search);
167 case "ilstudyprogrammechangeexpiredategui":
168 $this->
tabs->clearTargets();
169 $this->
tabs->setBackTarget(
170 $this->
lng->txt(
'btn_back'),
174 $gui =
$dic[
'ilStudyProgrammeChangeExpireDateGUI'];
175 $gui->setRefId($this->ref_id);
177 $this->
ctrl->forwardCommand($gui);
179 case "ilstudyprogrammechangedeadlinegui":
180 $this->
tabs->clearTargets();
181 $this->
tabs->setBackTarget(
182 $this->
lng->txt(
'btn_back'),
186 $gui =
$dic[
'ilStudyProgrammeChangeDeadlineGUI'];
187 $gui->setRefId($this->ref_id);
189 $this->
ctrl->forwardCommand($gui);
194 case "markAccredited":
195 case "markAccreditedMulti":
196 case "unmarkAccredited":
197 case "unmarkAccreditedMulti":
199 case "removeUserMulti":
200 case "markNotRelevantMulti":
202 case "markRelevantMulti":
203 case "updateFromCurrentPlan":
204 case "updateFromCurrentPlanMulti":
205 case "acknowledgeCourses":
206 case "acknowledgeCoursesMulti":
209 case "changeDeadline":
210 case "changeDeadlineMulti":
211 case "changeExpireDate":
212 case "changeExpireDateMulti":
213 $cont = $this->$cmd();
214 $this->tpl->setContent($cont);
216 case "confirmedRemoveUsers":
219 case "confirmedUpdateFromCurrentPlan":
222 case "confirmedAcknowledgeCourses":
225 case "confirmedAcknowledgeAllCourses":
229 case "mailUserMulti":
232 case "markNotRelevant":
237 throw new ilException(
"ilObjStudyProgrammeMembersGUI: Command not supported: $cmd");
242 "ilObjStudyProgrammeMembersGUI: Can't forward to next class $next_class" 249 return self::DEFAULT_CMD;
254 return $this->assignment_db->getAllForNodeIsContained($this->
object->getId());
269 $dic[
'ilStudyProgrammeUserTable'],
270 $dic[
'filter.assignment'],
283 if ($this->http_wrapper->post()->has(self::F_COMMAND_OPTION_ALL)) {
284 $pgs_ids = $this->http_wrapper->post()->retrieve(
285 self::F_ALL_PROGRESS_IDS,
286 $this->
refinery->custom()->transformation(
287 fn ($ids) => explode(
',', $ids)
291 $pgs_ids = $this->http_wrapper->post()->retrieve(
292 self::F_SELECTED_PROGRESS_IDS,
293 $this->
refinery->custom()->transformation(fn ($ids) => $ids)
296 if ($pgs_ids === null) {
298 $this->
ctrl->redirect($this,
"view");
300 if (is_string($pgs_ids)) {
301 $pgs_ids = [$pgs_ids];
305 foreach ($pgs_ids as $pgs_id) {
313 $prgrs_ids =
$_GET[
'prgrs_ids'];
315 if (!is_null($prgrs_ids)) {
316 foreach (explode(
',', $prgrs_ids) as
$id) {
325 if (!
$_GET[
"prgrs_id"]) {
334 protected function view(): string
342 $this->tpl->setOnScreenMessage(
"info", $this->
lng->txt(
"prg_no_members_not_active"));
345 return $table->getHTML();
351 $table->resetOffset();
352 $table->writeFilterToSession();
353 $this->
ctrl->redirect($this,
"view");
359 $table->resetOffset();
360 $table->resetFilter();
361 $this->
ctrl->redirect($this,
"view");
376 foreach ($user_ids as $user_id) {
377 $ass = $prg->assignUser((
int) $user_id);
378 $assignments[] = $ass;
379 if($prg->getCompletedCourses((
int) $user_id)) {
380 $with_courses[] = $ass;
384 if (count($assignments) === 1) {
385 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
"prg_added_member"),
true);
387 if (count($assignments) > 1) {
388 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
"prg_added_members"),
true);
392 $this->tpl->setContent(
393 $this->ui_renderer->render(
394 $this->viewCompletedCourses($assignments)
400 $this->
ctrl->redirect($this,
"view");
410 $completed_courses = [];
412 foreach ($assignments as $ass) {
413 $ass_ids[] = $ass->getId();
414 $completed_crss = $prg->getCompletedCourses($ass->getUserId());
418 $ass->getUserInformation()->getFullname(),
422 foreach($completed_crss as $opt) {
423 $options[implode(
';', [$ass->getId(), $opt[
'prg_obj_id'],$opt[
'crs_id']])] = $opt[
'title'];
426 $completed_courses[] = $this->ui_factory->input()->field()->multiselect($label, $options);
429 $form_action = $this->
ctrl->getFormAction($this,
'confirmedAcknowledgeCourses')
430 .
'&ass_ids=' . implode(
',', $ass_ids);
432 $form = $this->ui_factory->input()->container()->form()->standard(
435 $this->ui_factory->input()->field()->section(
437 $this->
lng->txt(
"prg_acknowledge_completed_courses")
440 )->withAdditionalTransformation(
441 $this->
refinery->custom()->transformation(
443 $values = array_merge(...array_filter(array_shift($values)));
445 fn ($entry) => explode(
';', $entry),
453 $this->ui_factory->link()->standard(
454 $this->
lng->txt(
'prg_cancel_acknowledge_completed_courses'),
455 $this->
ctrl->getLinkTarget($this, self::DEFAULT_CMD)
459 $this->ui_factory->link()->standard(
460 $this->
lng->txt(
'prg_acknowledge_all_completed_courses'),
461 $this->
ctrl->getLinkTarget($this,
'confirmedAcknowledgeAllCourses')
462 .
'&ass_ids=' . implode(
',', $ass_ids)
474 $to_add = $this->permissions->filterUserIds(
479 $cnt_not_added = count($users) - count($to_add);
480 if ($cnt_not_added > 0) {
481 $this->tpl->setOnScreenMessage(
484 $this->
lng->txt(
'could_not_add_users_no_permissons'),
499 $this->
ctrl->redirect($this,
"view");
506 foreach ($prgrs_ids as
$key => $prgrs_id) {
510 $this->
ctrl->redirect($this,
"view");
517 $msgs->
add(
false,
'No permission to edit progress of user', (
string) $prgrs_id);
530 $this->
ctrl->redirect($this,
"view");
537 foreach ($prgrs_ids as
$key => $prgrs_id) {
541 $this->
ctrl->redirect($this,
"view");
548 $msgs->
add(
false,
'No permission to edit progress of user', (
string) $prgrs_id);
561 $msgs->add(
false,
"No permission to edit progress of user", (
string) $prgrs_id);
563 $programme->markRelevant($prgrs_id->getAssignmentId(), $this->
user->getId(), $msgs);
566 $this->
ctrl->redirect($this,
"view");
574 foreach ($prgrs_ids as
$key => $prgrs_id) {
576 $msgs->add(
false,
'No permission to edit progress of user', (
string) $prgrs_id);
578 $programme->markRelevant($prgrs_id->getAssignmentId(), $this->
user->getId(), $msgs);
582 $this->
ctrl->redirect($this,
"view");
591 $msgs->add(
false,
'No permission to edit progress of user', (
string) $prgrs_id);
593 $programme->markNotRelevant($prgrs_id->getAssignmentId(), $this->
user->getId(), $msgs);
596 $this->
ctrl->redirect($this,
"view");
604 foreach ($prgrs_ids as
$key => $prgrs_id) {
606 $msgs->add(
false,
'No permission to edit progress of user', (
string) $prgrs_id);
608 $programme->markNotRelevant($prgrs_id->getAssignmentId(), $this->
user->getId(), $msgs);
612 $this->
ctrl->redirect($this,
"view");
617 $this->confirmation_gui->setFormAction($this->
ctrl->getFormAction($this,
'confirmUpdateFromCurrentPlan'));
618 $this->confirmation_gui->setHeaderText($this->
lng->txt(
'header_update_current_plan'));
619 $this->confirmation_gui->setConfirm($this->
lng->txt(
'confirm'),
'confirmedUpdateFromCurrentPlan');
620 $this->confirmation_gui->setCancel($this->
lng->txt(
'cancel'),
'view');
624 $this->confirmation_gui->addItem(
625 self::F_SELECTED_PROGRESS_ID,
629 return $this->confirmation_gui->getHTML();
634 $this->confirmation_gui->setFormAction($this->
ctrl->getFormAction($this,
'confirmUpdateFromCurrentPlan'));
635 $this->confirmation_gui->setHeaderText($this->
lng->txt(
'header_update_current_plan'));
636 $this->confirmation_gui->setConfirm($this->
lng->txt(
'confirm'),
'confirmedUpdateFromCurrentPlan');
637 $this->confirmation_gui->setCancel($this->
lng->txt(
'cancel'),
'view');
641 $this->confirmation_gui->addItem(
642 self::F_SELECTED_PROGRESS_IDS .
'[]',
643 (
string) $progress_id,
647 return $this->confirmation_gui->getHTML();
654 foreach ($pgs_ids as $idx => $pgs_id) {
656 $msgs->add(
false,
'no_permission_to_update_plan_of_user', (
string) $pgs_id);
659 $msgs->add(
true,
'', (
string) $pgs_id);
662 $this->
object->updatePlanFromRepository(
663 $pgs_id->getAssignmentId(),
664 $this->
user->getId(),
669 $this->
ctrl->redirect($this,
"view");
676 $this->assignment_db->get($progress_id->getAssignmentId())
678 return $this->ui_renderer->render(
687 $assignments[] = $this->assignment_db->get($progress_id->getAssignmentId());
689 return $this->ui_renderer->render(
699 $ass_ids = $this->http_wrapper->query()->retrieve(
701 $this->
refinery->custom()->transformation(fn ($ids) => explode(
',', $ids))
704 $assignments = array_map(
705 fn ($ass_id) => $this->assignment_db->get((
int) $ass_id),
709 $assignments = array_filter(
711 fn ($ass) => $ass->getRootId() === $prg->getId()
722 foreach ($assignments as $ass) {
723 $ass_ids[] = $ass->getId();
724 $completed_crss = $prg->getCompletedCourses($ass->getUserId());
726 foreach($completed_crss as $opt) {
727 $nodes[] = [$opt[
'prg_obj_id'], $opt[
'crsr_id']];
729 $prg->acknowledgeCourses(
736 $this->
ctrl->redirect($this,
"view");
744 $data = $form->getData();
750 foreach (
$data as $ack) {
751 [$assignment_id, $node_obj_id, $course_obj_id] = $ack;
752 if(! array_key_exists($assignment_id, $acknowledge)) {
753 $acknowledge[$assignment_id] = [];
755 $acknowledge[$assignment_id][] = [(
int) $node_obj_id, (
int) $course_obj_id];
757 foreach ($acknowledge as $ass_id => $nodes) {
758 $this->
object->acknowledgeCourses(
766 $this->
ctrl->redirect($this,
"view");
771 $this->
ctrl->setParameterByClass(
772 'ilStudyProgrammeChangeDeadlineGUI',
777 $link = $this->
ctrl->getLinkTargetByClass(
778 'ilStudyProgrammeChangeDeadlineGUI',
782 $this->
ctrl->clearParameterByClass(
'ilStudyProgrammeChangeDeadlineGUI',
'prgrs_ids');
783 $this->
ctrl->redirectToURL($link);
788 $this->
ctrl->setParameterByClass(
789 'ilStudyProgrammeChangeDeadlineGUI',
794 $link = $this->
ctrl->getLinkTargetByClass(
795 'ilStudyProgrammeChangeDeadlineGUI',
799 $this->
ctrl->clearParameterByClass(
'ilStudyProgrammeChangeDeadlineGUI',
'prgrs_ids');
800 $this->
ctrl->redirectToURL($link);
805 $this->
ctrl->setParameterByClass(
806 'ilStudyProgrammeChangeExpireDateGUI',
811 $link = $this->
ctrl->getLinkTargetByClass(
812 'ilStudyProgrammeChangeExpireDateGUI',
813 'showExpireDateConfig' 816 $this->
ctrl->clearParameterByClass(
'ilStudyProgrammeChangeExpireDateGUI',
'prgrs_ids');
817 $this->
ctrl->redirectToURL($link);
822 $this->
ctrl->setParameterByClass(
823 'ilStudyProgrammeChangeExpireDateGUI',
828 $link = $this->
ctrl->getLinkTargetByClass(
829 'ilStudyProgrammeChangeExpireDateGUI',
830 'showExpireDateConfig' 833 $this->
ctrl->clearParameterByClass(
'ilStudyProgrammeChangeExpireDateGUI',
'prgrs_ids');
834 $this->
ctrl->redirectToURL($link);
851 $this->confirmation_gui->setFormAction($this->
ctrl->getFormAction($this));
852 $this->confirmation_gui->setHeaderText($this->
lng->txt(
'confirm_to_remove_selected_assignments'));
853 $this->confirmation_gui->setConfirm($this->
lng->txt(
'prg_remove_user'),
'confirmedRemoveUsers');
854 $this->confirmation_gui->setCancel($this->
lng->txt(
'cancel'),
'view');
856 foreach ($progress_ids as $progress_id) {
858 $this->confirmation_gui->addItem(
859 self::F_SELECTED_PROGRESS_IDS .
'[]',
860 (
string) $progress_id,
864 return $this->confirmation_gui->getHTML();
870 $not_removed = array();
871 foreach ($pgs_ids as $idx => $pgs_id) {
875 $not_removed[] = $pgs_id;
878 if (count($not_removed) === count($pgs_ids)) {
880 } elseif (count($not_removed) > 0) {
885 $this->
ctrl->redirect($this,
"view");
898 'No permission to manage membership of user' 904 if ($prg_ref_id !== $this->ref_id) {
905 throw new ilException(
"Can only remove users from the node they where assigned to.");
908 $prg->removeAssignment($ass);
916 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
"prg_$lng_var"),
true);
924 $this->tpl->setOnScreenMessage(
"info", $this->
lng->txt(
"prg_$lng_var"),
true);
933 "auto_complete_name" => $this->
lng->txt(
"user"),
934 "submit_name" => $this->
lng->txt(
"add"),
947 $this->
lng->txt(
'mail_assignments'),
948 $this->
ctrl->getLinkTargetByClass(
949 'ilStudyProgrammeMailMemberSearchGUI',
950 'showSelectableUsers' 961 if ($ref_id === null) {
973 case self::ACTION_MARK_ACCREDITED:
974 $target_name =
"markAccredited";
976 case self::ACTION_UNMARK_ACCREDITED:
977 $target_name =
"unmarkAccredited";
979 case self::ACTION_SHOW_INDIVIDUAL_PLAN:
980 return $this->individual_plan_gui->getLinkTargetView($ass_id);
981 case self::ACTION_REMOVE_USER:
982 $target_name =
"removeUser";
984 case self::ACTION_UNMARK_RELEVANT:
985 $target_name =
"markNotRelevant";
987 case self::ACTION_MARK_RELEVANT:
988 $target_name =
"markRelevant";
990 case self::ACTION_UPDATE_FROM_CURRENT_PLAN:
991 $target_name =
"updateFromCurrentPlan";
993 case self::ACTION_ACKNOWLEDGE_COURSES:
994 $target_name =
"acknowledgeCourses";
996 case self::ACTION_CHANGE_DEADLINE:
997 $target_name =
"changeDeadline";
999 case self::ACTION_CHANGE_EXPIRE_DATE:
1000 $target_name =
"changeExpireDate";
1006 $this->
ctrl->setParameter($this,
"prgrs_id", $prgrs_id);
1007 $link = $this->
ctrl->getLinkTarget($this, $target_name);
1008 $this->
ctrl->setParameter($this,
"prgrs_id", null);
1022 return $this->messages->getMessageCollection($topic);
1027 $this->messages->showMessages($msg);
1033 $gui =
$dic[
'ilStudyProgrammeMailMemberSearchGUI'];
1036 $selected_ids = array_map(
1037 fn (
$id) =>
$id->getAssignmentId(),
1041 $assignments = array_filter(
1043 fn ($ass) => in_array($ass->getId(), $selected_ids)
1045 $gui->setAssignments($assignments);
1046 $this->
tabs->clearTargets();
1047 $this->
tabs->setBackTarget(
1048 $this->
lng->txt(
'btn_back'),
1051 $this->
ctrl->forwardCommand($gui);
const F_SELECTED_PROGRESS_ID
confirmRemoveUsers(array $progress_ids)
confirmedUpdateFromCurrentPlan()
ilStudyProgrammeRepositorySearchGUI $repository_search_gui
getStudyProgramme(int $ref_id=null)
Get studyprogramm object for ref_id Use this ref_id if argument is null.
__construct(ilGlobalTemplateInterface $tpl, ilCtrl $ilCtrl, ilToolbarGUI $ilToolbar, ilLanguage $lng, ilObjUser $user, ilTabsGUI $tabs, ilPRGAssignmentDBRepository $assignment_db, ilStudyProgrammeRepositorySearchGUI $repository_search_gui, ilObjStudyProgrammeIndividualPlanGUI $individual_plan_gui, ilPRGMessagePrinter $messages, Factory $data_factory, ilConfirmationGUI $confirmation_gui, ILIAS\HTTP\Wrapper\WrapperFactory $http_wrapper, ILIAS\Refinery\Factory $refinery, ILIAS\UI\Factory $ui_factory, ILIAS\UI\Renderer $ui_renderer, GuzzleHttp\Psr7\ServerRequest $request)
const ACTION_UPDATE_FROM_CURRENT_PLAN
ilConfirmationGUI $confirmation_gui
const ACTION_UNMARK_RELEVANT
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilObjStudyProgramme $object
removeAssignment(PRGProgressId $pgs_id)
Remove user.
markAccreditedByProgressId(PRGProgressId $prgrs_id, ilPRGMessageCollection $msgs)
ILIAS UI Factory $ui_factory
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupFullname(int $a_user_id)
ilPRGMessagePrinter $messages
Class ChatMainBarProvider .
acknowledgeCoursesMulti()
static getInstanceByRefId($ref_id)
mayCurrentUserEditProgressForUser(int $usr_id)
loadLanguageModule(string $a_module)
Load language module.
static fillAutoCompleteToolbar( $parent_object, ilToolbarGUI $toolbar=null, $a_options=array(), $a_sticky=false)
This is just the same as in the parent class, except for the hardcoded class name.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const ACTION_MARK_RELEVANT
getAssignmentsFromQuery()
setParentGUI(ilObjectGUI $a_parent_gui)
add(bool $success, string $message, string $record_identitifer)
getMessageCollection(string $topic)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupObjId(int $ref_id)
const ACTION_CHANGE_DEADLINE
initMailToMemberButton(ilToolbarGUI $toolbar, bool $separator=false)
const OP_EDIT_INDIVIDUAL_PLAN
const ACTION_CHANGE_EXPIRE_DATE
ilGlobalTemplateInterface $tpl
getAddableUsers(array $users)
getLinkTargetForAction(string $action, string $prgrs_id, int $ass_id)
Get the link target for an action on user progress.
const ACTION_MARK_ACCREDITED
const ACTION_ACKNOWLEDGE_COURSES
static createFromString(string $id)
GuzzleHttp Psr7 ServerRequest $request
showInfoMessage(string $lng_var)
Shows ilUtil failed message.
Class ilObjectGUI Basic methods of all Output classes.
const ACTION_SHOW_INDIVIDUAL_PLAN
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
view()
Shows table with all members of the SP.
static specificDicFor(ilObjStudyProgramme $prg)
ilObjStudyProgrammeMembersGUI: ilStudyProgrammeRepositorySearchGUI ilObjStudyProgrammeMembersGUI: il...
ilObjStudyProgrammeIndividualPlanGUI $individual_plan_gui
ilPRGAssignmentDBRepository $assignment_db
const F_SELECTED_PROGRESS_IDS
const ACTION_UNMARK_ACCREDITED
ILIAS Refinery Factory $refinery
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
updateFromCurrentPlanMulti()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const F_COMMAND_OPTION_ALL
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
showSuccessMessage(string $lng_var)
Shows ilUtil success message.
ILIAS HTTP Wrapper WrapperFactory $http_wrapper
confirmedAcknowledgeAllCourses()
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static getRefIdFor(int $obj_id)
showMessages(ilPRGMessageCollection $msg)
ilPRGPermissionsHelper $permissions
addUsers(array $user_ids)
Assigns a users to SP.
unmarkAccreditedByProgressId(PRGProgressId $prgrs_id, ilPRGMessageCollection $msgs)
const F_SELECTED_USER_IDS
confirmedAcknowledgeCourses()
viewCompletedCourses(array $assignments)
Shows list of completed courses for each assignment.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS UI Renderer $ui_renderer
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...