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.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
{
14
public
function
hasConfig
() : bool
15
{
16
return
false
;
17
}
18
22
public
function
getConfigInput
(Setup\
Config
$config
= null) :
UI
\
Component
\
Input
\Field\
Input
23
{
24
throw
new \LogicException(
"Agent has no config."
);
25
}
26
30
public
function
getArrayToConfigTransformation
() :
Refinery
\
Transformation
31
{
32
throw
new \LogicException(
"Agent has no config."
);
33
}
34
38
public
function
getInstallObjective
(Setup\
Config
$config
= null) : Setup\
Objective
39
{
40
$dir_objective =
new
ilFileSystemComponentDataDirectoryCreatedObjective
(
41
'lm_data'
,
42
ilFileSystemComponentDataDirectoryCreatedObjective::WEBDIR
43
);
44
return
new
Setup\ObjectiveCollection(
45
"Complete objectives from Modules/LearningModule"
,
46
false
,
47
$dir_objective
48
);
49
}
50
54
public
function
getUpdateObjective
(Setup\
Config
$config
= null) : Setup\
Objective
55
{
56
return
new
Setup\NullObjective();
57
}
58
62
public
function
getBuildArtifactObjective
() : Setup\
Objective
63
{
64
return
new
Setup\NullObjective();
65
}
66
}
UI
Class Factory.
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:
Constraint.php:5
$config
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition:
metadata.php:68
ILIAS\UI\Component
ilLearningModuleSetupAgent\getUpdateObjective
getUpdateObjective(Setup\Config $config=null)
Definition:
class.ilLearningModuleSetupAgent.php:54
ilLearningModuleSetupAgent
Definition:
class.ilLearningModuleSetupAgent.php:9
ilLearningModuleSetupAgent\getArrayToConfigTransformation
getArrayToConfigTransformation()
Definition:
class.ilLearningModuleSetupAgent.php:30
ilLearningModuleSetupAgent\getConfigInput
getConfigInput(Setup\Config $config=null)
Definition:
class.ilLearningModuleSetupAgent.php:22
ilFileSystemComponentDataDirectoryCreatedObjective\WEBDIR
const WEBDIR
Definition:
class.ilFileSystemComponentDataDirectoryCreatedObjective.php:11
Factory
Input
ilFileSystemComponentDataDirectoryCreatedObjective
Definition:
class.ilFileSystemComponentDataDirectoryCreatedObjective.php:8
ilLearningModuleSetupAgent\getInstallObjective
getInstallObjective(Setup\Config $config=null)
Definition:
class.ilLearningModuleSetupAgent.php:38
ILIAS\Setup
Definition:
AchievementTracker.php:5
ilLearningModuleSetupAgent\hasConfig
hasConfig()
Definition:
class.ilLearningModuleSetupAgent.php:14
ilLearningModuleSetupAgent\getBuildArtifactObjective
getBuildArtifactObjective()
Definition:
class.ilLearningModuleSetupAgent.php:62
ILIAS\Refinery\Transformation
A transformation is a function from one datatype to another.
Definition:
Transformation.php:17
ILIAS\UI
ILIAS\Setup\Config
A configuration for the setup.
Definition:
Config.php:10
Modules
LearningModule
classes
Setup
class.ilLearningModuleSetupAgent.php
Generated on Wed Apr 2 2025 20:00:57 for ILIAS by
1.8.13 (using
Doxyfile
)