ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilSetupConfig.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 2019 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4
5
use
ILIAS\Setup
;
6
use
ILIAS\Data\Password
;
7
8
class
ilSetupConfig
implements
Setup\Config
9
{
13
protected
$client_id
;
14
18
protected
$server_timezone
;
19
23
protected
$register_nic
;
24
25
public
function
__construct
(
26
\
ILIAS
\Data\
ClientId
$client_id
,
27
\DateTimeZone
$server_timezone
,
28
bool
$register_nic
29
) {
30
$this->client_id =
$client_id
;
31
$this->server_timezone =
$server_timezone
;
32
$this->register_nic =
$register_nic
;
33
}
34
35
public
function
getClientId
() : string
36
{
37
return
$this->client_id->toString();
38
}
39
40
public
function
getServerTimeZone
() : \DateTimeZone
41
{
42
return
$this->server_timezone
;
43
}
44
45
public
function
getRegisterNIC
() : bool
46
{
47
return
$this->register_nic
;
48
}
49
}
ILIAS
Class ChatMainBarProvider .
ilSetupConfig\$client_id
$client_id
Definition:
class.ilSetupConfig.php:13
ilSetupConfig\getRegisterNIC
getRegisterNIC()
Definition:
class.ilSetupConfig.php:45
ilSetupConfig
Definition:
class.ilSetupConfig.php:8
ilSetupConfig\$server_timezone
$server_timezone
Definition:
class.ilSetupConfig.php:18
ILIAS\Data\ClientId
Definition:
ClientId.php:11
ilSetupConfig\getServerTimeZone
getServerTimeZone()
Definition:
class.ilSetupConfig.php:40
ilSetupConfig\$register_nic
$register_nic
Definition:
class.ilSetupConfig.php:23
ILIAS\Setup
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
AdminInteraction.php:5
ilSetupConfig\__construct
__construct(\ILIAS\Data\ClientId $client_id, \DateTimeZone $server_timezone, bool $register_nic)
Definition:
class.ilSetupConfig.php:25
Password
ilSetupConfig\getClientId
getClientId()
Definition:
class.ilSetupConfig.php:35
setup
classes
class.ilSetupConfig.php
Generated on Wed Apr 2 2025 21:01:40 for ILIAS by
1.8.13 (using
Doxyfile
)