ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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
$master_password
;
19
23
protected
$server_timezone
;
24
28
protected
$register_nic
;
29
30
public
function
__construct
(
31
string
$client_id
,
32
Password
$master_password
,
33
\DateTimeZone
$server_timezone
,
34
bool
$register_nic
35
) {
36
if
(!preg_match(
"/^[A-Za-z0-9]+$/"
, $client_id)) {
37
throw
new \InvalidArgumentException(
38
"client_id must not be empty and may only contain alphanumeric characters"
39
);
40
}
41
$this->client_id =
$client_id
;
42
$this->master_password =
$master_password
;
43
$this->server_timezone =
$server_timezone
;
44
$this->register_nic =
$register_nic
;
45
}
46
47
public
function
getClientId
() : string
48
{
49
return
$this->client_id
;
50
}
51
52
public
function
getMasterPassword
() :
Password
53
{
54
return
$this->master_password
;
55
}
56
57
public
function
getServerTimeZone
() : \DateTimeZone
58
{
59
return
$this->server_timezone
;
60
}
61
62
public
function
getRegisterNIC
() : bool
63
{
64
return
$this->register_nic
;
65
}
66
}
ilSetupConfig\$master_password
$master_password
Definition:
class.ilSetupConfig.php:18
ILIAS\Data\Password
A password is used as part of credentials for authentication.
Definition:
Password.php:13
ilSetupConfig\$client_id
$client_id
Definition:
class.ilSetupConfig.php:13
ilSetupConfig\getRegisterNIC
getRegisterNIC()
Definition:
class.ilSetupConfig.php:62
ilSetupConfig
Definition:
class.ilSetupConfig.php:8
ilSetupConfig\$server_timezone
$server_timezone
Definition:
class.ilSetupConfig.php:23
ilSetupConfig\getServerTimeZone
getServerTimeZone()
Definition:
class.ilSetupConfig.php:57
ilSetupConfig\$register_nic
$register_nic
Definition:
class.ilSetupConfig.php:28
ILIAS\Setup
Definition:
AchievementTracker.php:5
Password
ilSetupConfig\getMasterPassword
getMasterPassword()
Definition:
class.ilSetupConfig.php:52
ilSetupConfig\getClientId
getClientId()
Definition:
class.ilSetupConfig.php:47
ilSetupConfig\__construct
__construct(string $client_id, Password $master_password, \DateTimeZone $server_timezone, bool $register_nic)
Definition:
class.ilSetupConfig.php:30
setup
classes
class.ilSetupConfig.php
Generated on Wed Apr 2 2025 20:01:25 for ILIAS by
1.8.13 (using
Doxyfile
)