ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilSkillCategory.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
27{
28 public function __construct(int $a_id = 0)
29 {
31 $this->setType("scat");
32 }
33
34 public function copy(): ilSkillCategory
35 {
36 $scat = new ilSkillCategory();
37 $scat->setTitle($this->getTitle());
38 $scat->setDescription($this->getDescription());
39 $scat->setType($this->getType());
40 $scat->setSelfEvaluation($this->getSelfEvaluation());
41 $scat->setOrderNr($this->getOrderNr());
42 $scat->create();
43
44 return $scat;
45 }
46}
A node in the skill tree.
setType(string $a_type)
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc