50 protected int $id = 0;
96 $this->
ctrl = $DIC->ctrl();
97 $this->
lng = $DIC->language();
98 $this->
tabs = $DIC->tabs();
99 $this->tpl = $DIC[
"tpl"];
100 $this->
help = $DIC[
"ilHelp"];
101 $this->
toolbar = $DIC->toolbar();
102 $this->ui_fac = $DIC->ui()->factory();
103 $this->ui_ren = $DIC->ui()->renderer();
104 $this->request = $DIC->http()->request();
105 $this->tree_service = $DIC->skills()->tree();
108 $this->admin_gui_request = $DIC->skills()->internal()->gui()->admin_request();
109 $this->skill_factory = $DIC->skills()->internal()->factory();
110 $this->profile_manager = $DIC->skills()->internal()->manager()->getProfileManager();
111 $this->profile_completion_manager = $DIC->skills()->internal()->manager()->getProfileCompletionManager();
113 $this->
ctrl->saveParameter($this, [
"sprof_id",
"local_context"]);
115 $this->requested_ref_id = $this->admin_gui_request->getRefId();
116 $this->requested_sprof_id = $this->admin_gui_request->getSkillProfileId();
117 $this->requested_profile_ids = $this->admin_gui_request->getProfileIds();
118 $this->requested_local_context = $this->admin_gui_request->getLocalContext();
119 $this->requested_cskill_id = $this->admin_gui_request->getCombinedSkillId();
120 $this->requested_level_id = $this->admin_gui_request->getLevelId();
121 $this->requested_level_ass_ids = $this->admin_gui_request->getAssignedLevelIds();
122 $this->requested_level_order = $this->admin_gui_request->getOrder();
123 $this->requested_user_login = $this->admin_gui_request->getUserLogin();
124 $this->requested_users = $this->admin_gui_request->getUsers();
125 $this->requested_user_ids = $this->admin_gui_request->getUserIds();
127 if ($this->requested_sprof_id > 0) {
132 $this->profile = $this->profile_manager->getById($this->
id);
133 if ($this->skill_tree_id == 0) {
134 $this->skill_tree_id = $this->profile->getSkillTreeId();
137 $this->local_context =
true;
147 $cmd = $ilCtrl->getCmd(
"listProfiles");
148 $next_class = $ilCtrl->getNextClass();
149 switch ($next_class) {
150 case 'ilrepositorysearchgui':
152 $user_search->setTitle($lng->
txt(
'skmg_add_user_to_profile'));
153 $user_search->setCallback($this,
'assignUser');
154 $user_search->setRoleCallback($this,
'assignRole');
158 $ilCtrl->setReturn($this,
'showUsers');
159 $ret = $ilCtrl->forwardCommand($user_search);
163 if (in_array($cmd, array(
"listProfiles",
"create",
"edit",
"save",
"update",
164 "confirmDeleteProfiles",
"deleteProfiles",
"showLevels",
"assignLevel",
165 "assignLevelSelectSkill",
"assignLevelToProfile",
166 "confirmLevelAssignmentRemoval",
"removeLevelAssignments",
167 "showUsers",
"assignUser",
"assignRole",
168 "confirmUserRemoval",
"removeUsers",
"exportProfiles",
"showImportForm",
169 "importProfiles",
"saveLevelOrder",
"createLocal",
"saveLocal",
170 "listLocalProfiles",
"showLevelsWithLocalContext",
"showObjects"))) {
177 public function setTabs(
string $a_active): void
186 $this->profile->getTitle());
189 $ilTabs->clearTargets();
190 $ilHelp->setScreenIdComponent(
"skmg_prof");
192 $ilTabs->setBackTarget(
193 $lng->
txt(
"skmg_skill_profiles"),
194 $ilCtrl->getLinkTarget($this,
"")
200 $lng->
txt(
"skmg_assigned_skill_levels"),
201 $ilCtrl->getLinkTarget($this,
"showLevels")
207 $lng->
txt(
"skmg_assigned_users"),
208 $ilCtrl->getLinkTarget($this,
"showUsers")
214 $lng->
txt(
"skmg_assigned_objects"),
215 $ilCtrl->getLinkTarget($this,
"showObjects")
219 if ($this->skill_tree_access_manager->hasManageProfilesPermission()) {
222 $lng->
txt(
"settings"),
223 $ilCtrl->getLinkTarget($this,
"edit")
227 $ilTabs->activateTab($a_active);
237 if ($this->skill_tree_access_manager->hasManageProfilesPermission()) {
238 $ilToolbar->addButton(
239 $lng->
txt(
"skmg_add_profile"),
240 $ilCtrl->getLinkTarget($this,
"create")
243 $ilToolbar->addButton(
245 $ilCtrl->getLinkTarget($this,
"showImportForm")
266 $tpl->
setContent($this->ui_ren->render($form));
278 $lng->
txt(
"back_to_course"),
283 $tpl->
setContent($this->ui_ren->render($form));
292 $tpl->
setContent($this->ui_ren->render($form));
307 $ti = $this->ui_fac->input()->field()->text($lng->
txt(
"title"))
308 ->withRequired(
true);
311 $desc = $this->ui_fac->input()->field()->textarea($lng->
txt(
"description"));
315 if ($a_mode ==
"createLocal") {
317 $trees = $this->tree_service->getObjSkillTrees();
318 foreach ($trees as $tree) {
319 $options[$tree->getId()] = $tree->getTitle();
321 $se = $this->ui_fac->input()->field()->select($lng->
txt(
"skmg_skill_tree"), $options)->withRequired(
true);
326 ->withAcceptedMimeTypes([MimeType::IMAGE__PNG, MimeType::IMAGE__JPEG]);
331 if ($this->skill_tree_access_manager->hasManageProfilesPermission()) {
332 if ($a_mode ==
"create") {
333 $sec_des = $lng->
txt(
"skmg_add_profile");
334 $form_action = $ilCtrl->getFormAction($this,
"save");
335 } elseif ($a_mode ==
"createLocal") {
336 $sec_des = $lng->
txt(
"skmg_add_local_profile");
337 $form_action = $ilCtrl->getFormAction($this,
"saveLocal");
340 $ti = $ti->withValue($this->profile->getTitle());
341 $desc = $desc->withValue($this->profile->getDescription());
342 $img = $this->profile->getImageId() ?
$img->withValue([$this->profile->getImageId()]) :
$img;
344 $sec_des = $lng->
txt(
"skmg_edit_profile");
345 $form_action = $ilCtrl->getFormAction($this,
"update");
350 $section_basic = $this->ui_fac->input()->field()->section(
351 [
"title" => $ti,
"description" => $desc],
355 $section_basic = $this->ui_fac->input()->field()->section(
356 [
"title" => $ti,
"description" => $desc,
"skill_tree" => $se],
360 $section_advanced = $this->ui_fac->input()->field()->section([
"image" =>
$img], $lng->
txt(
"skmg_form_presentation"));
362 $form = $this->ui_fac->input()->container()->form()->standard(
364 [
"section_basic" => $section_basic,
"section_advanced" => $section_advanced]
376 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
381 if ($this->request->getMethod() ==
"POST" 382 && $this->request->getQueryParams()[
"profile"] ==
"profile_settings") {
383 $form = $form->withRequest($this->request);
384 $result = $form->getData();
385 if (is_null($result)) {
386 $tpl->
setContent($this->ui_ren->render($form));
389 $profile = $this->skill_factory->profile(
391 $result[
"section_basic"][
"title"],
392 $result[
"section_basic"][
"description"],
393 $this->skill_tree_id,
394 $result[
"section_advanced"][
"image"][0] ??
"" 396 $this->profile_manager->createProfile($profile);
398 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
399 $ilCtrl->redirect($this,
"listProfiles");
401 $ilCtrl->redirect($this,
"listProfiles");
410 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
415 if ($this->request->getMethod() ==
"POST" 416 && $this->request->getQueryParams()[
"profile"] ==
"profile_settings") {
417 $form = $form->withRequest($this->request);
418 $result = $form->getData();
419 if (is_null($result)) {
420 $tpl->
setContent($this->ui_ren->render($form));
423 $profile = $this->skill_factory->profile(
425 $result[
"section_basic"][
"title"],
426 $result[
"section_basic"][
"description"],
427 $result[
"section_basic"][
"skill_tree"],
428 $result[
"section_advanced"][
"image"][0] ??
"",
429 $this->requested_ref_id
431 $new_profile = $this->profile_manager->createProfile($profile);
432 $this->profile_manager->addRoleToProfile(
433 $new_profile->getId(),
436 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
437 $ilCtrl->redirectByClass(
"ilcontskilladmingui",
"listProfiles");
439 $ilCtrl->redirectByClass(
"ilcontskilladmingui",
"listProfiles");
448 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
453 if ($this->request->getMethod() ==
"POST" 454 && $this->request->getQueryParams()[
"profile"] ==
"profile_settings") {
455 $form = $form->withRequest($this->request);
456 $result = $form->getData();
457 if (is_null($result)) {
458 $tpl->
setContent($this->ui_ren->render($form));
461 $profile = $this->skill_factory->profile(
462 $this->profile->getId(),
463 $result[
"section_basic"][
"title"],
464 $result[
"section_basic"][
"description"],
465 $this->profile->getSkillTreeId(),
466 $result[
"section_advanced"][
"image"][0] ??
"",
467 $this->profile->getRefId()
469 $this->profile_manager->updateProfile($profile);
471 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"msg_obj_modified"),
true);
472 $ilCtrl->redirect($this,
"edit");
474 $ilCtrl->redirect($this,
"listProfiles");
483 if (empty($this->requested_profile_ids)) {
484 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"no_checkbox"),
true);
485 $ilCtrl->redirect($this,
"listProfiles");
488 $cgui->setFormAction($ilCtrl->getFormAction($this));
489 $cgui->setHeaderText($lng->
txt(
"skmg_delete_profiles"));
490 $cgui->setCancel($lng->
txt(
"cancel"),
"listProfiles");
491 $cgui->setConfirm($lng->
txt(
"delete"),
"deleteProfiles");
493 foreach ($this->requested_profile_ids as
$i) {
494 $cgui->addItem(
"id[]", $i, $this->profile_manager->lookupTitle($i));
507 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
511 if (!empty($this->requested_profile_ids)) {
512 foreach ($this->requested_profile_ids as
$i) {
513 $this->profile_manager->delete($i);
514 $this->profile_completion_manager->deleteEntriesForProfile($i);
516 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"msg_obj_modified"),
true);
519 $ilCtrl->redirect($this,
"listProfiles");
535 if ($this->skill_tree_access_manager->hasManageProfilesPermission()) {
536 $ilToolbar->addButton(
537 $lng->
txt(
"skmg_assign_level"),
538 $ilCtrl->getLinkTarget($this,
"assignLevel")
560 $lng->
txt(
"back_to_course"),
564 if ($this->skill_tree_access_manager->hasManageProfilesPermission()) {
566 $lng->
txt(
"skmg_assign_level"),
573 "showLevelsWithLocalContext",
588 $this->profile->getTitle());
593 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"skmg_select_skill_level_assign"));
595 $ilTabs->clearTargets();
597 $ilTabs->setBackTarget(
599 $ilCtrl->getLinkTarget($this,
"showLevelsWithLocalContext")
602 $ilTabs->setBackTarget(
604 $ilCtrl->getLinkTarget($this,
"showLevels")
613 "assignLevelSelectSkill",
617 if (!$exp->handleCommand()) {
633 $ilCtrl->saveParameter($this,
"cskill_id");
636 $this->profile->getTitle());
639 $ilTabs->clearTargets();
641 $ilTabs->setBackTarget(
643 $ilCtrl->getLinkTarget($this,
"showLevelsWithLocalContext")
646 $ilTabs->setBackTarget(
648 $ilCtrl->getLinkTarget($this,
"showLevels")
654 "assignLevelSelectSkill",
655 $this->requested_cskill_id
666 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
671 $parts = explode(
":", $this->requested_cskill_id);
673 $this->profile->addSkillLevel(
676 $this->requested_level_id,
677 $this->profile_manager->getMaxLevelOrderNr($this->profile->getId()) + 10
679 $this->profile_manager->updateProfile($this->profile);
684 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
686 $ilCtrl->redirect($this,
"showLevelsWithLocalContext");
688 $ilCtrl->redirect($this,
"showLevels");
705 if (empty($this->requested_level_ass_ids)) {
706 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"no_checkbox"),
true);
708 $ilCtrl->redirect($this,
"showLevelsWithLocalContext");
710 $ilCtrl->redirect($this,
"showLevels");
713 $cgui->setFormAction($ilCtrl->getFormAction($this));
714 $cgui->setHeaderText($lng->
txt(
"skmg_confirm_remove_level_ass"));
716 $cgui->setCancel($lng->
txt(
"cancel"),
"showLevelsWithLocalContext");
718 $cgui->setCancel($lng->
txt(
"cancel"),
"showLevels");
720 $cgui->setConfirm($lng->
txt(
"remove"),
"removeLevelAssignments");
722 foreach ($this->requested_level_ass_ids as
$i) {
723 $id_arr = explode(
":", $i);
741 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
745 if (!empty($this->requested_level_ass_ids)) {
746 foreach ($this->requested_level_ass_ids as
$i) {
747 $id_arr = explode(
":", $i);
748 $this->profile->removeSkillLevel((
int) $id_arr[0], (
int) $id_arr[1], (
int) $id_arr[2], (
int) $id_arr[3]);
750 $this->profile_manager->updateProfile($this->profile);
751 $this->profile_manager->fixSkillOrderNumbering($this->profile->getId());
758 $ilCtrl->redirect($this,
"showLevelsWithLocalContext");
760 $ilCtrl->redirect($this,
"showLevels");
769 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
774 $this->profile_manager->updateSkillOrder($this->profile->getId(), $order);
776 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
778 $ilCtrl->redirect($this,
"showLevelsWithLocalContext");
780 $ilCtrl->redirect($this,
"showLevels");
790 if ($this->skill_tree_access_manager->hasManageProfilesPermission() && !$this->profile->getRefId() > 0) {
795 'auto_complete_name' => $lng->
txt(
'user'),
796 'submit_name' => $lng->
txt(
'skmg_assign_user')
800 $ilToolbar->addSeparator();
803 $button->setCaption(
"skmg_add_assignment");
804 $button->setUrl($this->
ctrl->getLinkTargetByClass(
'ilRepositorySearchGUI',
'start'));
805 $ilToolbar->addButtonInstance($button);
823 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
830 $this->profile_manager->addUserToProfile($this->profile->getId(), $user_id);
832 $this->profile_completion_manager->writeCompletionEntryForSingleProfile($user_id, $this->profile->getId());
833 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
838 if (!empty($users)) {
839 foreach ($users as $id) {
841 $this->profile_manager->addUserToProfile($this->profile->getId(),
$id);
843 $this->profile_completion_manager->writeCompletionEntryForSingleProfile($id, $this->profile->getId());
846 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
849 $ilCtrl->redirect($this,
"showUsers");
857 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
862 foreach ($role_ids as $id) {
864 $this->profile_manager->addRoleToProfile($this->profile->getId(),
$id);
870 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
873 $ilCtrl->redirect($this,
"showUsers");
882 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
888 if (empty($this->requested_user_ids)) {
889 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"no_checkbox"),
true);
890 $ilCtrl->redirect($this,
"showUsers");
893 $cgui->setFormAction($ilCtrl->getFormAction($this));
894 $cgui->setHeaderText($lng->
txt(
"skmg_confirm_user_removal"));
895 $cgui->setCancel($lng->
txt(
"cancel"),
"showUsers");
896 $cgui->setConfirm($lng->
txt(
"remove"),
"removeUsers");
898 foreach ($this->requested_user_ids as
$i) {
934 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
938 if (!empty($this->requested_user_ids)) {
939 foreach ($this->requested_user_ids as
$i) {
943 $this->profile_manager->removeUserFromProfile($this->profile->getId(),
$i);
947 $this->profile_manager->removeRoleFromProfile($this->profile->getId(),
$i);
954 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
956 $ilCtrl->redirect($this,
"showUsers");
966 $objects = $usage_info->getAssignedObjectsForSkillProfile($this->profile->getId());
981 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
985 if (empty($this->requested_profile_ids)) {
986 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"no_checkbox"),
true);
987 $ilCtrl->redirect($this,
"");
991 $conf = $exp->getConfig(
"Services/Skill");
993 $conf->setSelectedProfiles($this->requested_profile_ids);
994 $conf->setSkillTreeId($this->skill_tree_id);
1001 $ilCtrl->redirectByClass(array(
"ilobjskilltreegui",
"ilexportgui"),
"");
1021 $fi->setRequired(
true);
1022 $form->addItem($fi);
1025 $form->addCommandButton(
"importProfiles", $lng->
txt(
"import"));
1026 $form->addCommandButton(
"", $lng->
txt(
"cancel"));
1028 $form->setTitle($lng->
txt(
"import"));
1029 $form->setFormAction($ilCtrl->getFormAction($this));
1041 if ($form->checkInput()) {
1043 $conf = $imp->getConfig(
"Services/Skill");
1044 $conf->setSkillTreeId($this->skill_tree_id);
1045 $imp->importEntity($_FILES[
"import_file"][
"tmp_name"], $_FILES[
"import_file"][
"name"],
"skmg",
"Services/Skill");
1047 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
1048 $ilCtrl->redirect($this,
"");
1050 $form->setValuesByPost();
1060 $users = $this->profile_manager->getAssignedUserIdsIncludingRoleAssignments($this->profile->getId());
1061 foreach ($users as $user_id) {
1062 $this->profile_completion_manager->writeCompletionEntryForSingleProfile($user_id, $this->profile->getId());
1071 $r_users = $this->profile_manager->getAssignedUsersForRole($a_role_id);
1072 foreach ($r_users as $user_id) {
1073 $this->profile_completion_manager->writeCompletionEntryForSingleProfile($user_id, $this->profile->getId());
TableGUI class for skill profile levels.
checkProfileCompletionForRole(int $a_role_id)
Write completion entries for a profile for assigned users of a role if fulfilment status has changed...
An entity that renders components to a string output.
getLinkTargetByClass( $a_class, string $a_cmd=null, string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
redirectByClass( $a_class, string $a_cmd=null, string $a_anchor=null, bool $is_async=false)
SkillTreeAccess $skill_tree_access_manager
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link="", bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
array $requested_profile_ids
Class ilSkillProfileUploadHandlerGUI.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ChatMainBarProvider .
Request wrapper for guis in skill administration.
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...
confirmLevelAssignmentRemoval()
SkillProfileManager $profile_manager
static _lookupTitle(int $a_obj_id, int $a_tref_id=0)
TableGUI class for skill profiles.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupId($a_user_str)
setTabs(string $a_active)
showLevelsWithLocalContext()
static lookupLevelTitle(int $a_id)
array $requested_level_ass_ids
TableGUI class for skill profile user assignment.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getDefaultMemberRole(int $a_ref_id)
assignLevelSelectSkill()
Output level table for profile assignment.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
SkillAdminGUIRequest $admin_gui_request
initProfileForm(string $a_mode="edit")
static _lookupObjId(int $ref_id)
ilGlobalTemplateInterface $tpl
SkillTreeService $tree_service
assignRole(array $role_ids)
static _lookupTitle(int $obj_id)
setContent(string $a_html)
Sets content for standard template.
string $requested_user_login
string $requested_cskill_id
setBackTarget(string $a_title, string $a_target, string $a_frame="")
ServerRequestInterface $request
checkProfileCompletionForAllAssignedUsers()
Write completion entries for a profile for all assigned users of the profile if fulfilment status has...
static fillAutoCompleteToolbar(object $parent_object, ilToolbarGUI $toolbar=null, array $a_options=[], bool $a_sticky=false)
array( auto_complete_name = $lng->txt('user'), auto_complete_size = 15, user_type = array(ilCoursePar...
__construct(SkillTreeAccess $skill_tree_access_manager, int $skill_tree_id=0)
clearTargets()
clear all targets
setTitle(string $a_title, bool $hidden=false)
Sets title in standard template.
bool $requested_local_context
Skill internal factory service.
TableGUI class for skill profile skill level assignment.
Explorer class that works on tree objects (Services/Tree)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getLinkTarget(object $a_gui_obj, string $a_cmd=null, string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
setDescription(string $a_descr)
Sets description below title in standard template.
SkillProfileCompletionManager $profile_completion_manager
Manages skill profile completion.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
SkillInternalFactoryService $skill_factory
static _lookupType(int $id, bool $reference=false)
static stripSlashesArray(array $a_arr, bool $a_strip_html=true, string $a_allow="")
array $requested_level_order
array $requested_user_ids
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...