19 declare(strict_types=1);
44 $this->db = $DIC->database();
50 if (!self::$instance) {
51 self::$instance =
new self();
53 return self::$instance;
63 $ilDB = $DIC->database();
64 if (!$a_component_id) {
68 $query =
'SELECT * FROM log_components ' .
69 'WHERE component_id = ' .
$ilDB->quote($a_component_id,
'text');
71 if (!
$res->numRows()) {
72 $query =
'INSERT INTO log_components (component_id) ' .
74 $ilDB->quote($a_component_id,
'text') .
76 $ilDB->manipulate($query);
90 public function read(): void
92 $query =
'SELECT * FROM log_components ';
93 $res = $this->db->query($query);
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static updateFromXML($a_component_id)
individual log levels for components
individual log levels for components
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getLogComponents()
Get component levels.
static ilLogComponentLevels $instance