5 include_once(
"./Services/Skill/classes/class.ilBasicSkillTemplate.php");
6 include_once(
"./Services/Skill/classes/class.ilBasicSkillGUI.php");
57 $this->ctrl = $DIC->ctrl();
58 $this->lng = $DIC->language();
59 $this->tabs = $DIC->tabs();
60 $this->tpl = $DIC[
"tpl"];
61 $this->
help = $DIC[
"ilHelp"];
62 $this->toolbar = $DIC->toolbar();
65 $this->tref_id = $a_tref_id;
67 $ilCtrl->saveParameter($this, array(
"obj_id",
"level_id"));
90 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
95 $ti->setMaxLength(200);
97 $ti->setRequired(
true);
98 $this->form->addItem($ti);
103 $this->form->addItem($ta);
108 $ni->setMaxLength(6);
110 $ni->setRequired(
true);
111 if ($a_mode ==
"create") {
112 include_once(
"./Services/Skill/classes/class.ilSkillTree.php");
114 $max =
$tree->getMaxOrderNr((
int)
$_GET[
"obj_id"],
true);
115 $ni->setValue($max + 10);
117 $this->form->addItem($ni);
121 if ($a_mode ==
"create") {
122 $this->form->addCommandButton(
"save",
$lng->txt(
"save"));
123 $this->form->addCommandButton(
"cancelSave",
$lng->txt(
"cancel"));
124 $this->form->setTitle(
$lng->txt(
"skmg_create_skll"));
126 $this->form->addCommandButton(
"update",
$lng->txt(
"save"));
127 $this->form->setTitle(
$lng->txt(
"skmg_edit_skll"));
131 $ilCtrl->setParameter($this,
"obj_id",
$_GET[
"obj_id"]);
132 $this->form->setFormAction(
$ilCtrl->getFormAction($this));
147 $ilTabs->clearTargets();
148 $ilHelp->setScreenIdComponent(
"skmg_lev");
149 $ilTabs->setBackTarget(
150 $lng->txt(
"skmg_skill_levels"),
151 $ilCtrl->getLinkTarget($this,
"edit")
154 if (
$_GET[
"level_id"] > 0) {
155 if ($this->tref_id == 0) {
158 $lng->txt(
"settings"),
159 $ilCtrl->getLinkTarget($this,
"editLevel")
164 $lng->txt(
"skmg_resources"),
165 $ilCtrl->getLinkTarget($this,
"showLevelResources")
179 if (
$_GET[
"level_id"] > 0) {
180 $tpl->setTitle(
$lng->txt(
"skmg_skill_level") .
": " .
183 $tpl->setTitle(
$lng->txt(
"skmg_skill_level"));
186 include_once(
"./Services/Skill/classes/class.ilSkillTree.php");
188 $path =
$tree->getPathFull($this->node_object->getId());
190 foreach ($path as $p) {
191 if (in_array($p[
"type"], array(
"scat",
"skll"))) {
192 $desc .= $sep . $p[
"title"];
196 $tpl->setDescription($desc);
222 $ilTabs->clearTargets();
223 $ilHelp->setScreenIdComponent(
"skmg_sktp");
225 if ($this->tref_id == 0) {
226 $ilTabs->setBackTarget(
227 $lng->txt(
"skmg_skill_templates"),
228 $ilCtrl->getLinkTargetByClass(
"ilobjskillmanagementgui",
"editSkillTemplates")
232 if (is_object($this->node_object)) {
233 if ($this->tref_id == 0) {
234 $tpl->setTitle(
$lng->txt(
"skmg_skill_template") .
": " .
235 $this->node_object->getTitle());
238 $this->node_object->getTitle()
245 $lng->txt(
"skmg_skill_levels"),
246 $ilCtrl->getLinkTarget($this,
'edit')
250 if ($this->tref_id == 0) {
253 $lng->txt(
"settings"),
254 $ilCtrl->getLinkTarget($this,
'editProperties')
264 $ilTabs->activateTab($a_tab);
266 parent::setTitleIcon();
270 $tpl->setTitle(
$lng->txt(
"skmg_skill"));
271 $tpl->setDescription(
"");
285 $it->setTitle($this->form->getInput(
"title"));
286 $it->setDescription($this->form->getInput(
"description"));
287 $it->setOrderNr($this->form->getInput(
"order_nr"));
290 $this->node_object = $it;
301 "ilbasicskilltemplategui",
303 $this->node_object->getId()
305 $ilCtrl->redirectByClass(
"ilbasicskilltemplategui",
"edit");
327 if ($this->tref_id == 0) {
328 $ilToolbar->addButton(
329 $lng->txt(
"skmg_add_level"),
330 $ilCtrl->getLinkTarget($this,
"addLevel")
336 include_once(
"./Services/Skill/classes/class.ilSkillLevelTableGUI.php");
338 $tpl->setContent($table->getHTML());
350 if ($this->tref_id > 0) {
351 return parent::showUsage();
358 include_once(
"./Services/Skill/classes/class.ilSkillUsage.php");
360 $usages = $usage_info->getAllUsagesOfTemplate($this->base_skill_id);
363 include_once(
"./Services/Skill/classes/class.ilSkillUsageTableGUI.php");
364 foreach ($usages as $k => $usage) {
366 $html .=
$tab->getHTML() .
"<br/><br/>";
369 $tpl->setContent($html);
showUsage()
Show skill usage.
addUsageTab($a_tabs)
Add usage tab.
setTabs($a_tab="")
Set header for skill.
setSkillNodeDescription()
Set skill node description.
static lookupLevelTitle($a_id)
Lookup level title.
static getIconPath($a_obj_id, $a_type, $a_size="", $a_status=0)
Get icon path.
static putInTree($a_obj, $a_parent_id="", $a_target_node_id="")
Put this object into the skill tree.
setLevelHead()
Set header for level.
initForm($a_mode="edit")
Init form.
checkPermissionBool($a_perm)
Check permission pool.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
__construct($a_node_id=0, $a_tref_id=0)
Constructor.
TableGUI class for skill usages.
setRows($a_rows)
Set Rows.
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
Basic skill template GUI class.