3 declare(strict_types=1);
20 public function __construct(
string $a_component_id,
int $a_level = null)
24 $this->db = $DIC->database();
25 $this->compontent_id = $a_component_id;
26 if ($a_level === null) {
40 $this->component_level = $a_level;
53 array(
'log_level' => array(
'integer',$this->
getLevel()))
57 public function read(): void
59 $query =
'SELECT * FROM log_components ' .
60 'WHERE component_id = ' . $this->db->quote($this->
getComponentId(),
'text');
64 $this->component_level = (
int) $row->log_level;
__construct(string $a_component_id, int $a_level=null)
individual log levels for components