51 $this->ctrl = $DIC->ctrl();
52 $this->lng = $DIC->language();
53 $this->tabs = $DIC->tabs();
54 $this->tpl = $DIC[
"tpl"];
55 $this->
help = $DIC[
"ilHelp"];
56 $this->toolbar = $DIC->toolbar();
57 $ilCtrl = $DIC->ctrl();
59 $this->tref_id = $a_tref_id;
61 $ilCtrl->saveParameter($this, array(
"obj_id",
"level_id"));
88 $ti->setMaxLength(200);
90 $ti->setRequired(
true);
91 $this->form->addItem($ti);
96 $this->form->addItem($ta);
101 $ni->setMaxLength(6);
103 $ni->setRequired(
true);
104 if ($a_mode ==
"create") {
106 $max =
$tree->getMaxOrderNr((
int)
$_GET[
"obj_id"],
true);
107 $ni->setValue($max + 10);
109 $this->form->addItem($ni);
113 if ($a_mode ==
"create") {
114 $this->form->addCommandButton(
"save",
$lng->txt(
"save"));
115 $this->form->addCommandButton(
"cancelSave",
$lng->txt(
"cancel"));
116 $this->form->setTitle(
$lng->txt(
"skmg_create_skll"));
118 $this->form->addCommandButton(
"update",
$lng->txt(
"save"));
119 $this->form->setTitle(
$lng->txt(
"skmg_edit_skll"));
123 $ilCtrl->setParameter($this,
"obj_id",
$_GET[
"obj_id"]);
124 $this->form->setFormAction($ilCtrl->getFormAction($this));
139 $ilTabs->clearTargets();
140 $ilHelp->setScreenIdComponent(
"skmg_lev");
141 $ilTabs->setBackTarget(
142 $lng->txt(
"skmg_skill_levels"),
143 $ilCtrl->getLinkTarget($this,
"edit")
146 if (
$_GET[
"level_id"] > 0) {
147 if ($this->tref_id == 0) {
150 $lng->txt(
"settings"),
151 $ilCtrl->getLinkTarget($this,
"editLevel")
156 $lng->txt(
"skmg_resources"),
157 $ilCtrl->getLinkTarget($this,
"showLevelResources")
171 if (
$_GET[
"level_id"] > 0) {
172 $tpl->setTitle(
$lng->txt(
"skmg_skill_level") .
": " .
175 $tpl->setTitle(
$lng->txt(
"skmg_skill_level"));
179 $path =
$tree->getPathFull($this->node_object->getId());
181 foreach ($path as $p) {
182 if (in_array($p[
"type"], array(
"scat",
"skll"))) {
183 $desc .= $sep . $p[
"title"];
187 $tpl->setDescription($desc);
213 $ilTabs->clearTargets();
214 $ilHelp->setScreenIdComponent(
"skmg_sktp");
216 if ($this->tref_id == 0) {
217 $ilTabs->setBackTarget(
218 $lng->txt(
"skmg_skill_templates"),
219 $ilCtrl->getLinkTargetByClass(
"ilobjskillmanagementgui",
"editSkillTemplates")
223 if (is_object($this->node_object)) {
224 if ($this->tref_id == 0) {
225 $tpl->setTitle(
$lng->txt(
"skmg_skill_template") .
": " .
226 $this->node_object->getTitle());
229 $this->node_object->getTitle()
236 $lng->txt(
"skmg_skill_levels"),
237 $ilCtrl->getLinkTarget($this,
'edit')
241 if ($this->tref_id == 0) {
244 $lng->txt(
"settings"),
245 $ilCtrl->getLinkTarget($this,
'editProperties')
258 $ilTabs->activateTab($a_tab);
260 parent::setTitleIcon();
264 $tpl->setTitle(
$lng->txt(
"skmg_skill"));
265 $tpl->setDescription(
"");
279 $it->setTitle($this->form->getInput(
"title"));
280 $it->setDescription($this->form->getInput(
"description"));
281 $it->setOrderNr($this->form->getInput(
"order_nr"));
284 $this->node_object = $it;
294 $ilCtrl->setParameterByClass(
295 "ilbasicskilltemplategui",
297 $this->node_object->getId()
299 $ilCtrl->redirectByClass(
"ilbasicskilltemplategui",
"edit");
321 if ($this->tref_id == 0) {
322 $ilToolbar->addButton(
323 $lng->txt(
"skmg_add_level"),
324 $ilCtrl->getLinkTarget($this,
"addLevel")
331 $tpl->setContent($table->getHTML());
343 if ($this->tref_id > 0) {
344 return parent::showUsage();
352 $usages = $usage_info->getAllUsagesOfTemplate($this->base_skill_id);
355 foreach ($usages as $k => $usage) {
357 $html .= $tab->getHTML() .
"<br/><br/>";
360 $tpl->setContent($html);
371 if ($this->tref_id > 0) {
372 return parent::showObjects();
380 $objects = $usage_info->getAssignedObjectsForSkillTemplate($this->base_skill_id);
384 $tpl->setContent($tab->getHTML());
showUsage()
Show skill usage.
addUsageTab($a_tabs)
Add usage tab.
setTabs($a_tab="")
Set header for skill.
setSkillNodeDescription()
Set skill node description.
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.
static lookupLevelTitle(int $a_id)
TableGUI class for assigned objects of skills.
initForm($a_mode="edit")
Init form.
checkPermissionBool($a_perm)
Check permission pool.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
showObjects()
Show assigned objects.
__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.