ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilLogComponentLevel.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
28 {
29  private string $compontent_id = '';
30  private ?int $component_level = null;
31 
32  protected ilDBInterface $db;
33 
34  public function __construct(string $a_component_id, ?int $a_level = null)
35  {
36  global $DIC;
37 
38  $this->db = $DIC->database();
39  $this->compontent_id = $a_component_id;
40  if ($a_level === null) {
41  $this->read();
42  } else {
43  $this->setLevel($a_level);
44  }
45  }
46 
47  public function getComponentId(): string
48  {
49  return $this->compontent_id;
50  }
51 
52  public function setLevel(?int $a_level): void
53  {
54  $this->component_level = $a_level;
55  }
56 
57  public function getLevel(): ?int
58  {
60  }
61 
62  public function update(): void
63  {
64  $this->db->replace(
65  'log_components',
66  array('component_id' => array('text',$this->getComponentId())),
67  array('log_level' => array('integer',$this->getLevel()))
68  );
69  }
70 
71  public function read(): void
72  {
73  $query = 'SELECT * FROM log_components ' .
74  'WHERE component_id = ' . $this->db->quote($this->getComponentId(), 'text');
75 
76  $res = $this->db->query($query);
77  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
78  $this->component_level = (int) $row->log_level;
79  }
80  }
81 }
$res
Definition: ltiservices.php:66
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
__construct(string $a_component_id, ?int $a_level=null)
individual log levels for components