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.ilDatabaseSetupAgent.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\Factory
as
DataFactory
;
7
use
ILIAS\Refinery\Factory
as
Refinery
;
8
use
ILIAS\Refinery\Transformation
;
9
10
class
ilDatabaseSetupAgent
implements
Setup\Agent
11
{
15
protected
$refinery
;
16
17
public
function
__construct
(
Refinery
$refinery
)
18
{
19
$this->refinery =
$refinery
;
20
}
21
25
public
function
hasConfig
() : bool
26
{
27
return
true
;
28
}
29
33
public
function
getConfigInput
(Setup\
Config
$config
= null) :
ILIAS
\
UI
\
Component
\
Input
\Field\
Input
34
{
35
throw
new \LogicException(
"NYI!"
);
36
}
37
41
public
function
getArrayToConfigTransformation
() :
Transformation
42
{
43
// TODO: Migrate this to refinery-methods once possible.
44
return
$this->refinery->custom()->transformation(
function
(
$data
) {
45
$password
= $this->refinery->to()->data(
"password"
);
46
return
new \ilDatabaseSetupConfig(
47
$data
[
"type"
] ??
"innodb"
,
48
$data
[
"host"
] ??
"localhost"
,
49
$data
[
"database"
] ??
"ilias"
,
50
$data
[
"user"
] ?? null,
51
$data
[
"password"
] ?
$password
->transform(
$data
[
"password"
]) : null,
52
$data
[
"create_database"
] ??
true
,
53
$data[
"collation"
] ?? null,
54
$data[
"port"
] ?? 3306,
55
$data[
"path_to_db_dump"
] ?? null
56
);
57
});
58
}
59
63
public
function
getInstallObjective
(Setup\
Config
$config
= null) : Setup\
Objective
64
{
65
return
new
Setup\ObjectiveCollection(
66
"Complete objectives from Services\Database"
,
67
false
,
68
new
ilDatabaseConfigStoredObjective
(
$config
),
69
new
\
ilDatabaseUpdatedObjective
(
$config
)
70
);
71
}
72
76
public
function
getUpdateObjective
(Setup\
Config
$config
= null) : Setup\
Objective
77
{
78
return
new \ilDatabaseUpdatedObjective(
$config
,
false
);
79
}
80
84
public
function
getBuildArtifactObjective
() : Setup\
Objective
85
{
86
return
new
Setup\NullObjective();
87
}
88
}
ilDatabaseConfigStoredObjective
Definition:
class.ilDatabaseConfigStoredObjective.php:8
ilDatabaseSetupAgent
Definition:
class.ilDatabaseSetupAgent.php:10
UI
Class Factory.
$data
$data
Definition:
storeScorm.php:23
ILIAS\Setup\Objective
An objective is a desired state of the system that is supposed to be created by the setup...
Definition:
Objective.php:14
ilDatabaseSetupAgent\hasConfig
hasConfig()
Definition:
class.ilDatabaseSetupAgent.php:25
ilDatabaseUpdatedObjective
Definition:
class.ilDatabaseUpdatedObjective.php:8
ILIAS
Class ChatMainBarProvider .
$config
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition:
metadata.php:68
ILIAS\UI\Component
ilDatabaseSetupAgent\getConfigInput
getConfigInput(Setup\Config $config=null)
Definition:
class.ilDatabaseSetupAgent.php:33
Transformation
Factory
Input
Factory
ilDatabaseSetupAgent\getUpdateObjective
getUpdateObjective(Setup\Config $config=null)
Definition:
class.ilDatabaseSetupAgent.php:76
ilDatabaseSetupAgent\__construct
__construct(Refinery $refinery)
Definition:
class.ilDatabaseSetupAgent.php:17
ILIAS\Setup
Definition:
AchievementTracker.php:5
$password
$password
Definition:
cron.php:14
ilDatabaseSetupAgent\$refinery
$refinery
Definition:
class.ilDatabaseSetupAgent.php:15
ILIAS\Refinery\Transformation
A transformation is a function from one datatype to another.
Definition:
Transformation.php:17
ilDatabaseSetupAgent\getInstallObjective
getInstallObjective(Setup\Config $config=null)
Definition:
class.ilDatabaseSetupAgent.php:63
ilDatabaseSetupAgent\getBuildArtifactObjective
getBuildArtifactObjective()
Definition:
class.ilDatabaseSetupAgent.php:84
ILIAS\Setup\Config
A configuration for the setup.
Definition:
Config.php:10
ilDatabaseSetupAgent\getArrayToConfigTransformation
getArrayToConfigTransformation()
Definition:
class.ilDatabaseSetupAgent.php:41
Services
Database
classes
Setup
class.ilDatabaseSetupAgent.php
Generated on Wed Apr 2 2025 20:01:12 for ILIAS by
1.8.13 (using
Doxyfile
)