ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilSetupConfig.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
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 
30  public function __construct(
31  \ILIAS\Data\ClientId $client_id,
32  \DateTimeZone $server_timezone,
33  bool $register_nic
34  ) {
35  $this->client_id = $client_id;
36  $this->server_timezone = $server_timezone;
37  $this->register_nic = $register_nic;
38  }
39 
40  public function getClientId(): \ILIAS\Data\ClientId
41  {
42  return $this->client_id;
43  }
44 
45  public function getServerTimeZone(): \DateTimeZone
46  {
48  }
49 
50  public function getRegisterNIC(): bool
51  {
52  return $this->register_nic;
53  }
54 }
Class ChatMainBarProvider .
ILIAS Data ClientId $client_id
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(\ILIAS\Data\ClientId $client_id, \DateTimeZone $server_timezone, bool $register_nic)
DateTimeZone $server_timezone