ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilLoggingDefinitionProcessor.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /* Copyright (c) 2021 ILIAS open source, Extended GPL, see docs/LICENSE */
6 
8 {
9  protected ilDBInterface $db;
10  protected string $component_id;
11 
12  public function __construct(ilDBInterface $db)
13  {
14  $this->db = $db;
15  }
16 
17  public function purge(): void
18  {
19  }
20 
21  public function beginComponent(string $component, string $type): void
22  {
23  $this->component_id = '';
24  }
25 
26  public function endComponent(string $component, string $type): void
27  {
28  $this->component_id = '';
29  }
30 
31  public function beginTag(string $name, array $attributes): void
32  {
33  if ($name === "module" || $name === "service") {
34  $this->component_id = $attributes["id"] ?? '';
35  return;
36  }
37 
38  if ($name !== "logging") {
39  return;
40  }
41 
42  if ($this->component_id === '') {
43  throw new \RuntimeException(
44  "Found $name-tag outside of module or service in {$this->component_id}."
45  );
46  }
47  ilLogComponentLevels::updateFromXML($this->component_id);
48  }
49 
50  public function endTag(string $name): void
51  {
52  if ($name === "module" || $name === "service") {
53  $this->component_id = '';
54  }
55  }
56 }
$attributes
Definition: metadata.php:248
endComponent(string $component, string $type)
This method is called when parsing of component.xml for the given component ends. ...
An ilComponentDefinitionProcessor processes some attributes from a component.xml (i.e.
$type
endTag(string $name)
This is called when a tag ends in the context of the given component.
if($format !==null) $name
Definition: metadata.php:247
static updateFromXML($a_component_id)
purge()
This methods is supposed to purge existing data in the provider of the component, so new components c...
beginTag(string $name, array $attributes)
This is called when a tag starts in the context of the given component.
beginComponent(string $component, string $type)
This method is called when parsing of component.xml for the given component starts.