ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSkillCategory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
28  public function __construct(int $a_id = 0)
29  {
30  parent::__construct($a_id);
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 }
setType(string $a_type)
__construct(Container $dic, ilPlugin $plugin)
A node in the skill tree.