19 declare(strict_types=1);
42 $this->
ctrl = $DIC->ctrl();
43 $this->
lng = $DIC->language();
44 $this->
tabs = $DIC->tabs();
45 $this->tpl = $DIC[
"tpl"];
46 $this->
help = $DIC[
"ilHelp"];
47 $this->
toolbar = $DIC->toolbar();
48 $ilCtrl = $DIC->ctrl();
50 $this->tref_id = $a_tref_id;
52 $ilCtrl->saveParameter($this, array(
"node_id",
"level_id"));
62 public function initForm(
string $a_mode =
"edit"): void
71 $ti->setMaxLength(200);
73 $ti->setRequired(
true);
74 $this->
form->addItem($ti);
79 $this->
form->addItem($ta);
82 if ($this->tree_access_manager->hasManageCompetenceTemplatesPermission()) {
83 if ($a_mode ==
"create") {
84 $this->
form->addCommandButton(
"save", $lng->
txt(
"save"));
85 $this->
form->addCommandButton(
"cancelSave", $lng->
txt(
"cancel"));
86 $this->
form->setTitle($lng->
txt(
"skmg_create_skll"));
88 $this->
form->addCommandButton(
"update", $lng->
txt(
"save"));
89 $this->
form->setTitle($lng->
txt(
"skmg_edit_skll"));
92 foreach ($this->
form->getItems() as $item) {
93 $item->setDisabled(
true);
97 $ilCtrl->setParameter($this,
"node_id", $this->requested_node_id);
98 $this->
form->setFormAction($ilCtrl->getFormAction($this));
110 $ilTabs->clearTargets();
112 $ilTabs->setBackTarget(
113 $lng->
txt(
"skmg_skill_levels"),
114 $ilCtrl->getLinkTarget($this,
"edit")
117 if ($this->requested_level_id > 0) {
118 if ($this->tref_id == 0) {
121 $lng->
txt(
"settings"),
122 $ilCtrl->getLinkTarget($this,
"editLevel")
127 $lng->
txt(
"skmg_resources"),
128 $ilCtrl->getLinkTarget($this,
"showLevelResources")
134 if ($this->requested_level_id > 0) {
135 $tpl->
setTitle($lng->
txt(
"skmg_skill_level") .
": " .
141 $desc = $this->skill_tree_node_manager->getWrittenPath($this->node_object->getId());
154 public function setTabs(
string $a_tab =
"levels"): void
162 $ilTabs->clearTargets();
165 $parent_node_id = $this->tree_repo->getParentNodeIdForNodeId($this->requested_node_id);
169 if ($this->tref_id == 0) {
170 if ($parent_type ===
"sctp") {
171 $ilCtrl->setParameterByClass(
172 "ilskilltemplatecategorygui",
176 $ilTabs->setBackTarget(
178 $ilCtrl->getLinkTargetByClass(
"ilskilltemplatecategorygui",
"listItems")
180 $ilCtrl->setParameterByClass(
181 "ilskilltemplatecategorygui",
186 $ilTabs->setBackTarget(
187 $lng->
txt(
"skmg_skill_templates"),
188 $ilCtrl->getLinkTargetByClass(
"ilobjskilltreegui",
"editSkillTemplates")
193 if (is_object($this->node_object)) {
194 if ($this->tref_id == 0) {
195 $tpl->
setTitle($lng->
txt(
"skmg_skill_template") .
": " .
196 $this->node_object->getTitle());
199 $this->node_object->getTitle()
206 $lng->
txt(
"skmg_skill_levels"),
207 $ilCtrl->getLinkTarget($this,
'edit')
211 if ($this->tref_id == 0) {
214 $lng->
txt(
"settings"),
215 $ilCtrl->getLinkTarget($this,
'editProperties')
228 $ilTabs->activateTab($a_tab);
230 parent::setTitleIcon();
241 if (!$this->tree_access_manager->hasManageCompetenceTemplatesPermission()) {
246 $it->setTitle($this->
form->getInput(
"title"));
247 $it->setDescription($this->
form->getInput(
"description"));
250 $this->node_object = $it;
257 if (!$this->tree_access_manager->hasManageCompetenceTemplatesPermission()) {
262 "ilbasicskilltemplategui",
264 $this->node_object->getId()
266 $ilCtrl->redirectByClass(
"ilbasicskilltemplategui",
"edit");
279 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"skmg_skill_in_use"));
280 } elseif ($this->tree_access_manager->hasManageCompetenceTemplatesPermission()) {
281 if ($this->tref_id == 0) {
282 $ilToolbar->addButton(
283 $lng->
txt(
"skmg_add_level"),
284 $ilCtrl->getLinkTarget($this,
"addLevel")
290 $this->requested_node_id,
295 $this->tree_access_manager->hasManageCompetenceTemplatesPermission()
306 if ($this->tref_id > 0) {
315 $usages = $this->usage_manager->getAllUsagesOfTemplate($this->base_skill_id);
318 foreach ($usages as $k => $usage) {
319 $usages_ui = $this->skill_ui_service->getUsagesUI($k, $usage);
320 $html .= $usages_ui->render() .
"<br/><br/>";
331 if ($this->tref_id > 0) {
332 parent::showObjects();
340 $objects = $this->usage_manager->getAssignedObjectsForSkillTemplate($this->base_skill_id);
342 $table = $this->table_manager->getAssignedObjectsTable(
348 $tpl->
setContent($this->ui_ren->render($table));
356 $ilCtrl->redirectByClass(
"ilskillrootgui",
"listTemplates");
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)
static _lookupTitle(int $a_obj_id, int $a_tref_id=0)
setContent(string $a_html)
Sets content for standard template.
setParameterByClass(string $a_class, string $a_parameter, $a_value)
setTitle(string $a_title, bool $hidden=false)
Sets title in standard template.
static lookupLevelTitle(int $a_id)
static _lookupType(int $a_obj_id)
__construct(Node\SkillTreeNodeManager $node_manager, int $a_node_id=0, int $a_tref_id=0)
setScreenIdComponent(string $a_comp)
addObjectsTab(ilTabsGUI $a_tabs)
static getIconPath(int $a_obj_id, string $a_type, string $a_size="", int $a_status=0)
setTitleIcon(string $a_icon_path, string $a_icon_desc="")
set title icon
form( $class_path, string $cmd, string $submit_caption="")
setDescription(string $a_descr)
Sets description below title in standard template.
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
ilGlobalTemplateInterface $tpl
initForm(string $a_mode="edit")
setTabs(string $a_tab="levels")
redirectToParent(bool $a_tmp_mode=false)
Basic skill template GUI class.