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.ilLearningModuleSetupAgent.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 2020 Nils Haagen <nils.haagen@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4
5
use
ILIAS\Setup
;
6
use
ILIAS\Refinery
;
7
use
ILIAS\UI
;
8
9
class
ilLearningModuleSetupAgent
implements
Setup\Agent
10
{
11
use
Setup\Agent\HasNoNamedObjective
;
12
16
public
function
hasConfig
() : bool
17
{
18
return
false
;
19
}
20
24
public
function
getArrayToConfigTransformation
() :
Refinery
\
Transformation
25
{
26
throw
new \LogicException(
"Agent has no config."
);
27
}
28
32
public
function
getInstallObjective
(Setup\
Config
$config
= null) : Setup\
Objective
33
{
34
return
new
ilFileSystemComponentDataDirectoryCreatedObjective
(
35
'lm_data'
,
36
ilFileSystemComponentDataDirectoryCreatedObjective::WEBDIR
37
);
38
}
39
43
public
function
getUpdateObjective
(Setup\
Config
$config
= null) : Setup\
Objective
44
{
45
return
new
Setup\Objective\NullObjective();
46
}
47
51
public
function
getBuildArtifactObjective
() : Setup\
Objective
52
{
53
return
new
Setup\Objective\NullObjective();
54
}
55
59
public
function
getStatusObjective
(Setup\Metrics\Storage $storage) : Setup\
Objective
60
{
61
return
new
Setup\Objective\NullObjective();
62
}
63
67
public
function
getMigrations
() : array
68
{
69
return
[];
70
}
71
}
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
ILIAS\Refinery
Definition:
ByTrying.php:5
$config
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition:
metadata.php:68
ilLearningModuleSetupAgent\getUpdateObjective
getUpdateObjective(Setup\Config $config=null)
Definition:
class.ilLearningModuleSetupAgent.php:43
ilLearningModuleSetupAgent
Definition:
class.ilLearningModuleSetupAgent.php:9
ilLearningModuleSetupAgent\getArrayToConfigTransformation
getArrayToConfigTransformation()
Definition:
class.ilLearningModuleSetupAgent.php:24
ilFileSystemComponentDataDirectoryCreatedObjective\WEBDIR
const WEBDIR
Definition:
class.ilFileSystemComponentDataDirectoryCreatedObjective.php:10
Factory
ilFileSystemComponentDataDirectoryCreatedObjective
Definition:
class.ilFileSystemComponentDataDirectoryCreatedObjective.php:7
ilLearningModuleSetupAgent\getInstallObjective
getInstallObjective(Setup\Config $config=null)
Definition:
class.ilLearningModuleSetupAgent.php:32
ILIAS\Setup
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
AdminInteraction.php:5
ilLearningModuleSetupAgent\hasConfig
hasConfig()
Definition:
class.ilLearningModuleSetupAgent.php:16
ilLearningModuleSetupAgent\getMigrations
getMigrations()
Definition:
class.ilLearningModuleSetupAgent.php:67
ilLearningModuleSetupAgent\getBuildArtifactObjective
getBuildArtifactObjective()
Definition:
class.ilLearningModuleSetupAgent.php:51
ILIAS\Refinery\Transformation
A transformation is a function from one datatype to another.
Definition:
Transformation.php:17
ILIAS\UI
HasNoNamedObjective
ILIAS\Setup\Config
A configuration for the setup.
Definition:
Config.php:10
ilLearningModuleSetupAgent\getStatusObjective
getStatusObjective(Setup\Metrics\Storage $storage)
Definition:
class.ilLearningModuleSetupAgent.php:59
Modules
LearningModule
classes
Setup
class.ilLearningModuleSetupAgent.php
Generated on Wed Apr 2 2025 21:01:03 for ILIAS by
1.8.13 (using
Doxyfile
)