ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSkillProfileGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 use ILIAS\UI;
33 
41 {
42  protected ilCtrl $ctrl;
43  protected ilLanguage $lng;
44  protected ilTabsGUI $tabs;
46  protected ilHelpGUI $help;
48  protected UI\Factory $ui_fac;
49  protected UI\Renderer $ui_ren;
50  protected \ILIAS\Data\Factory $df;
53  protected int $id = 0;
54  protected ?Profile\SkillProfile $profile = null;
57  protected int $skill_tree_id = 0;
59  protected int $requested_ref_id = 0;
60  protected int $requested_sprof_id = 0;
62  protected Profile\SkillProfileManager $profile_manager;
63  protected Profile\SkillProfileCompletionManager $profile_completion_manager;
64  protected Table\TableManager $table_manager;
65  protected Usage\SkillUsageManager $usage_manager;
66 
70  protected array $requested_profile_ids = [];
71  protected bool $requested_local_context = false;
72  protected string $requested_cskill_id = "";
73 
77  protected array $requested_level_ass_ids = [];
78 
82  protected array $requested_level_order = [];
83  protected string $requested_user_login = "";
84 
88  protected array $requested_users = [];
89 
93  protected array $requested_user_ids = [];
94  protected string $requested_table_profile_action = "";
95 
99  protected array $requested_table_profile_ids = [];
100  protected int $requested_level_id = 0;
101  protected bool $local_context = false;
102 
103  public function __construct(SkillTreeAccess $skill_tree_access_manager, int $skill_tree_id = 0)
104  {
105  global $DIC;
106 
107  $this->ctrl = $DIC->ctrl();
108  $this->lng = $DIC->language();
109  $this->tabs = $DIC->tabs();
110  $this->tpl = $DIC["tpl"];
111  $this->help = $DIC["ilHelp"];
112  $this->toolbar = $DIC->toolbar();
113  $this->ui_fac = $DIC->ui()->factory();
114  $this->ui_ren = $DIC->ui()->renderer();
115  $this->df = new \ILIAS\Data\Factory();
116  $this->request = $DIC->http()->request();
117  $this->query = $DIC->http()->wrapper()->query();
118  $this->tree_service = $DIC->skills()->tree();
119  $this->skill_tree_access_manager = $skill_tree_access_manager;
120  $this->skill_tree_id = $skill_tree_id;
121  $this->admin_gui_request = $DIC->skills()->internal()->gui()->admin_request();
122  $this->skill_factory = $DIC->skills()->internal()->factory();
123  $this->profile_manager = $DIC->skills()->internal()->manager()->getProfileManager();
124  $this->profile_completion_manager = $DIC->skills()->internal()->manager()->getProfileCompletionManager();
125  $this->table_manager = $DIC->skills()->internal()->manager()->getTableManager();
126  $this->usage_manager = $DIC->skills()->internal()->manager()->getUsageManager();
127 
128  $this->ctrl->saveParameter($this, ["sprof_id", "local_context"]);
129 
130  $this->requested_ref_id = $this->admin_gui_request->getRefId();
131  $this->requested_sprof_id = $this->admin_gui_request->getSkillProfileId();
132  $this->requested_profile_ids = $this->admin_gui_request->getProfileIds();
133  $this->requested_local_context = $this->admin_gui_request->getLocalContext();
134  $this->requested_cskill_id = $this->admin_gui_request->getCombinedSkillId();
135  $this->requested_level_ass_ids = $this->admin_gui_request->getAssignedLevelIds();
136  $this->requested_level_order = $this->admin_gui_request->getOrder();
137  $this->requested_user_login = $this->admin_gui_request->getUserLogin();
138  $this->requested_users = $this->admin_gui_request->getUsers();
139  $this->requested_user_ids = $this->admin_gui_request->getUserIds();
140  $this->requested_table_profile_action = $this->admin_gui_request->getTableProfileAction();
141  $this->requested_table_profile_ids = $this->admin_gui_request->getTableProfileIds();
142  $this->requested_level_id = $this->admin_gui_request->getLevelId();
143 
144  if ($this->requested_sprof_id > 0) {
145  $this->id = $this->requested_sprof_id;
146  }
147 
148  if ($this->id > 0) {
149  $this->profile = $this->profile_manager->getProfile($this->id);
150  if ($this->skill_tree_id == 0) {
151  $this->skill_tree_id = $this->profile->getSkillTreeId();
152  }
153  if ($this->profile->getRefId() > 0 && $this->requested_local_context) {
154  $this->local_context = true;
155  }
156  }
157  }
158 
159  public function executeCommand(): void
160  {
161  $ilCtrl = $this->ctrl;
162  $lng = $this->lng;
163 
164  $cmd = $ilCtrl->getCmd("listProfiles");
165  $next_class = $ilCtrl->getNextClass();
166  switch ($next_class) {
167  case 'ilrepositorysearchgui':
168  $user_search = new ilRepositorySearchGUI();
169  $user_search->setTitle($lng->txt('skmg_add_user_to_profile'));
170  $user_search->setCallback($this, 'assignUser');
171  $user_search->setRoleCallback($this, 'assignRole');
172 
173  // Set tabs
174  //$this->tabs_gui->setTabActive('user_assignment');
175  $ilCtrl->setReturn($this, 'showUsers');
176  $ret = $ilCtrl->forwardCommand($user_search);
177  break;
178 
179  default:
180  if (in_array($cmd, array("listProfiles", "create", "edit", "save", "update",
181  "deleteProfiles", "showLevels", "assignLevel",
182  "assignLevelSelectSkill", "updateLevelOfSelectedSkill",
183  "assignLevelToProfile", "updateLevelOfProfile",
184  "confirmLevelAssignmentRemoval", "removeLevelAssignments",
185  "showUsers", "assignUser", "assignRole",
186  "confirmUserRemoval", "removeUsers", "exportProfiles", "showImportForm",
187  "importProfiles", "saveLevelOrder", "createLocal", "saveLocal",
188  "listLocalProfiles", "showLevelsWithLocalContext", "showObjects"))) {
189  $this->$cmd();
190  }
191  break;
192  }
193  }
194 
195  public function setTabs(string $a_active): void
196  {
197  $ilTabs = $this->tabs;
198  $lng = $this->lng;
199  $ilCtrl = $this->ctrl;
200  $tpl = $this->tpl;
201  $ilHelp = $this->help;
202 
203  $tpl->setTitle($lng->txt("skmg_profile") . ": " .
204  $this->profile->getTitle());
205  $tpl->setDescription($this->profile->getDescription());
206 
207  $ilTabs->clearTargets();
208  $ilHelp->setScreenIdComponent("skmg_prof");
209 
210  $ilCtrl->clearParameterByClass(self::class, "sprof_id");
211  $ilTabs->setBackTarget(
212  $lng->txt("skmg_skill_profiles"),
213  $ilCtrl->getLinkTarget($this, "")
214  );
215  $ilCtrl->setParameter($this, "sprof_id", $this->requested_sprof_id);
216 
217  // levels
218  $ilTabs->addTab(
219  "levels",
220  $lng->txt("skmg_assigned_skill_levels"),
221  $ilCtrl->getLinkTarget($this, "showLevels")
222  );
223 
224  // users
225  $ilTabs->addTab(
226  "users",
227  $lng->txt("skmg_assigned_users"),
228  $ilCtrl->getLinkTarget($this, "showUsers")
229  );
230 
231  // objects
232  $ilTabs->addTab(
233  "objects",
234  $lng->txt("skmg_assigned_objects"),
235  $ilCtrl->getLinkTarget($this, "showObjects")
236  );
237 
238  // settings
239  if ($this->skill_tree_access_manager->hasManageProfilesPermission()) {
240  $ilTabs->addTab(
241  "settings",
242  $lng->txt("settings"),
243  $ilCtrl->getLinkTarget($this, "edit")
244  );
245  }
246 
247  $ilTabs->activateTab($a_active);
248  }
249 
250  public function listProfiles(): void
251  {
252  $tpl = $this->tpl;
253  $ilToolbar = $this->toolbar;
254  $lng = $this->lng;
255  $ilCtrl = $this->ctrl;
256 
257  if ($this->skill_tree_access_manager->hasManageProfilesPermission()) {
258  $ilToolbar->addButton(
259  $lng->txt("skmg_add_profile"),
260  $ilCtrl->getLinkTarget($this, "create")
261  );
262 
263  $ilToolbar->addButton(
264  $lng->txt("import"),
265  $ilCtrl->getLinkTarget($this, "showImportForm")
266  );
267  }
268 
269  $table = $this->table_manager->getProfileTable($this->requested_ref_id, $this->skill_tree_id)->getComponent();
270 
271  $tpl->setContent($this->ui_ren->render($table));
272  }
273 
274  public function listLocalProfiles(): void
275  {
276  $ilCtrl = $this->ctrl;
277 
278  $ilCtrl->redirectByClass("ilcontskilladmingui", "listProfiles");
279  }
280 
281  public function create(): void
282  {
283  $tpl = $this->tpl;
284 
285  $form = $this->initProfileForm("create");
286  $tpl->setContent($this->ui_ren->render($form));
287  }
288 
289  public function createLocal(): void
290  {
291  $tpl = $this->tpl;
292  $lng = $this->lng;
293  $ctrl = $this->ctrl;
294  $tabs = $this->tabs;
295 
296  $tabs->clearTargets();
297  $tabs->setBackTarget(
298  $lng->txt("back_to_course"),
299  $ctrl->getLinkTargetByClass("ilcontskilladmingui", "listProfiles")
300  );
301 
302  $form = $this->initProfileForm("createLocal");
303  $tpl->setContent($this->ui_ren->render($form));
304  }
305 
306  public function edit(): void
307  {
308  $tpl = $this->tpl;
309 
310  $this->setTabs("settings");
311  $form = $this->initProfileForm("edit");
312  $tpl->setContent($this->ui_ren->render($form));
313  }
314 
315  public function initProfileForm(string $a_mode = "edit"): \ILIAS\UI\Component\Input\Container\Form\Form
316  {
317  $lng = $this->lng;
318  $ilCtrl = $this->ctrl;
319 
320  $ilCtrl->setParameter(
321  $this,
322  "profile",
323  "profile_settings"
324  );
325 
326  // title
327  $ti = $this->ui_fac->input()->field()->text($lng->txt("title"))
328  ->withRequired(true);
329 
330  // description
331  $desc = $this->ui_fac->input()->field()->textarea($lng->txt("description"));
332 
333  // skill trees (if local profile)
334  $se = null;
335  if ($a_mode == "createLocal") {
336  $options = [];
337  $trees = $this->tree_service->getObjSkillTrees();
338  foreach ($trees as $tree) {
339  $options[$tree->getId()] = $tree->getTitle();
340  }
341  $se = $this->ui_fac->input()->field()->select($lng->txt("skmg_skill_tree"), $options)->withRequired(true);
342  }
343 
344  // image
345  $img = $this->ui_fac->input()->field()->file(new ilSkillProfileUploadHandlerGUI(), $lng->txt("image"))
346  ->withAcceptedMimeTypes([MimeType::IMAGE__PNG, MimeType::IMAGE__JPEG]);
347 
348  // save commands
349  $sec_des = "";
350  $form_action = "";
351  if ($this->skill_tree_access_manager->hasManageProfilesPermission()) {
352  if ($a_mode == "create") {
353  $sec_des = $lng->txt("skmg_add_profile");
354  $form_action = $ilCtrl->getFormAction($this, "save");
355  } elseif ($a_mode == "createLocal") {
356  $sec_des = $lng->txt("skmg_add_local_profile");
357  $form_action = $ilCtrl->getFormAction($this, "saveLocal");
358  } else {
359  // set values
360  $ti = $ti->withValue($this->profile->getTitle());
361  $desc = $desc->withValue($this->profile->getDescription());
362  $img = $this->profile->getImageId() ? $img->withValue([$this->profile->getImageId()]) : $img;
363 
364  $sec_des = $lng->txt("skmg_edit_profile");
365  $form_action = $ilCtrl->getFormAction($this, "update");
366  }
367  }
368 
369  if (is_null($se)) {
370  $section_basic = $this->ui_fac->input()->field()->section(
371  ["title" => $ti, "description" => $desc],
372  $sec_des
373  );
374  } else {
375  $section_basic = $this->ui_fac->input()->field()->section(
376  ["title" => $ti, "description" => $desc, "skill_tree" => $se],
377  $sec_des
378  );
379  }
380  $section_advanced = $this->ui_fac->input()->field()->section(["image" => $img], $lng->txt("skmg_form_presentation"));
381 
382  $form = $this->ui_fac->input()->container()->form()->standard(
383  $form_action,
384  ["section_basic" => $section_basic, "section_advanced" => $section_advanced]
385  );
386 
387  return $form;
388  }
389 
390  public function save(): void
391  {
392  $tpl = $this->tpl;
393  $lng = $this->lng;
394  $ilCtrl = $this->ctrl;
395 
396  if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
397  return;
398  }
399 
400  $form = $this->initProfileForm("create");
401  if ($this->request->getMethod() == "POST"
402  && $this->request->getQueryParams()["profile"] == "profile_settings") {
403  $form = $form->withRequest($this->request);
404  $result = $form->getData();
405  if (is_null($result)) {
406  $tpl->setContent($this->ui_ren->render($form));
407  return;
408  }
409  $profile = $this->skill_factory->profile()->profile(
410  0,
411  $result["section_basic"]["title"],
412  $result["section_basic"]["description"],
413  $this->skill_tree_id,
414  $result["section_advanced"]["image"][0] ?? ""
415  );
416  $this->profile_manager->createProfile($profile);
417 
418  $this->tpl->setOnScreenMessage('success', $lng->txt("msg_obj_modified"), true);
419  $ilCtrl->redirect($this, "listProfiles");
420  }
421  $ilCtrl->redirect($this, "listProfiles");
422  }
423 
424  public function saveLocal(): void
425  {
426  $tpl = $this->tpl;
427  $lng = $this->lng;
428  $ilCtrl = $this->ctrl;
429 
430  if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
431  return;
432  }
433 
434  $form = $this->initProfileForm("createLocal");
435  if ($this->request->getMethod() == "POST"
436  && $this->request->getQueryParams()["profile"] == "profile_settings") {
437  $form = $form->withRequest($this->request);
438  $result = $form->getData();
439  if (is_null($result)) {
440  $tpl->setContent($this->ui_ren->render($form));
441  return;
442  }
443  $profile = $this->skill_factory->profile()->profile(
444  0,
445  $result["section_basic"]["title"],
446  $result["section_basic"]["description"],
447  (int) $result["section_basic"]["skill_tree"],
448  $result["section_advanced"]["image"][0] ?? "",
449  $this->requested_ref_id
450  );
451  $new_profile = $this->profile_manager->createProfile($profile);
452  $this->profile_manager->addRoleToProfile(
453  $new_profile->getId(),
454  ilParticipants::getDefaultMemberRole($this->requested_ref_id)
455  );
456  $this->tpl->setOnScreenMessage('success', $lng->txt("msg_obj_modified"), true);
457  $ilCtrl->redirectByClass("ilcontskilladmingui", "listProfiles");
458  }
459  $ilCtrl->redirectByClass("ilcontskilladmingui", "listProfiles");
460  }
461 
462  public function update(): void
463  {
464  $lng = $this->lng;
465  $ilCtrl = $this->ctrl;
466  $tpl = $this->tpl;
467 
468  if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
469  return;
470  }
471 
472  $form = $this->initProfileForm("edit");
473  if ($this->request->getMethod() == "POST"
474  && $this->request->getQueryParams()["profile"] == "profile_settings") {
475  $form = $form->withRequest($this->request);
476  $result = $form->getData();
477  if (is_null($result)) {
478  $tpl->setContent($this->ui_ren->render($form));
479  return;
480  }
481  $profile = $this->skill_factory->profile()->profile(
482  $this->profile->getId(),
483  $result["section_basic"]["title"],
484  $result["section_basic"]["description"],
485  $this->profile->getSkillTreeId(),
486  $result["section_advanced"]["image"][0] ?? "",
487  $this->profile->getRefId()
488  );
489  $this->profile_manager->updateProfile($profile);
490 
491  $this->tpl->setOnScreenMessage('info', $lng->txt("msg_obj_modified"), true);
492  $ilCtrl->redirect($this, "edit");
493  }
494  $ilCtrl->redirect($this, "listProfiles");
495  }
496 
497  public function deleteProfiles(): void
498  {
499  $ilCtrl = $this->ctrl;
500  $tpl = $this->tpl;
501  $lng = $this->lng;
502 
503  if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
504  return;
505  }
506 
507  if (!empty($this->requested_profile_ids)) {
508  foreach ($this->requested_profile_ids as $i) {
509  $this->profile_manager->delete($i);
510  $this->profile_completion_manager->deleteEntriesForProfile($i);
511  }
512  $this->tpl->setOnScreenMessage('info', $lng->txt("msg_obj_modified"), true);
513  }
514 
515  $ilCtrl->redirect($this, "listProfiles");
516  }
517 
521 
522  public function showLevels(): void
523  {
524  $tpl = $this->tpl;
525  $ilCtrl = $this->ctrl;
526  $lng = $this->lng;
527  $ilToolbar = $this->toolbar;
528 
529  $this->setTabs("levels");
530 
531  if ($this->skill_tree_access_manager->hasManageProfilesPermission()) {
532  $ilToolbar->addButton(
533  $lng->txt("skmg_assign_level"),
534  $ilCtrl->getLinkTarget($this, "assignLevel")
535  );
536  }
537 
538  $tab = new ilSkillProfileLevelsTableGUI(
539  $this,
540  "showLevels",
541  $this->profile
542  );
543  $tpl->setContent($tab->getHTML());
544  }
545 
546  public function showLevelsWithLocalContext(): void
547  {
548  $tpl = $this->tpl;
549  $lng = $this->lng;
550  $ctrl = $this->ctrl;
551  $tabs = $this->tabs;
552  $toolbar = $this->toolbar;
553 
554  $tabs->clearTargets();
555  $tabs->setBackTarget(
556  $lng->txt("back_to_course"),
557  $ctrl->getLinkTargetByClass("ilcontskilladmingui", "listProfiles")
558  );
559 
560  if ($this->skill_tree_access_manager->hasManageProfilesPermission()) {
561  $toolbar->addButton(
562  $lng->txt("skmg_assign_level"),
563  $ctrl->getLinkTarget($this, "assignLevel")
564  );
565  }
566 
567  $tab = new ilSkillProfileLevelsTableGUI(
568  $this,
569  "showLevelsWithLocalContext",
570  $this->profile
571  );
572  $tpl->setContent($tab->getHTML());
573  }
574 
575  public function assignLevel(): void
576  {
577  $lng = $this->lng;
578  $ilTabs = $this->tabs;
579  $ilCtrl = $this->ctrl;
580  $tpl = $this->tpl;
581  $local = $this->local_context;
582 
583  $tpl->setTitle($lng->txt("skmg_profile") . ": " .
584  $this->profile->getTitle());
585  $tpl->setDescription("");
586 
587  //$this->setTabs("levels");
588 
589  $this->tpl->setOnScreenMessage('info', $lng->txt("skmg_select_skill_level_assign"));
590 
591  $ilTabs->clearTargets();
592  if ($local) {
593  $ilTabs->setBackTarget(
594  $lng->txt("back"),
595  $ilCtrl->getLinkTarget($this, "showLevelsWithLocalContext")
596  );
597  } else {
598  $ilTabs->setBackTarget(
599  $lng->txt("back"),
600  $ilCtrl->getLinkTarget($this, "showLevels")
601  );
602  }
603 
604 
605  $exp = new ilSkillSelectorGUI(
606  $this,
607  "assignLevel",
608  $this,
609  "assignLevelSelectSkill",
610  "cskill_id",
611  $this->skill_tree_id
612  );
613  if (!$exp->handleCommand()) {
614  $tpl->setContent($exp->getHTML());
615  }
616  }
617 
621  public function assignLevelSelectSkill(bool $update = false): void
622  {
623  $tpl = $this->tpl;
624  $lng = $this->lng;
625  $ilCtrl = $this->ctrl;
626  $ilTabs = $this->tabs;
627  $local = $this->local_context;
628 
629  $ilCtrl->saveParameter($this, "cskill_id");
630 
631  $tpl->setTitle($lng->txt("skmg_profile") . ": " .
632  $this->profile->getTitle());
633  $tpl->setDescription("");
634 
635  $ilTabs->clearTargets();
636  if ($local) {
637  $ilTabs->setBackTarget(
638  $lng->txt("back"),
639  $ilCtrl->getLinkTarget($this, "showLevelsWithLocalContext")
640  );
641  } else {
642  $ilTabs->setBackTarget(
643  $lng->txt("back"),
644  $ilCtrl->getLinkTarget($this, "showLevels")
645  );
646  }
647 
648  $id_parts = explode(":", $this->requested_cskill_id);
649  $skill_id = (int) $id_parts[0];
650  $skill = new ilBasicSkill($skill_id);
651  $level_data = $skill->getLevelData();
652 
653  $items = [];
654  foreach ($level_data as $levels) {
655  $ilCtrl->setParameterByClass(self::class, "level_id", $levels["id"]);
656  $items[] = $this->ui_fac->item()->standard($levels["title"])->withMainAction(
657  $this->ui_fac->link()->standard(
658  $lng->txt("skmg_assign_level"),
659  $ilCtrl->getLinkTarget($this, $update ? "updateLevelOfProfile" : "assignLevelToProfile")
660  )
661  );
662  $ilCtrl->clearParameterByClass(self::class, "level_id");
663  }
664 
665  $list = $this->ui_fac->panel()->listing()->standard(
666  $skill->getTitle() . ", " . $lng->txt("skmg_skill_levels"),
667  [
668  $this->ui_fac->item()->group("", $items)
669  ]
670  );
671 
672  $tpl->setContent($this->ui_ren->render($list));
673  }
674 
675  public function updateLevelOfSelectedSkill(): void
676  {
677  $this->assignLevelSelectSkill(true);
678  }
679 
680  public function assignLevelToProfile(?Profile\SkillProfileLevel $level = null): void
681  {
682  $ilCtrl = $this->ctrl;
683  $lng = $this->lng;
684  $local = $this->local_context;
685 
686  if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
687  return;
688  }
689 
690  if ($level) {
691  $this->profile_manager->updateSkillLevel($level);
692  } else {
693  $parts = explode(":", $this->requested_cskill_id);
694  $level = $this->skill_factory->profile()->profileLevel(
695  $this->profile->getId(),
696  (int) $parts[0],
697  (int) $parts[1],
699  $this->profile_manager->getMaxLevelOrderNr($this->profile->getId()) + 10
700  );
701  $this->profile_manager->addSkillLevel($level);
702  }
703 
704  // profile completion check because of profile editing
705  $this->profile_completion_manager->writeCompletionEntryForAllAssignedUsersOfProfile($this->profile->getId());
706 
707  $this->tpl->setOnScreenMessage('success', $lng->txt("msg_obj_modified"), true);
708  if ($local) {
709  $ilCtrl->redirect($this, "showLevelsWithLocalContext");
710  }
711  $ilCtrl->redirect($this, "showLevels");
712  }
713 
714  public function updateLevelOfProfile(): void
715  {
716  $parts = explode(":", $this->requested_cskill_id);
717  $level = $this->profile_manager->getSkillLevel($this->profile->getId(), (int) $parts[0], (int) $parts[1]);
718  $level_updated = $this->skill_factory->profile()->profileLevel(
719  $level->getProfileId(),
720  $level->getBaseSkillId(),
721  $level->getTrefId(),
723  $level->getOrderNr()
724  );
725  $this->assignLevelToProfile($level_updated);
726  }
727 
728  public function confirmLevelAssignmentRemoval(): void
729  {
730  $ilCtrl = $this->ctrl;
731  $tpl = $this->tpl;
732  $lng = $this->lng;
733  $tabs = $this->tabs;
734  $local = $this->local_context;
735 
736  if ($local) {
737  $tabs->clearTargets();
738  } else {
739  $this->setTabs("levels");
740  }
741 
742  if (empty($this->requested_level_ass_ids)) {
743  $this->tpl->setOnScreenMessage('info', $lng->txt("no_checkbox"), true);
744  if ($local) {
745  $ilCtrl->redirect($this, "showLevelsWithLocalContext");
746  }
747  $ilCtrl->redirect($this, "showLevels");
748  } else {
749  $cgui = new ilConfirmationGUI();
750  $cgui->setFormAction($ilCtrl->getFormAction($this));
751  $cgui->setHeaderText($lng->txt("skmg_confirm_remove_level_ass"));
752  if ($local) {
753  $cgui->setCancel($lng->txt("cancel"), "showLevelsWithLocalContext");
754  } else {
755  $cgui->setCancel($lng->txt("cancel"), "showLevels");
756  }
757  $cgui->setConfirm($lng->txt("remove"), "removeLevelAssignments");
758 
759  foreach ($this->requested_level_ass_ids as $i) {
760  $id_arr = explode(":", $i);
761  $cgui->addItem(
762  "ass_id[]",
763  $i,
764  ilBasicSkill::_lookupTitle((int) $id_arr[0]) . ": " .
765  ilBasicSkill::lookupLevelTitle((int) $id_arr[2])
766  );
767  }
768 
769  $tpl->setContent($cgui->getHTML());
770  }
771  }
772 
773  public function removeLevelAssignments(): void
774  {
775  $ilCtrl = $this->ctrl;
776  $local = $this->local_context;
777 
778  if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
779  return;
780  }
781 
782  if (!empty($this->requested_level_ass_ids)) {
783  foreach ($this->requested_level_ass_ids as $i) {
784  $id_arr = explode(":", $i);
785  $level = $this->skill_factory->profile()->profileLevel(
786  $this->profile->getId(),
787  (int) $id_arr[0],
788  (int) $id_arr[1],
789  (int) $id_arr[2],
790  (int) $id_arr[3]
791  );
792  $this->profile_manager->removeSkillLevel($level);
793  }
794  $this->profile_manager->fixSkillOrderNumbering($this->profile->getId());
795  }
796 
797  // profile completion check because of profile editing
798  $this->profile_completion_manager->writeCompletionEntryForAllAssignedUsersOfProfile($this->profile->getId());
799 
800  if ($local) {
801  $ilCtrl->redirect($this, "showLevelsWithLocalContext");
802  }
803  $ilCtrl->redirect($this, "showLevels");
804  }
805 
806  public function saveLevelOrder(): void
807  {
808  $lng = $this->lng;
809  $ilCtrl = $this->ctrl;
810  $local = $this->local_context;
811 
812  if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
813  return;
814  }
815 
816  $order = ilArrayUtil::stripSlashesArray($this->requested_level_order);
817  $this->profile_manager->updateSkillOrder($this->profile->getId(), $order);
818 
819  $this->tpl->setOnScreenMessage('success', $lng->txt("msg_obj_modified"), true);
820  if ($local) {
821  $ilCtrl->redirect($this, "showLevelsWithLocalContext");
822  }
823  $ilCtrl->redirect($this, "showLevels");
824  }
825 
826  public function showUsers(): void
827  {
828  $lng = $this->lng;
829  $tpl = $this->tpl;
830  $ilToolbar = $this->toolbar;
831 
832  // add member
833  if ($this->skill_tree_access_manager->hasManageProfilesPermission() && !$this->profile->getRefId() > 0) {
835  $this,
836  $ilToolbar,
837  array(
838  'auto_complete_name' => $lng->txt('user'),
839  'submit_name' => $lng->txt('skmg_assign_user')
840  )
841  );
842 
843  $ilToolbar->addSeparator();
844 
845  $button = $this->ui_fac->button()->standard(
846  $this->lng->txt("skmg_add_assignment"),
847  $this->ctrl->getLinkTargetByClass("ilRepositorySearchGUI", "start")
848  );
849  $ilToolbar->addComponent($button);
850  }
851 
852  $this->setTabs("users");
853 
854  $table = $this->table_manager->getProfileUserAssignmentTable(
855  $this->profile,
856  $this->skill_tree_access_manager
857  )->getComponent();
858  $tpl->setContent($this->ui_ren->render($table));
859  }
860 
861  public function assignUser(): void
862  {
863  $ilCtrl = $this->ctrl;
864  $lng = $this->lng;
865 
866  if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
867  return;
868  }
869 
870  // user assignment with toolbar
871  $user_id = ilObjUser::_lookupId($this->requested_user_login);
872  if ($user_id > 0) {
873  $this->profile_manager->addUserToProfile($this->profile->getId(), $user_id);
874  // profile completion check for added user
875  $this->profile_completion_manager->writeCompletionEntryForSingleProfileOfUser($user_id, $this->profile->getId());
876  $this->tpl->setOnScreenMessage('success', $lng->txt("msg_obj_modified"), true);
877  }
878 
879  // user assignment with ilRepositorySearchGUI
880  $users = $this->requested_users;
881  if (!empty($users)) {
882  foreach ($users as $id) {
883  if ($id > 0) {
884  $this->profile_manager->addUserToProfile($this->profile->getId(), $id);
885  // profile completion check for added user
886  $this->profile_completion_manager->writeCompletionEntryForSingleProfileOfUser($id, $this->profile->getId());
887  }
888  }
889  $this->tpl->setOnScreenMessage('success', $lng->txt("msg_obj_modified"), true);
890  }
891 
892  $ilCtrl->redirect($this, "showUsers");
893  }
894 
895  public function assignRole(array $role_ids): void
896  {
897  $ilCtrl = $this->ctrl;
898  $lng = $this->lng;
899 
900  if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
901  return;
902  }
903 
904  $success = false;
905  foreach ($role_ids as $id) {
906  if ($id > 0) {
907  $this->profile_manager->addRoleToProfile($this->profile->getId(), $id);
908  $this->profile_completion_manager->writeCompletionEntryForRole($id, $this->profile->getId());
909  $success = true;
910  }
911  }
912  if ($success) {
913  $this->tpl->setOnScreenMessage('success', $lng->txt("msg_obj_modified"), true);
914  }
915 
916  $ilCtrl->redirect($this, "showUsers");
917  }
918 
919  public function removeUsers(): void
920  {
921  $ilCtrl = $this->ctrl;
922  $lng = $this->lng;
923 
924  if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
925  return;
926  }
927 
928  if (!empty($this->requested_user_ids)) {
929  foreach ($this->requested_user_ids as $i) {
930  $type = ilObject::_lookupType($i);
931  switch ($type) {
932  case "usr":
933  $this->profile_manager->removeUserFromProfile($this->profile->getId(), $i);
934  break;
935 
936  case "role":
937  $this->profile_manager->removeRoleFromProfile($this->profile->getId(), $i);
938  break;
939 
940  default:
941  echo "not deleted";
942  }
943  }
944  $this->tpl->setOnScreenMessage("success", $lng->txt("msg_obj_modified"), true);
945  }
946  $ilCtrl->redirect($this, "showUsers");
947  }
948 
949  public function showObjects(): void
950  {
951  $tpl = $this->tpl;
952 
953  $this->setTabs("objects");
954 
955  $objects = $this->usage_manager->getAssignedObjectsForSkillProfile($this->profile->getId());
956 
957  $table = $this->table_manager->getAssignedObjectsTable(
958  $this,
959  $objects,
960  0,
961  0,
962  $this->profile->getId()
963  )->getComponent();
964  $tpl->setContent($this->ui_ren->render($table));
965  }
966 
967  public function exportProfiles(): void
968  {
969  $ilCtrl = $this->ctrl;
970  $lng = $this->lng;
971 
972  if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
973  return;
974  }
975 
976  $profiles_to_export = [];
977  if ($this->requested_table_profile_action === "exportProfiles"
978  && !empty($this->requested_table_profile_ids)
979  && $this->requested_table_profile_ids[0] === "ALL_OBJECTS"
980  ) {
981  $profiles = $this->skill_tree_id
982  ? $this->profile_manager->getProfilesForSkillTree($this->skill_tree_id)
983  : $this->profile_manager->getProfilesForAllSkillTrees();
984  foreach ($profiles as $profile) {
985  $profiles_to_export[] = $profile->getId();
986  }
987  } elseif ($this->requested_table_profile_action === "exportProfiles") {
988  $profiles_to_export = array_map("intval", $this->requested_table_profile_ids);
989  }
990 
991  if (empty($profiles_to_export)) {
992  $this->tpl->setOnScreenMessage('info', $lng->txt("no_checkbox"), true);
993  $ilCtrl->redirect($this, "");
994  }
995 
996  $exp = new ilExport();
997  $conf = $exp->getConfig("components/ILIAS/Skill");
998  $conf->setMode(ilSkillExportConfig::MODE_PROFILES);
999  $conf->setSelectedProfiles($profiles_to_export);
1000  $conf->setSkillTreeId($this->skill_tree_id);
1001  $exp->exportObject("skmg", ilObject::_lookupObjId($this->requested_ref_id));
1002 
1003  //ilExport::_createExportDirectory(0, "xml", "");
1004  //$export_dir = ilExport::_getExportDirectory($a_id, "xml", $a_type);
1005  //$exp->exportEntity("skprof", $_POST["id"], "", "components/ILIAS/Skill", $a_title, $a_export_dir, "skprof");
1006 
1007  $ilCtrl->redirectByClass(array("ilobjskilltreegui", "ilexportgui"), "");
1008  }
1009 
1010  public function showImportForm(): void
1011  {
1012  $tpl = $this->tpl;
1013  $ilTabs = $this->tabs;
1014 
1015  $tpl->setContent($this->initInputForm()->getHTML());
1016  }
1017 
1019  {
1020  $lng = $this->lng;
1021  $ilCtrl = $this->ctrl;
1022 
1023  $form = new ilPropertyFormGUI();
1024 
1025  $fi = new ilFileInputGUI($lng->txt("skmg_input_file"), "import_file");
1026  $fi->setSuffixes(array("zip"));
1027  $fi->setRequired(true);
1028  $form->addItem($fi);
1029 
1030  // save and cancel commands
1031  $form->addCommandButton("importProfiles", $lng->txt("import"));
1032  $form->addCommandButton("", $lng->txt("cancel"));
1033 
1034  $form->setTitle($lng->txt("import"));
1035  $form->setFormAction($ilCtrl->getFormAction($this));
1036 
1037  return $form;
1038  }
1039 
1040  public function importProfiles(): void
1041  {
1042  $tpl = $this->tpl;
1043  $lng = $this->lng;
1044  $ilCtrl = $this->ctrl;
1045 
1046  $form = $this->initInputForm();
1047  if ($form->checkInput()) {
1048  $imp = new ilImport();
1049  $conf = $imp->getConfig("components/ILIAS/Skill");
1050  $conf->setSkillTreeId($this->skill_tree_id);
1051  $imp->importEntity($_FILES["import_file"]["tmp_name"], $_FILES["import_file"]["name"], "skmg", "components/ILIAS/Skill");
1052 
1053  $this->tpl->setOnScreenMessage('success', $lng->txt("msg_obj_modified"), true);
1054  $ilCtrl->redirect($this, "");
1055  } else {
1056  $form->setValuesByPost();
1057  $tpl->setContent($form->getHTML());
1058  }
1059  }
1060 }
TableGUI class for skill profile levels.
This describes commonalities between all forms.
Definition: Form.php:32
Skill profile GUI class.
SkillTreeAccess $skill_tree_access_manager
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...
Profile SkillProfile $profile
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
Definition: ltitoken.php:61
This class represents a file property in a property form.
Interface Observer Contains several chained tasks and infos about them.
Request wrapper for guis in skill administration.
Help GUI class.
getLinkTarget(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
static _lookupTitle(int $a_obj_id, int $a_tref_id=0)
Import class.
static _lookupId($a_user_str)
setContent(string $a_html)
Sets content for standard template.
setTitle(string $a_title, bool $hidden=false)
Sets title in standard template.
setSuffixes(array $a_suffixes)
static lookupLevelTitle(int $a_id)
assignLevelSelectSkill(bool $update=false)
Output level table for profile assignment.
static getDefaultMemberRole(int $a_ref_id)
SkillAdminGUIRequest $admin_gui_request
redirectByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
Table TableManager $table_manager
initProfileForm(string $a_mode="edit")
static _lookupObjId(int $ref_id)
ilGlobalTemplateInterface $tpl
assignLevelToProfile(?Profile\SkillProfileLevel $level=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ILIAS Data Factory $df
SkillTreeService $tree_service
addButton(string $a_txt, string $a_cmd, string $a_target="", ?int $a_acc_key=null, string $a_additional_attrs='', string $a_id="", string $a_class='submit')
global $DIC
Definition: shib_login.php:22
setBackTarget(string $a_title, string $a_target, string $a_frame="")
ServerRequestInterface $request
__construct(SkillTreeAccess $skill_tree_access_manager, int $skill_tree_id=0)
clearTargets()
clear all targets
ArrayBasedRequestWrapper $query
Explorer class that works on tree objects (Services/Tree)
setDescription(string $a_descr)
Sets description below title in standard template.
Profile SkillProfileManager $profile_manager
static fillAutoCompleteToolbar(object $parent_object, ?ilToolbarGUI $toolbar=null, array $a_options=[], bool $a_sticky=false)
array( auto_complete_name = $lng->txt(&#39;user&#39;), auto_complete_size = 15, user_type = array(ilCoursePar...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This describes commonalities between all inputs.
Definition: Input.php:46
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
SkillInternalFactoryService $skill_factory
static _lookupType(int $id, bool $reference=false)
Basic Skill.
Profile SkillProfileCompletionManager $profile_completion_manager
static stripSlashesArray(array $a_arr, bool $a_strip_html=true, string $a_allow="")
Usage SkillUsageManager $usage_manager
getLinkTargetByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)