19 declare(strict_types=1);
43 $this->
ctrl = $DIC->ctrl();
44 $this->tpl = $DIC[
"tpl"];
45 $this->
tabs = $DIC->tabs();
46 $this->
lng = $DIC->language();
47 $this->
help = $DIC[
"ilHelp"];
48 $ilCtrl = $DIC->ctrl();
50 $ilCtrl->saveParameter($this,
"node_id");
51 $this->tref_id = $a_tref_id;
69 $next_class = $ilCtrl->getNextClass($this);
70 $cmd = $ilCtrl->getCmd();
72 switch ($next_class) {
79 public function setTabs(
string $a_tab): void
87 $ilTabs->clearTargets();
94 $ilCtrl->getLinkTarget($this,
'listItems')
99 if ($this->tref_id == 0) {
102 $lng->
txt(
"settings"),
103 $ilCtrl->getLinkTarget($this,
'editProperties')
110 $parent_node_id = $this->tree_repo->getParentNodeIdForNodeId($this->requested_node_id);
115 if ($this->tref_id == 0) {
116 if ($parent_type ===
"sctp") {
117 $ilCtrl->setParameter(
122 $ilTabs->setBackTarget(
124 $ilCtrl->getLinkTarget($this,
"listItems")
126 $ilCtrl->setParameter(
129 $this->requested_node_id
132 $ilCtrl->setParameterByClass(
135 $this->skill_tree_node_manager->getRootId()
137 $ilTabs->setBackTarget(
138 $lng->
txt(
"skmg_skill_templates"),
139 $ilCtrl->getLinkTargetByClass(
"ilskillrootgui",
"listTemplates")
141 $ilCtrl->setParameterByClass(
144 $this->requested_node_id
149 parent::setTitleIcon();
151 $lng->
txt(
"skmg_sctp") .
": " . $this->node_object->getTitle()
155 $ilTabs->activateTab($a_tab);
158 public function initForm(
string $a_mode =
"edit"): void
167 $ti->setMaxLength(200);
169 $ti->setRequired(
true);
170 $this->
form->addItem($ti);
175 $this->
form->addItem($ta);
178 if ($this->tree_access_manager->hasManageCompetenceTemplatesPermission()) {
179 if ($a_mode ==
"create") {
180 $this->
form->addCommandButton(
"save", $lng->
txt(
"save"));
181 $this->
form->addCommandButton(
"cancelSave", $lng->
txt(
"cancel"));
182 $this->
form->setTitle($lng->
txt(
"skmg_create_" . $this->getType()));
184 $this->
form->addCommandButton(
"update", $lng->
txt(
"save"));
185 $this->
form->setTitle($lng->
txt(
"skmg_edit_" . $this->getType()));
188 foreach ($this->
form->getItems() as $item) {
189 $item->setDisabled(
true);
193 $ilCtrl->setParameter($this,
"node_id", $this->requested_node_id);
194 $this->
form->setFormAction($ilCtrl->getFormAction($this));
203 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"skmg_skill_in_use"));
206 if ($this->tree_access_manager->hasManageCompetenceTemplatesPermission()) {
207 if ($this->tref_id == 0) {
208 self::addCreationButtons();
217 $this->requested_node_id,
229 $ilCtrl = $DIC->ctrl();
230 $lng = $DIC->language();
231 $ilToolbar = $DIC->toolbar();
232 $ilUser = $DIC->user();
237 $ilCtrl->setParameterByClass(
"ilobjskillmanagementgui",
"tmpmode", 1);
239 $ilCtrl->setParameterByClass(
240 "ilbasicskilltemplategui",
244 $ilToolbar->addButton(
245 $lng->
txt(
"skmg_create_skill_template"),
246 $ilCtrl->getLinkTargetByClass(
"ilbasicskilltemplategui",
"create")
248 $ilCtrl->setParameterByClass(
249 "ilskilltemplatecategorygui",
253 $ilToolbar->addButton(
254 $lng->
txt(
"skmg_create_skill_template_category"),
255 $ilCtrl->getLinkTargetByClass(
"ilskilltemplatecategorygui",
"create")
260 if ($ilUser->clipboardHasObjectsOfType(
"sktp")) {
261 $ilToolbar->addSeparator();
263 $ilToolbar->addButton(
264 $lng->
txt(
"skmg_insert_skill_template_from_clip"),
265 $ilCtrl->getLinkTargetByClass(
"ilskilltemplatecategorygui",
"insertSkillTemplateClip")
270 if ($ilUser->clipboardHasObjectsOfType(
"sctp")) {
272 $ilToolbar->addSeparator();
275 $ilToolbar->addButton(
276 $lng->
txt(
"skmg_insert_template_category_from_clip"),
277 $ilCtrl->getLinkTargetByClass(
"ilskilltemplatecategorygui",
"insertTemplateCategoryClip")
285 parent::editProperties();
290 if (!$this->tree_access_manager->hasManageCompetenceTemplatesPermission()) {
295 $it->setTitle($this->
form->getInput(
"title"));
296 $it->setDescription($this->
form->getInput(
"description"));
303 if (!$this->tree_access_manager->hasManageCompetenceTemplatesPermission()) {
307 $this->node_object->setTitle($this->
form->getInput(
"title"));
308 $this->node_object->setDescription($this->
form->getInput(
"description"));
309 $this->node_object->setOrderNr((
int) $this->
form->getInput(
"order_nr"));
310 $this->node_object->setSelfEvaluation((
bool) $this->
form->getInput(
"self_eval"));
311 $this->node_object->update();
324 if ($this->tref_id > 0) {
333 $usages = $this->usage_manager->getAllUsagesOfTemplate($this->requested_node_id);
336 foreach ($usages as $k => $usage) {
337 $usages_ui = $this->skill_ui_service->getUsagesUI($k, $usage);
338 $html .= $usages_ui->render() .
"<br/><br/>";
346 parent::redirectToParent(
true);
redirectToParent(bool $a_tmp_mode=false)
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.
initForm(string $a_mode="edit")
setTitle(string $a_title, bool $hidden=false)
Sets title in standard template.
static _lookupType(int $a_obj_id)
ilGlobalTemplateInterface $tpl
Basic GUI class for skill tree nodes.
__construct(Node\SkillTreeNodeManager $node_manager, int $a_node_id=0, int $a_tref_id=0)
setScreenIdComponent(string $a_comp)
SkillAdminGUIRequest $admin_gui_request
Skill template category GUI class.
form( $class_path, string $cmd, string $submit_caption="")
static addCreationButtons()
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.