ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjSkillManagement.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, bool $a_call_by_reference = true)
29  {
30  global $DIC;
31 
32  $this->db = $DIC->database();
33  $this->type = "skmg";
34  parent::__construct($a_id, $a_call_by_reference);
35  }
36 
37  public function update(): bool
38  {
39  $ilDB = $this->db;
40 
41  if (!parent::update()) {
42  return false;
43  }
44 
45  return true;
46  }
47 
51  public function read(): void
52  {
53  $ilDB = $this->db;
54 
55  parent::read();
56  }
57 
63  public function delete(): bool
64  {
65  // always call parent delete function first!!
66  if (!parent::delete()) {
67  return false;
68  }
69 
70  //put here your module specific stuff
71 
72  return true;
73  }
74 }
read()
read style folder data
__construct(int $a_id=0, bool $a_call_by_reference=true)
ilDBInterface $db
global $DIC
Definition: shib_login.php:22
Skill management main application class.
__construct(Container $dic, ilPlugin $plugin)