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.ilForumSetupAgent.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
ilForumSetupAgent
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
'forum'
,
42
ilFileSystemComponentDataDirectoryCreatedObjective::DATADIR
43
);
44
45
return
new
Setup\ObjectiveCollection(
46
"Complete objectives from Modules/Forum"
,
47
false
,
48
$dir_objective
49
);
50
}
51
55
public
function
getUpdateObjective
(Setup\
Config
$config
= null) : Setup\
Objective
56
{
57
return
new
Setup\NullObjective();
58
}
59
63
public
function
getBuildArtifactObjective
() : Setup\
Objective
64
{
65
return
new
Setup\NullObjective();
66
}
67
}
ilForumSetupAgent\getBuildArtifactObjective
getBuildArtifactObjective()
Definition:
class.ilForumSetupAgent.php:63
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
ilFileSystemComponentDataDirectoryCreatedObjective\DATADIR
const DATADIR
Definition:
class.ilFileSystemComponentDataDirectoryCreatedObjective.php:10
ilForumSetupAgent\getConfigInput
getConfigInput(Setup\Config $config=null)
Definition:
class.ilForumSetupAgent.php:22
$config
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition:
metadata.php:68
ILIAS\UI\Component
ilForumSetupAgent\getUpdateObjective
getUpdateObjective(Setup\Config $config=null)
Definition:
class.ilForumSetupAgent.php:55
Factory
Input
ilFileSystemComponentDataDirectoryCreatedObjective
Definition:
class.ilFileSystemComponentDataDirectoryCreatedObjective.php:8
ilForumSetupAgent\hasConfig
hasConfig()
Definition:
class.ilForumSetupAgent.php:14
ILIAS\Setup
Definition:
AchievementTracker.php:5
ilForumSetupAgent\getInstallObjective
getInstallObjective(Setup\Config $config=null)
Definition:
class.ilForumSetupAgent.php:38
ilForumSetupAgent
Definition:
class.ilForumSetupAgent.php:9
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
ilForumSetupAgent\getArrayToConfigTransformation
getArrayToConfigTransformation()
Definition:
class.ilForumSetupAgent.php:30
Modules
Forum
classes
Setup
class.ilForumSetupAgent.php
Generated on Thu Apr 3 2025 20:00:50 for ILIAS by
1.8.13 (using
Doxyfile
)