ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
class.ilSkillCategory.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
28 {
29  public function __construct(int $a_id = 0)
30  {
31  parent::__construct($a_id);
32  $this->setType("scat");
33  }
34 
35  public function copy(): ilSkillCategory
36  {
37  $scat = new ilSkillCategory();
38  $scat->setTitle($this->getTitle());
39  $scat->setDescription($this->getDescription());
40  $scat->setType($this->getType());
41  $scat->setSelfEvaluation($this->getSelfEvaluation());
42  $scat->setOrderNr($this->getOrderNr());
43  $scat->create();
44 
45  return $scat;
46  }
47 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setType(string $a_type)
__construct(Container $dic, ilPlugin $plugin)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...