ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilGlobalScreenSetupAgent.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use
ILIAS\Setup\Agent
;
22
use
ILIAS\Setup\Agent\HasNoNamedObjective
;
23
use
ILIAS\Setup\Config
;
24
use
ILIAS\Setup\Objective
;
25
use
ILIAS\Setup\Objective\NullObjective
;
26
use
ILIAS\Setup\Metrics\Storage
;
27
use
ILIAS\Refinery\Factory
as
Refinery
;
28
use
ILIAS\Refinery\Transformation
;
29
30
class
ilGlobalScreenSetupAgent
implements
Agent
31
{
32
use
HasNoNamedObjective
;
33
34
public
function
__construct
(
protected
Refinery
$refinery
)
35
{
36
}
37
41
public
function
hasConfig
(): bool
42
{
43
return
false
;
44
}
45
49
public
function
getArrayToConfigTransformation
():
Transformation
50
{
51
throw
new
LogicException
(self::class .
" has no Config."
);
52
}
53
57
public
function
getInstallObjective
(?
Config
$config =
null
):
Objective
58
{
59
return
new
NullObjective
();
60
}
61
65
public
function
getUpdateObjective
(?
Config
$config =
null
):
Objective
66
{
67
return
new
NullObjective
();
68
}
69
73
public
function
getBuildObjective
():
Objective
74
{
75
return
new
ilGlobalScreenBuildProviderMapObjective
();
76
}
77
81
public
function
getStatusObjective
(
Storage
$storage):
Objective
82
{
83
return
new
NullObjective
();
84
}
85
89
public
function
getMigrations
(): array
90
{
91
return
[];
92
}
93
}
LogicException
Storage
ILIAS\UI\examples\Layout\Page\Standard\$refinery
$refinery
Definition:
ui.php:137
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
ILIAS\Setup\Metrics\Storage
Definition:
Storage.php:23
ilGlobalScreenBuildProviderMapObjective
Definition:
class.ilGlobalScreenBuildProviderMapObjective.php:36
ilGlobalScreenSetupAgent\getArrayToConfigTransformation
getArrayToConfigTransformation()
Definition:
class.ilGlobalScreenSetupAgent.php:49
ILIAS\Setup\Agent
Definition:
class.Agent.php:26
ilGlobalScreenSetupAgent\getUpdateObjective
getUpdateObjective(?Config $config=null)
Definition:
class.ilGlobalScreenSetupAgent.php:65
ilGlobalScreenSetupAgent\getMigrations
getMigrations()
Definition:
class.ilGlobalScreenSetupAgent.php:89
ilGlobalScreenSetupAgent\getInstallObjective
getInstallObjective(?Config $config=null)
Definition:
class.ilGlobalScreenSetupAgent.php:57
ilGlobalScreenSetupAgent\hasConfig
hasConfig()
Definition:
class.ilGlobalScreenSetupAgent.php:41
Config
HasNoNamedObjective
Transformation
ILIAS\Setup\Objective\NullObjective
A non-objective, nothing to do to achieve it...
Definition:
NullObjective.php:28
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
Factory
ILIAS\Setup\Objective
Definition:
AdminConfirmedObjective.php:21
HasNoNamedObjective
ilGlobalScreenSetupAgent\getBuildObjective
getBuildObjective()
Definition:
class.ilGlobalScreenSetupAgent.php:73
ilGlobalScreenSetupAgent\__construct
__construct(protected Refinery $refinery)
Definition:
class.ilGlobalScreenSetupAgent.php:34
ILIAS\Refinery\Transformation
A transformation is a function from one datatype to another.
Definition:
Transformation.php:34
ILIAS\Setup\Config
A configuration for the setup.
Definition:
Config.php:26
ilGlobalScreenSetupAgent
Definition:
class.ilGlobalScreenSetupAgent.php:30
ilGlobalScreenSetupAgent\getStatusObjective
getStatusObjective(Storage $storage)
Definition:
class.ilGlobalScreenSetupAgent.php:81
NullObjective
ILIAS\Setup\Agent
Definition:
HasNoNamedObjective.php:21
components
ILIAS
GlobalScreen_
classes
Setup
class.ilGlobalScreenSetupAgent.php
Generated on Thu Apr 3 2025 23:03:01 for ILIAS by
1.8.13 (using
Doxyfile
)