5 include_once(
"./Services/Skill/classes/class.ilBasicSkillTemplateGUI.php");
6 include_once(
"./Services/Skill/classes/class.ilSkillTemplateReference.php");
26 $this->ctrl = $DIC->ctrl();
27 $this->tpl = $DIC[
"tpl"];
28 $this->tabs = $DIC->tabs();
29 $this->lng = $DIC->language();
30 $this->
help = $DIC[
"ilHelp"];
33 $ilCtrl->saveParameter($this,
"obj_id");
34 $ilCtrl->saveParameter($this,
"tref_id");
38 $this->tref_id = $a_tref_id;
39 if (is_object($this->node_object)) {
40 $this->base_skill_id = $this->node_object->getSkillTemplateId();
63 $next_class =
$ilCtrl->getNextClass($this);
66 switch ($next_class) {
84 $ilTabs->clearTargets();
85 $ilHelp->setScreenIdComponent(
"skmg_sktr");
87 if (is_object($this->node_object)) {
88 $sk_id = $this->node_object->getSkillTemplateId();
91 if ($obj_type ==
"sctp") {
96 $ilCtrl->getLinkTarget($this,
'listItems')
102 $lng->txt(
"skmg_skill_levels"),
103 $ilCtrl->getLinkTarget($this,
'listItems')
110 $lng->txt(
"settings"),
111 $ilCtrl->getLinkTarget($this,
'editProperties')
129 parent::setTitleIcon();
131 $lng->txt(
"skmg_sktr") .
": " . $this->node_object->getTitle() . $add
135 $ilTabs->activateTab($a_tab);
150 $ilCtrl->saveParameter($this,
"parent_id");
151 $ilCtrl->saveParameter($this,
"target");
153 $tpl->setContent($this->form->getHTML());
168 $tpl->setContent($this->form->getHTML());
181 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
185 include_once(
"./Services/Skill/classes/class.ilSkillTreeNode.php");
190 $ti->setRequired(
true);
191 $this->form->addItem($ti);
194 if ($a_mode ==
"edit") {
199 $ne->setInfo(
$lng->txt(
"skmg_description_info"));
200 $this->form->addItem($ne);
206 "" =>
$lng->txt(
"please_select"),
208 foreach ($tmplts as $tmplt) {
209 $options[$tmplt[
"child"]] = $tmplt[
"title"];
211 if ($a_mode !=
"edit") {
213 $si->setOptions($options);
214 $si->setRequired(
true);
215 $this->form->addItem(
$si);
218 $ne->
setValue($options[$this->node_object->getSkillTemplateId()]);
219 $this->form->addItem($ne);
228 $this->form->addItem($cb);
231 if ($a_mode ==
"create") {
232 $this->form->addCommandButton(
"save",
$lng->txt(
"save"));
233 $this->form->addCommandButton(
"cancel",
$lng->txt(
"cancel"));
234 $this->form->setTitle(
$lng->txt(
"skmg_new_sktr"));
236 $this->form->addCommandButton(
"updateSkillTemplateReference",
$lng->txt(
"save"));
237 $this->form->setTitle(
$lng->txt(
"skmg_edit_sktr"));
241 $this->form->setFormAction(
$ilCtrl->getFormAction($this));
250 $values[
"skill_template_id"] = $this->node_object->getSkillTemplateId();
251 $values[
"title"] = $this->node_object->getTitle();
252 $values[
"description"] = $this->node_object->getDescription();
253 $values[
"selectable"] = $this->node_object->getSelfEvaluation();
254 $values[
"status"] = $this->node_object->getStatus();
255 $this->form->setValuesByArray($values);
270 $sktr->setTitle(
$_POST[
"title"]);
271 $sktr->setDescription(
$_POST[
"description"]);
272 $sktr->setSkillTemplateId(
$_POST[
"skill_template_id"]);
273 $sktr->setSelfEvaluation(
$_POST[
"selectable"]);
274 $sktr->setOrderNr(
$tree->getMaxOrderNr((
int)
$_GET[
"obj_id"]) + 10);
275 $sktr->setStatus(
$_POST[
"status"]);
278 $this->node_object = $sktr;
289 "ilskilltemplatereferencegui",
291 $this->node_object->getId()
294 "ilskilltemplatereferencegui",
296 $this->node_object->getSkillTemplateId()
298 $ilCtrl->redirectByClass(
"ilskilltemplatereferencegui",
"listItems");
315 if ($this->form->checkInput()) {
318 $this->node_object->setTitle(
$_POST[
"title"]);
319 $this->node_object->setDescription(
$_POST[
"description"]);
320 $this->node_object->setSelfEvaluation(
$_POST[
"selectable"]);
321 $this->node_object->setStatus(
$_POST[
"status"]);
322 $this->node_object->update();
324 ilUtil::sendSuccess(
$lng->txt(
"msg_obj_modified"),
true);
325 $ilCtrl->redirect($this,
"editProperties");
328 $this->form->setValuesByPost();
329 $tpl->setContent($this->form->getHtml());
342 $ilCtrl->redirectByClass(
"ilobjskillmanagementgui",
"editSkills");
359 $sk_id = $this->node_object->getSkillTemplateId();
362 if ($obj_type ==
"sctp") {
363 include_once(
"./Services/Skill/classes/class.ilSkillCatTableGUI.php");
369 $this->node_object->getId()
371 $tpl->setContent($table->getHTML());
372 } elseif ($obj_type ==
"sktp") {
373 include_once(
"./Services/Skill/classes/class.ilSkillLevelTableGUI.php");
375 $tpl->setContent($table->getHTML());
addUsageTab($a_tabs)
Add usage tab.
setValue($a_value)
Set Value.
Skill Template Reference.
setSkillNodeDescription()
Set skill node description.
getValues()
Get current values for from.
__construct($a_tref_id=0)
Constructor.
static putInTree($a_obj, $a_parent_id="", $a_target_node_id="")
Put this object into the skill tree.
static _lookupType($a_obj_id)
Lookup Type.
checkPermissionBool($a_perm)
Check permission pool.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
editProperties()
Edit properties.
setTabs($a_tab="")
output tabs
static _lookupDescription($a_obj_id)
Lookup Description.
Skill template reference GUI class.
static _lookupTemplateId($a_obj_id)
Lookup template ID.
updateSkillTemplateReference()
Update form.
initForm($a_mode="edit")
Init form.
static _lookupTitle($a_obj_id, $a_tref_id=0)
Lookup Title.
This class represents a non editable value in a property form.
__construct(Container $dic, ilPlugin $plugin)
executeCommand()
Execute command.
Basic skill template GUI class.
addStatusInput(ilPropertyFormGUI $a_form)
Add status input.
static getTopTemplates()
Get top skill templates and template categories.