19 declare(strict_types=1);
43 protected Data\Factory
$df;
88 $this->
ctrl = $DIC->ctrl();
89 $this->tpl = $DIC[
"tpl"];
90 $this->
tabs = $DIC->tabs();
91 $this->
help = $DIC[
"ilHelp"];
92 $this->
toolbar = $DIC->toolbar();
93 $this->
lng = $DIC->language();
94 $this->df = new \ILIAS\Data\Factory();
95 $this->request = $DIC->http()->request();
96 $this->query = $DIC->http()->wrapper()->query();
97 $ilCtrl = $DIC->ctrl();
98 $this->resource_manager = $DIC->skills()->internal()->manager()->getResourceManager();
100 $ilCtrl->saveParameter($this, array(
"node_id",
"level_id"));
101 $this->base_skill_id = $a_node_id;
105 $this->requested_level_id = $this->admin_gui_request->getLevelId();
106 $this->requested_root_id = $this->admin_gui_request->getRootId();
107 $this->requested_level_order = $this->admin_gui_request->getOrder();
108 $this->requested_level_ids = $this->admin_gui_request->getLevelIds();
109 $this->requested_resource_ids = $this->admin_gui_request->getResourceIds();
110 $this->requested_suggested = $this->admin_gui_request->getSuggested();
111 $this->requested_trigger = $this->admin_gui_request->getTrigger();
112 $this->requested_table_action = $this->admin_gui_request->getTableLevelResourcesAction();
113 $this->requested_table_rep_ref_ids = $this->admin_gui_request->getTableRepoRefIds();
129 $next_class = $ilCtrl->getNextClass($this);
130 $cmd = $ilCtrl->getCmd();
131 switch ($next_class) {
133 $ret = $this->$cmd();
149 if (!$this->tree_access_manager->hasManageCompetencesPermission()) {
154 $it->setTitle($this->
form->getInput(
"title"));
155 $it->setDescription($this->
form->getInput(
"description"));
156 $it->setStatus((
int) $this->
form->getInput(
"status"));
157 $it->setSelfEvaluation((
bool) $this->
form->getInput(
"self_eval"));
160 $this->node_object = $it;
170 $this->node_object->getId()
172 $ilCtrl->redirectByClass(
"ilbasicskillgui",
"edit");
177 if (!$this->tree_access_manager->hasManageCompetencesPermission() && $this->
getType() ==
"skll" 178 || !$this->tree_access_manager->hasManageCompetenceTemplatesPermission() && $this->
getType() ==
"sktp") {
182 $this->node_object->setTitle($this->
form->getInput(
"title"));
183 $this->node_object->setDescription($this->
form->getInput(
"description"));
184 $this->node_object->setSelfEvaluation((
bool) $this->
form->getInput(
"self_eval"));
185 $this->node_object->setStatus((
int) $this->
form->getInput(
"status"));
186 $this->node_object->update();
199 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"skmg_skill_in_use"));
200 } elseif ($this->tree_access_manager->hasManageCompetencesPermission()) {
201 $ilToolbar->addButton(
202 $lng->
txt(
"skmg_add_level"),
203 $ilCtrl->getLinkTarget($this,
"addLevel")
208 $this->base_skill_id,
213 $this->tree_access_manager->hasManageCompetencesPermission()
218 public function initForm(
string $a_mode =
"edit"): void
227 $ti->setMaxLength(200);
229 $ti->setRequired(
true);
230 $this->
form->addItem($ti);
235 $this->
form->addItem($ta);
242 $cb->setInfo($lng->
txt(
"skmg_selectable_info"));
243 $this->
form->addItem($cb);
246 if ($this->tree_access_manager->hasManageCompetencesPermission()) {
247 if ($a_mode ==
"create") {
248 $this->
form->addCommandButton(
"save", $lng->
txt(
"save"));
249 $this->
form->addCommandButton(
"cancelSave", $lng->
txt(
"cancel"));
250 $this->
form->setTitle($lng->
txt(
"skmg_create_skll"));
252 $this->
form->addCommandButton(
"update", $lng->
txt(
"save"));
253 $this->
form->setTitle($lng->
txt(
"skmg_edit_skll"));
256 foreach ($this->
form->getItems() as $item) {
257 $item->setDisabled(
true);
261 $ilCtrl->setParameter($this,
"node_id", $this->requested_node_id);
262 $this->
form->setFormAction($ilCtrl->getFormAction($this));
268 parent::editProperties();
291 if (!$this->tree_access_manager->hasManageCompetencesPermission() && $this->
getType() ==
"skll" 292 || !$this->tree_access_manager->hasManageCompetenceTemplatesPermission() && $this->
getType() ==
"sktp") {
297 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"skmg_skill_in_use"));
310 if (!$this->tree_access_manager->hasManageCompetencesPermission() && $this->
getType() ==
"skll" 311 || !$this->tree_access_manager->hasManageCompetenceTemplatesPermission() && $this->
getType() ==
"sktp") {
316 if ($this->request->getMethod() ==
"POST" 317 && $this->request->getQueryParams()[
"level_settings"] ==
"level_settings_config") {
319 $result =
$form->getData();
321 if (is_null($result)) {
326 $this->node_object->addLevel(
327 $result[
"section_level"][
"input_ti"],
328 $result[
"section_level"][
"input_desc"]
331 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
332 $ilCtrl->redirect($this,
"edit");
344 if (!$this->tree_access_manager->hasManageCompetencesPermission() && $this->
getType() ==
"skll" 345 || !$this->tree_access_manager->hasManageCompetenceTemplatesPermission() && $this->
getType() ==
"sktp") {
350 if ($this->request->getMethod() ==
"POST" 351 && $this->request->getQueryParams()[
"level_settings"] ==
"level_settings_config") {
353 $result =
$form->getData();
355 if (is_null($result)) {
360 $this->node_object->writeLevelTitle(
361 $this->requested_level_id,
362 $result[
"section_level"][
"input_ti"]
365 $this->node_object->writeLevelDescription(
366 $this->requested_level_id,
367 $result[
"section_level"][
"input_desc"]
370 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
371 $ilCtrl->redirect($this,
"edit");
383 $ilCtrl->saveParameter($this,
"level_id");
385 $ilTabs->activateTab(
"level_settings");
387 $input_ti = $this->ui_fac->input()->field()->text($lng->
txt(
"title"))
388 ->withRequired(
true);
390 $input_desc = $this->ui_fac->input()->field()->textarea($lng->
txt(
"description"));
392 $ilCtrl->setParameter(
395 'level_settings_config' 398 if ($a_mode ==
"create") {
399 $section_level = $this->ui_fac->input()->field()->section(
400 [
"input_ti" => $input_ti,
401 "input_desc" => $input_desc],
402 $lng->
txt(
"skmg_new_level")
404 $form_action = $ilCtrl->getFormAction($this,
"saveLevel");
406 $data = $this->node_object->getLevelData($this->requested_level_id);
407 $input_ti = $input_ti->withValue(
$data[
"title"]);
408 $input_desc = $input_desc->withValue(
$data[
"description"]);
410 $section_level = $this->ui_fac->input()->field()->section(
411 [
"input_ti" => $input_ti,
412 "input_desc" => $input_desc],
413 $lng->
txt(
"skmg_edit_level")
415 $form_action = $ilCtrl->getFormAction($this,
"updateLevel");
418 $form = $this->ui_fac->input()->container()->form()->standard(
420 [
"section_level" => $section_level]
431 if (!$this->tree_access_manager->hasManageCompetencesPermission() && $this->
getType() ==
"skll" 432 || !$this->tree_access_manager->hasManageCompetenceTemplatesPermission() && $this->
getType() ==
"sktp") {
437 $this->node_object->updateLevelOrder($order);
438 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
439 $ilCtrl->redirect($this,
"edit");
448 if (!$this->tree_access_manager->hasManageCompetencesPermission() && $this->
getType() ==
"skll" 449 || !$this->tree_access_manager->hasManageCompetenceTemplatesPermission() && $this->
getType() ==
"sktp") {
455 if (empty($this->requested_level_ids)) {
456 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"no_checkbox"),
true);
457 $ilCtrl->redirect($this,
"edit");
460 $cgui->setFormAction($ilCtrl->getFormAction($this));
461 $cgui->setHeaderText($lng->
txt(
"skmg_really_delete_levels"));
462 $cgui->setCancel($lng->
txt(
"cancel"),
"edit");
463 $cgui->setConfirm($lng->
txt(
"delete"),
"deleteLevel");
465 foreach ($this->requested_level_ids as $i) {
478 if (!$this->tree_access_manager->hasManageCompetencesPermission() && $this->
getType() ==
"skll" 479 || !$this->tree_access_manager->hasManageCompetenceTemplatesPermission() && $this->
getType() ==
"sktp") {
483 if (!empty($this->requested_level_ids)) {
484 foreach ($this->requested_level_ids as
$id) {
485 $this->node_object->deleteLevel($id);
487 $this->node_object->fixLevelNumbering();
489 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
502 $ilTabs->clearTargets();
505 $ilTabs->setBackTarget(
507 $ilCtrl->getLinkTarget($this,
"edit")
510 if ($this->requested_level_id > 0) {
513 $lng->
txt(
"settings"),
514 $ilCtrl->getLinkTarget($this,
"editLevel")
519 $lng->
txt(
"skmg_resources"),
520 $ilCtrl->getLinkTarget($this,
"showLevelResources")
525 if ($this->requested_level_id > 0) {
526 $tpl->
setTitle($lng->
txt(
"skmg_skill_level") .
": " .
532 $desc = $this->skill_tree_node_manager->getWrittenPath($this->node_object->getId());
536 public function setTabs(
string $a_tab =
"levels"): void
544 $ilTabs->clearTargets();
549 if (is_object($this->node_object)) {
553 $lng->
txt(
"skmg_skill_levels"),
554 $ilCtrl->getLinkTarget($this,
'edit')
560 $lng->
txt(
"settings"),
561 $ilCtrl->getLinkTarget($this,
'editProperties')
570 $parent_node_id = $this->tree_repo->getParentNodeIdForNodeId($this->requested_node_id);
574 if ($parent_type ===
"scat") {
575 $ilCtrl->setParameterByClass(
576 "ilskillcategorygui",
580 $ilTabs->setBackTarget(
582 $ilCtrl->getLinkTargetByClass(
"ilskillcategorygui",
"listItems")
584 $ilCtrl->setParameterByClass(
585 "ilskillcategorygui",
590 $ilCtrl->setParameterByClass(
593 $this->skill_tree_node_manager->getRootId()
595 $ilTabs->setBackTarget(
596 $lng->
txt(
"skmg_skills"),
597 $ilCtrl->getLinkTargetByClass(
"ilskillrootgui",
"listSkills")
599 $ilCtrl->setParameterByClass(
602 $this->requested_node_id
606 $ilTabs->activateTab($a_tab);
609 $this->node_object->getTitle());
616 parent::setTitleIcon();
630 $ilCtrl->setParameterByClass(
"ilskillrootgui",
"node_id", $this->requested_node_id);
631 $ilCtrl->redirectByClass(
"ilskillrootgui",
"listSkills");
635 parent::redirectToParent();
651 if ($this->tree_access_manager->hasManageCompetencesPermission() && $this->
getType() ==
"skll" 652 || $this->tree_access_manager->hasManageCompetenceTemplatesPermission() && $this->
getType() ==
"sktp") {
653 $ilToolbar->addButton(
654 $lng->
txt(
"skmg_add_resource"),
655 $ilCtrl->getLinkTarget($this,
"addLevelResource")
662 $ilTabs->activateTab(
"level_resources");
664 $table = $this->table_manager->getLevelResourcesTable(
665 $this->requested_ref_id,
666 $this->base_skill_id,
668 $this->requested_level_id
671 $tpl->
setContent($this->ui_ren->render($table));
680 $ilTabs->activateTab(
"level_resources");
691 if (!$exp->handleCommand()) {
702 if (!$this->tree_access_manager->hasManageCompetencesPermission() && $this->
getType() ==
"skll" 703 || !$this->tree_access_manager->hasManageCompetenceTemplatesPermission() && $this->
getType() ==
"sktp") {
708 $this->resource_manager->setResource(
709 $this->base_skill_id,
711 $this->requested_level_id,
717 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
720 $ilCtrl->redirect($this,
"showLevelResources");
728 if (!$this->tree_access_manager->hasManageCompetencesPermission() && $this->
getType() ==
"skll" 729 || !$this->tree_access_manager->hasManageCompetenceTemplatesPermission() && $this->
getType() ==
"sktp") {
733 if (!empty($this->requested_resource_ids)) {
734 foreach ($this->requested_resource_ids as $i) {
735 $this->resource_manager->removeResource(
736 $this->base_skill_id,
738 $this->requested_level_id,
742 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
745 $ilCtrl->redirect($this,
"showLevelResources");
754 if ($this->requested_table_action ==
"setSuggested" 755 && !empty($this->requested_table_rep_ref_ids)
756 && $this->requested_table_rep_ref_ids[0] ===
"ALL_OBJECTS" 758 $resources = $this->resource_manager->getResourcesOfLevel(
759 $this->base_skill_id,
761 $this->requested_level_id
764 $this->resource_manager->setResourceAsSuggested(
765 $resource->getBaseSkillId(),
766 $resource->getTrefId(),
767 $resource->getLevelId(),
768 $resource->getRepoRefId()
771 } elseif ($this->requested_table_action ==
"setSuggested") {
772 if (empty($this->requested_table_rep_ref_ids)) {
774 $ilCtrl->redirect($this,
"showLevelResources");
776 foreach ($this->requested_table_rep_ref_ids as $i) {
777 $this->resource_manager->setResourceAsSuggested(
778 $this->base_skill_id,
780 $this->requested_level_id,
788 $ilCtrl->redirect($this,
"showLevelResources");
797 if ($this->requested_table_action ==
"unsetSuggested" 798 && !empty($this->requested_table_rep_ref_ids)
799 && $this->requested_table_rep_ref_ids[0] ===
"ALL_OBJECTS" 801 $resources = $this->resource_manager->getResourcesOfLevel(
802 $this->base_skill_id,
804 $this->requested_level_id
807 $this->resource_manager->setResourceAsNotSuggested(
808 $resource->getBaseSkillId(),
809 $resource->getTrefId(),
810 $resource->getLevelId(),
811 $resource->getRepoRefId()
814 } elseif ($this->requested_table_action ==
"unsetSuggested") {
815 if (empty($this->requested_table_rep_ref_ids)) {
817 $ilCtrl->redirect($this,
"showLevelResources");
819 foreach ($this->requested_table_rep_ref_ids as $i) {
820 $this->resource_manager->setResourceAsNotSuggested(
821 $this->base_skill_id,
823 $this->requested_level_id,
831 $ilCtrl->redirect($this,
"showLevelResources");
840 if ($this->requested_table_action ==
"setTrigger" 841 && !empty($this->requested_table_rep_ref_ids)
842 && $this->requested_table_rep_ref_ids[0] ===
"ALL_OBJECTS" 844 $resources = $this->resource_manager->getResourcesOfLevel(
845 $this->base_skill_id,
847 $this->requested_level_id
850 $this->resource_manager->setResourceAsTrigger(
851 $resource->getBaseSkillId(),
852 $resource->getTrefId(),
853 $resource->getLevelId(),
854 $resource->getRepoRefId()
857 } elseif ($this->requested_table_action ==
"setTrigger") {
858 if (empty($this->requested_table_rep_ref_ids)) {
860 $ilCtrl->redirect($this,
"showLevelResources");
862 foreach ($this->requested_table_rep_ref_ids as $i) {
863 $this->resource_manager->setResourceAsTrigger(
864 $this->base_skill_id,
866 $this->requested_level_id,
874 $ilCtrl->redirect($this,
"showLevelResources");
883 if ($this->requested_table_action ==
"unsetTrigger" 884 && !empty($this->requested_table_rep_ref_ids)
885 && $this->requested_table_rep_ref_ids[0] ===
"ALL_OBJECTS" 887 $resources = $this->resource_manager->getResourcesOfLevel(
888 $this->base_skill_id,
890 $this->requested_level_id
893 $this->resource_manager->setResourceAsNoTrigger(
894 $resource->getBaseSkillId(),
895 $resource->getTrefId(),
896 $resource->getLevelId(),
897 $resource->getRepoRefId()
900 } elseif ($this->requested_table_action ==
"unsetTrigger") {
901 if (empty($this->requested_table_rep_ref_ids)) {
903 $ilCtrl->redirect($this,
"showLevelResources");
905 foreach ($this->requested_table_rep_ref_ids as $i) {
906 $this->resource_manager->setResourceAsNoTrigger(
907 $this->base_skill_id,
909 $this->requested_level_id,
917 $ilCtrl->redirect($this,
"showLevelResources");
setOnScreenMessage(string $type, string $a_txt, bool $a_keep=false)
Set a message to be displayed to the user.
initLevelForm(string $a_mode="edit")
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...
setSkillNodeDescription()
addUsageTab(ilTabsGUI $a_tabs)
ilGlobalTemplateInterface $tpl
static _lookupTitle(int $a_obj_id, int $a_tref_id=0)
ArrayBasedRequestWrapper $query
setContent(string $a_html)
Sets content for standard template.
setParameterByClass(string $a_class, string $a_parameter, $a_value)
setTabs(string $a_tab="levels")
ServerRequestInterface $request
setTitle(string $a_title, bool $hidden=false)
Sets title in standard template.
static lookupLevelTitle(int $a_id)
initForm(string $a_mode="edit")
static _lookupType(int $a_obj_id)
Resource SkillResourcesManager $resource_manager
Basic GUI class for skill tree nodes.
redirect(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
setScreenIdComponent(string $a_comp)
addObjectsTab(ilTabsGUI $a_tabs)
array $requested_level_ids
saveResourcesAsNoTrigger()
string $requested_table_action
saveResourcesAsSuggested()
array $requested_resource_ids
array $requested_level_order
form( $class_path, string $cmd, string $submit_caption="")
setDescription(string $a_descr)
Sets description below title in standard template.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
array $requested_suggested
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
array $requested_table_rep_ref_ids
static stripSlashesArray(array $a_arr, bool $a_strip_html=true, string $a_allow="")
saveResourcesAsNotSuggested()
addStatusInput(ilPropertyFormGUI $a_form)
__construct(Node\SkillTreeNodeManager $node_manager, int $a_node_id=0)
redirectToParent(bool $a_tmp_mode=false)
Redirect to parent (identified by current node_id)
Class ArrayBasedRequestWrapper.