ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilStyleSetupAgent.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\Data
;
8
use
ILIAS\UI
;
9
10
class
ilStyleSetupAgent
implements
Setup\Agent
11
{
12
use
Setup\Agent\HasNoNamedObjective
;
13
17
protected
$refinery
;
18
19
public
function
__construct
(
20
Refinery
\
Factory
$refinery
21
) {
22
$this->
refinery
=
$refinery
;
23
}
24
28
public
function
hasConfig
(): bool
29
{
30
return
true
;
31
}
32
36
public
function
getArrayToConfigTransformation
():
Refinery
\
Transformation
37
{
38
return
$this->
refinery
->custom()->transformation(
function
(
$data
) {
39
return
new \ilStyleSetupConfig(
40
$data
[
"manage_system_styles"
] ??
false
,
41
$data
[
"path_to_lessc"
] ?? null
42
);
43
});
44
}
45
49
public
function
getInstallObjective
(Setup\
Config
$config
= null): Setup\
Objective
50
{
51
return
new
ilStyleConfigStoredObjective
(
$config
);
52
}
53
57
public
function
getUpdateObjective
(Setup\
Config
$config
= null): Setup\
Objective
58
{
59
if
(
$config
!== null) {
60
return
new
ilStyleConfigStoredObjective
(
$config
);
61
}
62
return
new
Setup\Objective\NullObjective();
63
}
64
68
public
function
getBuildArtifactObjective
(): Setup\
Objective
69
{
70
return
new
ilKitchenSinkDataCollectedObjective
();
71
}
72
76
public
function
getStatusObjective
(Setup\Metrics\Storage $storage): Setup\
Objective
77
{
78
return
new
ilStyleMetricsCollectedObjective
($storage);
79
}
80
84
public
function
getMigrations
(): array
85
{
86
return
[];
87
}
88
}
$data
$data
Definition:
ltiregistration.php:31
ilStyleSetupAgent\getStatusObjective
getStatusObjective(Setup\Metrics\Storage $storage)
Definition:
class.ilStyleSetupAgent.php:76
ILIAS\Setup\Objective
An objective is a desired state of the system that is supposed to be created by the setup...
Definition:
Objective.php:30
ilStyleSetupAgent\getInstallObjective
getInstallObjective(Setup\Config $config=null)
Definition:
class.ilStyleSetupAgent.php:49
ILIAS\Refinery
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
ByTrying.php:21
$config
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition:
metadata.php:85
ilStyleSetupAgent\__construct
__construct(Refinery\Factory $refinery)
Definition:
class.ilStyleSetupAgent.php:19
ilStyleMetricsCollectedObjective
Definition:
class.ilStyleMetricsCollectedObjective.php:7
ilStyleSetupAgent\getArrayToConfigTransformation
getArrayToConfigTransformation()
Definition:
class.ilStyleSetupAgent.php:36
ILIAS\Repository\refinery
refinery()
Definition:
trait.GlobalDICDomainServices.php:71
ilStyleSetupAgent\$refinery
$refinery
Definition:
class.ilStyleSetupAgent.php:17
ilStyleConfigStoredObjective
Definition:
class.ilStyleConfigStoredObjective.php:8
Factory
ilStyleSetupAgent\getBuildArtifactObjective
getBuildArtifactObjective()
Definition:
class.ilStyleSetupAgent.php:68
ilKitchenSinkDataCollectedObjective
Definition:
class.ilKitchenSinkDataCollectedObjective.php:8
ILIAS\Setup
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilMysqlMyIsamToInnoDbMigration.php:19
ilStyleSetupAgent\getMigrations
getMigrations()
Definition:
class.ilStyleSetupAgent.php:84
ILIAS\Refinery\Transformation
A transformation is a function from one datatype to another.
Definition:
Transformation.php:34
ILIAS\UI
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
HasNoNamedObjective
ilStyleSetupAgent\hasConfig
hasConfig()
Definition:
class.ilStyleSetupAgent.php:28
ILIAS\Setup\Config
A configuration for the setup.
Definition:
Config.php:26
ilStyleSetupAgent
Definition:
class.ilStyleSetupAgent.php:10
ilStyleSetupAgent\getUpdateObjective
getUpdateObjective(Setup\Config $config=null)
Definition:
class.ilStyleSetupAgent.php:57
ILIAS\Data
Definition:
Alphanumeric.php:11
Services
Style
classes
Setup
class.ilStyleSetupAgent.php
Generated on Fri Apr 4 2025 22:03:00 for ILIAS by
1.8.13 (using
Doxyfile
)