ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
class.ilSkillTemplateCategory.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
5
include_once(
"./Services/Skill/classes/class.ilSkillTreeNode.php"
);
6
15
class
ilSkillTemplateCategory
extends
ilSkillTreeNode
16
{
17
public
$id
;
18
23
public
function
__construct
($a_id = 0)
24
{
25
parent::__construct($a_id);
26
$this->
setType
(
"sctp"
);
27
}
28
32
public
function
copy
()
33
{
34
$sctp =
new
ilSkillTemplateCategory
();
35
$sctp->setTitle($this->
getTitle
());
36
$sctp->setType($this->
getType
());
37
$sctp->setOrderNr($this->
getOrderNr
());
38
$sctp->create();
39
40
return
$sctp;
41
}
42
}
ilSkillTreeNode\setType
setType($a_type)
Set type.
Definition:
class.ilSkillTreeNode.php:71
ilSkillTemplateCategory\$id
$id
Definition:
class.ilSkillTemplateCategory.php:17
ilSkillTemplateCategory
Skill Template Category.
Definition:
class.ilSkillTemplateCategory.php:15
ilSkillTreeNode\getTitle
getTitle()
Get title.
Definition:
class.ilSkillTreeNode.php:61
ilSkillTemplateCategory\__construct
__construct($a_id=0)
Constructor public.
Definition:
class.ilSkillTemplateCategory.php:23
ilSkillTreeNode\getOrderNr
getOrderNr()
Get order nr.
Definition:
class.ilSkillTreeNode.php:141
ilSkillTreeNode\getType
getType()
Get type.
Definition:
class.ilSkillTreeNode.php:81
ilSkillTemplateCategory\copy
copy()
Copy skill category.
Definition:
class.ilSkillTemplateCategory.php:32
ilSkillTreeNode
A node in the skill tree.
Definition:
class.ilSkillTreeNode.php:15
php
Services
Skill
classes
class.ilSkillTemplateCategory.php
Generated on Thu Jan 16 2025 19:02:29 for ILIAS by
1.8.13 (using
Doxyfile
)