ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSetupConfig.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 use ILIAS\Setup;
23 
24 class ilSetupConfig implements Setup\Config
25 {
26  protected \ILIAS\Data\ClientId $client_id;
27  protected \DateTimeZone $server_timezone;
28  protected bool $register_nic;
29  protected ?string $export_hooks_path;
30 
31  public function __construct(
32  \ILIAS\Data\ClientId $client_id,
33  \DateTimeZone $server_timezone,
34  bool $register_nic,
35  ?string $export_hooks_path
36  ) {
37  $this->client_id = $client_id;
38  $this->server_timezone = $server_timezone;
39  $this->register_nic = $register_nic;
40  $this->export_hooks_path = $export_hooks_path;
41  }
42 
43  public function getClientId(): \ILIAS\Data\ClientId
44  {
45  return $this->client_id;
46  }
47 
48  public function getServerTimeZone(): \DateTimeZone
49  {
51  }
52 
53  public function getRegisterNIC(): bool
54  {
55  return $this->register_nic;
56  }
57 
58  public function getExportHooksPath(): ?string
59  {
61  }
62 }
Interface Observer Contains several chained tasks and infos about them.
ILIAS Data ClientId $client_id
__construct(\ILIAS\Data\ClientId $client_id, \DateTimeZone $server_timezone, bool $register_nic, ?string $export_hooks_path)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
DateTimeZone $server_timezone