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.ilLoggingSetupAgent.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\Refinery
;
7
use
ILIAS\UI
;
8
9
class
ilLoggingSetupAgent
implements
Setup\Agent
10
{
14
protected
$refinery
;
15
16
public
function
__construct
(
17
Refinery
\
Factory
$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) :
UI
\
Component
\
Input
\Field\
Input
34
{
35
throw
new \LogicException(
"Not yet implemented."
);
36
}
37
41
public
function
getArrayToConfigTransformation
() :
Refinery
\
Transformation
42
{
43
return
$this->refinery->custom()->transformation(
function
(
$data
) {
44
return
new \ilLoggingSetupConfig(
45
$data
[
"enable"
] ??
false
,
46
$data
[
"path_to_logfile"
] ?? null,
47
$data
[
"errorlog_dir"
] ?? null
48
);
49
});
50
}
51
55
public
function
getInstallObjective
(Setup\
Config
$config
= null) : Setup\
Objective
56
{
57
return
new
Setup\ObjectiveCollection(
58
"Complete objectives from Services/Logging"
,
59
false
,
60
new
ilLoggingConfigStoredObjective
(
$config
)
61
);
62
}
63
67
public
function
getUpdateObjective
(Setup\
Config
$config
= null) : Setup\
Objective
68
{
69
return
new
Setup\NullObjective();
70
}
71
75
public
function
getBuildArtifactObjective
() : Setup\
Objective
76
{
77
return
new
Setup\NullObjective();
78
}
79
}
ilLoggingConfigStoredObjective
Definition:
class.ilLoggingConfigStoredObjective.php:8
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
ILIAS\Refinery
Definition:
Constraint.php:5
ilLoggingSetupAgent\__construct
__construct(Refinery\Factory $refinery)
Definition:
class.ilLoggingSetupAgent.php:16
$config
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition:
metadata.php:68
ILIAS\UI\Component
ilLoggingSetupAgent\getArrayToConfigTransformation
getArrayToConfigTransformation()
Definition:
class.ilLoggingSetupAgent.php:41
ilLoggingSetupAgent\getInstallObjective
getInstallObjective(Setup\Config $config=null)
Definition:
class.ilLoggingSetupAgent.php:55
ilLoggingSetupAgent\getBuildArtifactObjective
getBuildArtifactObjective()
Definition:
class.ilLoggingSetupAgent.php:75
ilLoggingSetupAgent\$refinery
$refinery
Definition:
class.ilLoggingSetupAgent.php:14
ilLoggingSetupAgent
Definition:
class.ilLoggingSetupAgent.php:9
Factory
ilLoggingSetupAgent\hasConfig
hasConfig()
Definition:
class.ilLoggingSetupAgent.php:25
Input
ILIAS\Data\Factory
Builds data types.
Definition:
Factory.php:19
ilLoggingSetupAgent\getConfigInput
getConfigInput(Setup\Config $config=null)
Definition:
class.ilLoggingSetupAgent.php:33
ILIAS\Setup
Definition:
AchievementTracker.php:5
ilLoggingSetupAgent\getUpdateObjective
getUpdateObjective(Setup\Config $config=null)
Definition:
class.ilLoggingSetupAgent.php:67
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
Services
Logging
classes
Setup
class.ilLoggingSetupAgent.php
Generated on Thu Apr 3 2025 20:01:08 for ILIAS by
1.8.13 (using
Doxyfile
)