ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSecurePathDefinitionProcessor.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  protected ?string $component = null;
24 
25  public function __construct(protected \ilDBInterface $db)
26  {
27  }
28 
29  public function purge(): void
30  {
31  }
32 
33  public function beginComponent(string $component, string $type): void
34  {
35  $this->component = $type . "/" . $component;
36  }
37 
38  public function endComponent(string $component, string $type): void
39  {
40  }
41 
42  public function beginTag(string $name, array $attributes): void
43  {
44  if ($name !== "secure_path") {
45  return;
46  }
47 
48  try {
49  $ilWACSecurePath = ilWACSecurePath::findOrFail($attributes["path"]);
50  } catch (arException) {
51  $ilWACSecurePath = new ilWACSecurePath();
52  $ilWACSecurePath->setPath($attributes["path"]);
53  $ilWACSecurePath->create();
54  }
55  $ilWACSecurePath->setCheckingClass($attributes["checking-class"]);
56  $ilWACSecurePath->setInSecFolder((bool) ($attributes["in-sec-folder"] ?? null));
57  $ilWACSecurePath->setComponentDirectory(realpath(__DIR__ . "/../../../../../" . $this->component));
58  $ilWACSecurePath->update();
59  }
60 
61  public function endTag(string $name): void
62  {
63  }
64 }
beginComponent(string $component, string $type)
This method is called when parsing of component.xml for the given component starts.
An ilComponentDefinitionProcessor processes some attributes from a component.xml (i.e.
static findOrFail($primary_key, array $add_constructor_args=[])
Tries to find the object and throws an Exception if object is not found, instead of returning null...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
beginTag(string $name, array $attributes)
This is called when a tag starts in the context of the given component.
endComponent(string $component, string $type)
This method is called when parsing of component.xml for the given component ends. ...
purge()
This methods is supposed to purge existing data in the provider of the component, so new components c...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
endTag(string $name)
This is called when a tag ends in the context of the given component.