ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
ilSkillCategoryGUI Class Reference

Skill category GUI class. More...

+ Inheritance diagram for ilSkillCategoryGUI:
+ Collaboration diagram for ilSkillCategoryGUI:

Public Member Functions

 __construct ($a_node_id=0)
 Constructor. More...
 
 getType ()
 Get Node Type. More...
 
executeCommand ()
 Execute command. More...
 
 setTabs ($a_tab)
 output tabs More...
 
 editProperties ()
 Edit properties. More...
 
 proceedDragDrop ()
 Perform drag and drop action. More...
 
 edit ()
 Edit. More...
 
 initForm ($a_mode="edit")
 Init form. More...
 
 saveItem ()
 Save item. More...
 
 getValues ()
 Get current values for from. More...
 
 updateItem ()
 Update item. More...
 
 listItems ()
 Update form. More...
 
 cancel ()
 Cancel. More...
 
 redirectToParent ()
 Redirect to parent (identified by current obj_id) More...
 
- Public Member Functions inherited from ilSkillTreeNodeGUI
 ilSkillTreeNodeGUI ($a_node_id=0)
 constructor More...
 
 setParentGUI ($a_parentgui)
 Set Parent GUI class. More...
 
 getParentGUI ()
 Get Parent GUI class (ilObjSCORM2004LearningModuleGUI). More...
 
 readNodeObject ($a_node_id)
 Get node object instance. More...
 
 saveAllTitles ()
 Save Titles. More...
 
 deleteNodes ()
 Delete nodes in the hierarchy. More...
 
 cutItems ()
 Copy items to clipboard, then cut them from the current tree. More...
 
 copyItems ()
 Copy items to clipboard. More...
 
 cancelDelete ()
 cancel delete More...
 
 confirmedDelete ()
 confirmed delete More...
 
 setLocator ()
 Set Locator Items. More...
 
 setSkillNodeDescription ()
 Set skill node description. More...
 
 create ()
 Create skill tree node. More...
 
 addStatusInput (ilPropertyFormGUI $a_form)
 Add status input. More...
 
 editProperties ()
 Edit properties form. More...
 
 getPropertyValues ()
 Get property values for edit form. More...
 
 save ()
 Save skill tree node. More...
 
 afterSave ()
 After saving. More...
 
 update ()
 Update skill tree node. More...
 
 afterUpdate ()
 After update. More...
 
 initForm ($a_mode="edit")
 Init form. More...
 
 cancelSave ()
 Cancel saving. More...
 
 redirectToParent ($a_tmp_mode=false)
 Redirect to parent (identified by current obj_id) More...
 
 saveOrder ()
 Save order. More...
 
 insertBasicSkillClip ()
 Insert basic skills from clipboard. More...
 
 insertSkillCategoryClip ()
 Insert skill categories from clipboard. More...
 
 insertTemplateReferenceClip ()
 Insert skill template references from clipboard. More...
 
 insertSkillTemplateClip ()
 Insert skill template from clipboard. More...
 
 insertTemplateCategoryClip ()
 Insert skill template category from clipboard. More...
 
 setTitleIcon ()
 Set title icon. More...
 
 addUsageTab ($a_tabs)
 Add usage tab. More...
 
 showUsage ()
 Show skill usage. More...
 

Static Public Member Functions

static addCreationButtons ()
 Add creation buttons. More...
 

Additional Inherited Members

- Data Fields inherited from ilSkillTreeNodeGUI
 $node_object
 

Detailed Description

Skill category GUI class.

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

ilSkillCategoryGUI: ilObjSkillManagementGUI

Definition at line 16 of file class.ilSkillCategoryGUI.php.

Constructor & Destructor Documentation

◆ __construct()

ilSkillCategoryGUI::__construct (   $a_node_id = 0)

Constructor.

Definition at line 22 of file class.ilSkillCategoryGUI.php.

References $ilCtrl.

23  {
24  global $ilCtrl;
25 
26  $ilCtrl->saveParameter($this, "obj_id");
27 
28  parent::ilSkillTreeNodeGUI($a_node_id);
29  }
global $ilCtrl
Definition: ilias.php:18

Member Function Documentation

◆ addCreationButtons()

static ilSkillCategoryGUI::addCreationButtons ( )
static

Add creation buttons.

Parameters

Definition at line 271 of file class.ilSkillCategoryGUI.php.

References $_GET, $ilCtrl, $ilUser, and $lng.

Referenced by ilSkillRootGUI\listSkills().

272  {
273  global $ilCtrl, $lng, $ilToolbar, $ilUser;
274 
275  // skill
276  $ilCtrl->setParameterByClass("ilbasicskillgui",
277  "obj_id", (int) $_GET["obj_id"]);
278  $ilToolbar->addButton($lng->txt("skmg_create_skll"),
279  $ilCtrl->getLinkTargetByClass("ilbasicskillgui", "create"));
280 
281  // skill category
282  $ilCtrl->setParameterByClass("ilskillcategorygui",
283  "obj_id", (int) $_GET["obj_id"]);
284  $ilToolbar->addButton($lng->txt("skmg_create_skill_category"),
285  $ilCtrl->getLinkTargetByClass("ilskillcategorygui", "create"));
286 
287  // skill template reference
288  $ilCtrl->setParameterByClass("ilskilltemplatereferencegui",
289  "obj_id", (int) $_GET["obj_id"]);
290  $ilToolbar->addButton($lng->txt("skmg_create_skill_template_reference"),
291  $ilCtrl->getLinkTargetByClass("ilskilltemplatereferencegui", "create"));
292 
293  // skills from clipboard
294  $sep = false;
295  if ($ilUser->clipboardHasObjectsOfType("skll"))
296  {
297  $ilToolbar->addSeparator();
298  $sep = true;
299  $ilToolbar->addButton($lng->txt("skmg_insert_basic_skill_from_clip"),
300  $ilCtrl->getLinkTargetByClass("ilskillcategorygui", "insertBasicSkillClip"));
301  }
302 
303  // skills from clipboard
304  if ($ilUser->clipboardHasObjectsOfType("scat"))
305  {
306  if (!$sep)
307  {
308  $ilToolbar->addSeparator();
309  $sep = true;
310  }
311  $ilToolbar->addButton($lng->txt("skmg_insert_skill_category_from_clip"),
312  $ilCtrl->getLinkTargetByClass("ilskillcategorygui", "insertSkillCategoryClip"));
313  }
314 
315  // skills from clipboard
316  if ($ilUser->clipboardHasObjectsOfType("sktr"))
317  {
318  if (!$sep)
319  {
320  $ilToolbar->addSeparator();
321  $sep = true;
322  }
323  $ilToolbar->addButton($lng->txt("skmg_insert_skill_template_reference_from_clip"),
324  $ilCtrl->getLinkTargetByClass("ilskillcategorygui", "insertTemplateReferenceClip"));
325  }
326 
327  }
$_GET["client_id"]
global $ilCtrl
Definition: ilias.php:18
global $ilUser
Definition: imgupload.php:15
global $lng
Definition: privfeed.php:40
+ Here is the caller graph for this function:

◆ cancel()

ilSkillCategoryGUI::cancel ( )

Cancel.

Parameters

Definition at line 335 of file class.ilSkillCategoryGUI.php.

References $ilCtrl.

336  {
337  global $ilCtrl;
338 
339  $ilCtrl->redirectByClass("ilobjskillmanagementgui", "editSkills");
340  }
global $ilCtrl
Definition: ilias.php:18

◆ edit()

ilSkillCategoryGUI::edit ( )

Edit.

Definition at line 123 of file class.ilSkillCategoryGUI.php.

References $tpl, getValues(), and initForm().

124  {
125  global $tpl;
126 
127  $this->initForm();
128  $this->getValues();
129  $tpl->setContent($this->form->getHTML());
130  }
global $tpl
Definition: ilias.php:8
getValues()
Get current values for from.
initForm($a_mode="edit")
Init form.
+ Here is the call graph for this function:

◆ editProperties()

ilSkillCategoryGUI::editProperties ( )

Edit properties.

Definition at line 100 of file class.ilSkillCategoryGUI.php.

References $tpl, and setTabs().

101  {
102  global $tpl;
103 
104  $this->setTabs("properties");
105  parent::editProperties();
106  }
global $tpl
Definition: ilias.php:8
setTabs($a_tab)
output tabs
+ Here is the call graph for this function:

◆ executeCommand()

& ilSkillCategoryGUI::executeCommand ( )

Execute command.

Definition at line 42 of file class.ilSkillCategoryGUI.php.

References $cmd, $ilCtrl, $ret, and $tpl.

43  {
44  global $ilCtrl, $tpl, $ilTabs;
45 
46  $tpl->getStandardTemplate();
47 
48  $next_class = $ilCtrl->getNextClass($this);
49  $cmd = $ilCtrl->getCmd();
50 
51  switch($next_class)
52  {
53  default:
54  $ret = $this->$cmd();
55  break;
56  }
57  }
$cmd
Definition: sahs_server.php:35
global $tpl
Definition: ilias.php:8
global $ilCtrl
Definition: ilias.php:18

◆ getType()

ilSkillCategoryGUI::getType ( )

Get Node Type.

Definition at line 34 of file class.ilSkillCategoryGUI.php.

35  {
36  return "scat";
37  }

◆ getValues()

ilSkillCategoryGUI::getValues ( )

Get current values for from.

Definition at line 201 of file class.ilSkillCategoryGUI.php.

Referenced by edit().

202  {
203  $values = array();
204  $values["title"] = $this->node_object->getTitle();
205  $values["order_nr"] = $this->node_object->getOrderNr();
206  $values["self_eval"] = $this->node_object->getSelfEvaluation();
207  $values["status"] = $this->node_object->getStatus();
208  $this->form->setValuesByArray($values);
209  }
+ Here is the caller graph for this function:

◆ initForm()

ilSkillCategoryGUI::initForm (   $a_mode = "edit")

Init form.

Parameters
int$a_modeEdit Mode

Definition at line 137 of file class.ilSkillCategoryGUI.php.

References $_GET, $ilCtrl, $lng, ilSkillTreeNodeGUI\addStatusInput(), ilFormPropertyGUI\setInfo(), ilNumberInputGUI\setMaxLength(), and ilTextInputGUI\setMaxLength().

Referenced by edit().

138  {
139  global $lng, $ilCtrl;
140 
141  include_once("Services/Form/classes/class.ilPropertyFormGUI.php");
142  $this->form = new ilPropertyFormGUI();
143 
144  // title
145  $ti = new ilTextInputGUI($lng->txt("title"), "title");
146  $ti->setMaxLength(200);
147  $ti->setSize(50);
148  $ti->setRequired(true);
149  $this->form->addItem($ti);
150 
151  // order nr
152  $ni = new ilNumberInputGUI($lng->txt("skmg_order_nr"), "order_nr");
153  $ni->setMaxLength(6);
154  $ni->setSize(6);
155  $ni->setRequired(true);
156  $this->form->addItem($ni);
157 
158  // status
159  $this->addStatusInput($this->form);
160 
161  // selectable
162  $cb = new ilCheckboxInputGUI($lng->txt("skmg_selectable"), "self_eval");
163  $cb->setInfo($lng->txt("skmg_selectable_info"));
164  $this->form->addItem($cb);
165 
166  // save and cancel commands
167  if ($a_mode == "create")
168  {
169  $this->form->addCommandButton("save", $lng->txt("save"));
170  $this->form->addCommandButton("cancelSave", $lng->txt("cancel"));
171  $this->form->setTitle($lng->txt("skmg_create_skill_category"));
172  }
173  else
174  {
175  $this->form->addCommandButton("update", $lng->txt("save"));
176  $this->form->setTitle($lng->txt("skmg_edit_scat"));
177  }
178 
179  $ilCtrl->setParameter($this, "obj_id", $_GET["obj_id"]);
180  $this->form->setFormAction($ilCtrl->getFormAction($this));
181  }
This class represents a property form user interface.
$_GET["client_id"]
This class represents a checkbox property in a property form.
global $ilCtrl
Definition: ilias.php:18
setInfo($a_info)
Set Information Text.
This class represents a number property in a property form.
This class represents a text property in a property form.
setMaxLength($a_maxlength)
Set Max Length.
setMaxLength($a_maxlength)
Set Max Length.
global $lng
Definition: privfeed.php:40
addStatusInput(ilPropertyFormGUI $a_form)
Add status input.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ listItems()

ilSkillCategoryGUI::listItems ( )

Update form.

List items

Parameters

Definition at line 251 of file class.ilSkillCategoryGUI.php.

References $_GET, $tpl, ilSkillCatTableGUI\MODE_SCAT, and setTabs().

252  {
253  global $tpl;
254 
255  self::addCreationButtons();
256  $this->setTabs("content");
257 
258  include_once("./Services/Skill/classes/class.ilSkillCatTableGUI.php");
259  $table = new ilSkillCatTableGUI($this, "listItems", (int) $_GET["obj_id"],
261 
262  $tpl->setContent($table->getHTML());
263  }
$_GET["client_id"]
global $tpl
Definition: ilias.php:8
setTabs($a_tab)
output tabs
+ Here is the call graph for this function:

◆ proceedDragDrop()

ilSkillCategoryGUI::proceedDragDrop ( )

Perform drag and drop action.

Definition at line 111 of file class.ilSkillCategoryGUI.php.

References $ilCtrl.

112  {
113  global $ilCtrl;
114 
115 // $this->slm_object->executeDragDrop($_POST["il_hform_source_id"], $_POST["il_hform_target_id"],
116 // $_POST["il_hform_fc"], $_POST["il_hform_as_subitem"]);
117 // $ilCtrl->redirect($this, "showOrganization");
118  }
global $ilCtrl
Definition: ilias.php:18

◆ redirectToParent()

ilSkillCategoryGUI::redirectToParent ( )

Redirect to parent (identified by current obj_id)

Parameters

Definition at line 348 of file class.ilSkillCategoryGUI.php.

References $_GET, $ilCtrl, $t, and ilSkillTreeNode\_lookupType().

349  {
350  global $ilCtrl;
351 
352  $t = ilSkillTreeNode::_lookupType((int) $_GET["obj_id"]);
353 
354  switch ($t)
355  {
356  case "skrt":
357  $ilCtrl->setParameterByClass("ilskillrootgui", "obj_id", (int) $_GET["obj_id"]);
358  $ilCtrl->redirectByClass("ilskillrootgui", "listSkills");
359  break;
360  }
361 
362  parent::redirectToParent();
363  }
$_GET["client_id"]
static _lookupType($a_obj_id)
Lookup Type.
global $ilCtrl
Definition: ilias.php:18
+ Here is the call graph for this function:

◆ saveItem()

ilSkillCategoryGUI::saveItem ( )

Save item.

Definition at line 186 of file class.ilSkillCategoryGUI.php.

References $_GET, $_POST, IL_LAST_NODE, and ilSkillTreeNode\putInTree().

187  {
188  include_once "Services/Skill/classes/class.ilSkillCategory.php";
189  $it = new ilSkillCategory();
190  $it->setTitle($this->form->getInput("title"));
191  $it->setOrderNr($this->form->getInput("order_nr"));
192  $it->setSelfEvaluation($_POST["self_eval"]);
193  $it->setStatus($_POST["status"]);
194  $it->create();
195  ilSkillTreeNode::putInTree($it, (int) $_GET["obj_id"], IL_LAST_NODE);
196  }
$_POST['username']
Definition: cron.php:12
$_GET["client_id"]
static putInTree($a_obj, $a_parent_id="", $a_target_node_id="")
Put this object into the skill tree.
const IL_LAST_NODE
Definition: class.ilTree.php:4
+ Here is the call graph for this function:

◆ setTabs()

ilSkillCategoryGUI::setTabs (   $a_tab)

output tabs

Definition at line 62 of file class.ilSkillCategoryGUI.php.

References $_GET, $ilCtrl, $lng, $tpl, ilSkillTreeNodeGUI\addUsageTab(), and ilSkillTreeNodeGUI\setSkillNodeDescription().

Referenced by editProperties(), and listItems().

63  {
64  global $ilTabs, $ilCtrl, $tpl, $lng, $ilHelp;
65 
66  $ilTabs->clearTargets();
67  $ilHelp->setScreenIdComponent("skmg_scat");
68 
69  // content
70  $ilTabs->addTab("content", $lng->txt("content"),
71  $ilCtrl->getLinkTarget($this, 'listItems'));
72 
73  // properties
74  $ilTabs->addTab("properties", $lng->txt("settings"),
75  $ilCtrl->getLinkTarget($this, 'editProperties'));
76 
77  // usage
78  $this->addUsageTab($ilTabs);
79 
80  // back link
81  $ilCtrl->setParameterByClass("ilskillrootgui", "obj_id",
82  $this->node_object->skill_tree->getRootId());
83  $ilTabs->setBackTarget($lng->txt("obj_skmg"),
84  $ilCtrl->getLinkTargetByClass("ilskillrootgui", "listSkills"));
85  $ilCtrl->setParameterByClass("ilskillrootgui", "obj_id",
86  $_GET["obj_id"]);
87 
88 
89  parent::setTitleIcon();
90  $tpl->setTitle(
91  $lng->txt("scat").": ".$this->node_object->getTitle());
92  $this->setSkillNodeDescription();
93 
94  $ilTabs->activateTab($a_tab);
95  }
addUsageTab($a_tabs)
Add usage tab.
setSkillNodeDescription()
Set skill node description.
$_GET["client_id"]
global $tpl
Definition: ilias.php:8
global $ilCtrl
Definition: ilias.php:18
global $lng
Definition: privfeed.php:40
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ updateItem()

ilSkillCategoryGUI::updateItem ( )

Update item.

Definition at line 214 of file class.ilSkillCategoryGUI.php.

References $_POST.

215  {
216  $this->node_object->setTitle($this->form->getInput("title"));
217  $this->node_object->setOrderNr($this->form->getInput("order_nr"));
218  $this->node_object->setSelfEvaluation($_POST["self_eval"]);
219  $this->node_object->setStatus($_POST["status"]);
220  $this->node_object->update();
221  }
$_POST['username']
Definition: cron.php:12

The documentation for this class was generated from the following file: