19 declare(strict_types=1);
36 $this->db = $DIC->database();
42 return self::$instance ?? (self::$instance =
new self());
48 if ($group->getComponentId() === $a_component_id) {
49 return $group->getId();
54 $component_group->setComponentId($a_component_id);
55 $component_group->create();
57 return $component_group->getId();
62 $query =
'SELECT id FROM sysc_groups ' .
64 $res = $this->db->query($query);
66 return (
int) $row->id;
79 protected function read(): void
81 $query =
'SELECT id FROM sysc_groups ' .
83 $res = $this->db->query($query);
85 $this->groups = array();
87 $this->groups[] =
new ilSCGroup((
int) $row->id);
updateFromComponentDefinition(string $a_component_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static ilSCGroups $instance
Defines a system check group including different tasks of a component.
lookupGroupByComponentId(string $a_component_id)