ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilBasicSkillTemplate.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5include_once("./Services/Skill/classes/class.ilBasicSkill.php");
6
16{
17 var $id;
18
23 function __construct($a_id = 0)
24 {
25 parent::ilSkillTreeNode($a_id);
26 $this->setType("sktp");
27 }
28
32 function copy()
33 {
34 $skill = new ilBasicSkillTemplate();
35 $skill->setTitle($this->getTitle());
36 $skill->setType($this->getType());
37 $skill->setOrderNr($this->getOrderNr());
38 $skill->create();
39
40 $levels = $this->getLevelData();
41 if (sizeof($levels))
42 {
43 foreach($levels as $item)
44 {
45 $skill->addLevel($item["title"], $item["description"]);
46 }
47 }
48 $skill->update();
49
50 return $skill;
51 }
52}
53?>
copy()
Copy basic skill template.
__construct($a_id=0)
Constructor @access public.
getLevelData($a_id=0)
Get level data.
setType($a_type)
Set type.
getOrderNr()
Get order nr.