ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSkillTemplateCategory.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("sctp");
32  }
33 
34  public function copy(): ilSkillTemplateCategory
35  {
36  $sctp = new ilSkillTemplateCategory();
37  $sctp->setTitle($this->getTitle());
38  $sctp->setDescription($this->getDescription());
39  $sctp->setType($this->getType());
40  $sctp->setOrderNr($this->getOrderNr());
41  $sctp->create();
42 
43  return $sctp;
44  }
45 
46  public function delete(): void
47  {
48  $ilDB = $this->db;
49 
50  $ilDB->manipulate(
51  "DELETE FROM skl_templ_ref WHERE "
52  . " templ_id = " . $ilDB->quote($this->getId(), "integer")
53  );
54 
55  parent::delete();
56  }
57 }
setType(string $a_type)
__construct(Container $dic, ilPlugin $plugin)
A node in the skill tree.