ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ ilDoc Overview
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
}
ILIAS\Data\Factory
Builds data types.
Definition:
Factory.php:36
ILIAS\Refinery
Definition:
Refinery.php:24
ILIAS\Setup\Objective\NullObjective
A non-objective, nothing to do to achieve it...
Definition:
NullObjective.php:29
ilGlobalScreenBuildProviderMapObjective
Definition:
class.ilGlobalScreenBuildProviderMapObjective.php:37
ilGlobalScreenSetupAgent
Definition:
class.ilGlobalScreenSetupAgent.php:31
ilGlobalScreenSetupAgent\getUpdateObjective
getUpdateObjective(?Config $config=null)
@inheritdocs
Definition:
class.ilGlobalScreenSetupAgent.php:65
ilGlobalScreenSetupAgent\hasConfig
hasConfig()
@inheritdocs
Definition:
class.ilGlobalScreenSetupAgent.php:41
ilGlobalScreenSetupAgent\getBuildObjective
getBuildObjective()
@inheritdocs
Definition:
class.ilGlobalScreenSetupAgent.php:73
ilGlobalScreenSetupAgent\getMigrations
getMigrations()
@inheritDoc
Definition:
class.ilGlobalScreenSetupAgent.php:89
ilGlobalScreenSetupAgent\getInstallObjective
getInstallObjective(?Config $config=null)
@inheritdocs
Definition:
class.ilGlobalScreenSetupAgent.php:57
ilGlobalScreenSetupAgent\getArrayToConfigTransformation
getArrayToConfigTransformation()
@inheritdocs
Definition:
class.ilGlobalScreenSetupAgent.php:49
ilGlobalScreenSetupAgent\__construct
__construct(protected Refinery $refinery)
Definition:
class.ilGlobalScreenSetupAgent.php:34
ilGlobalScreenSetupAgent\getStatusObjective
getStatusObjective(Storage $storage)
Definition:
class.ilGlobalScreenSetupAgent.php:81
ILIAS\Refinery\Transformation
A transformation is a function from one datatype to another.
Definition:
Transformation.php:35
ILIAS\Setup\Agent
A agent is some component that performs part of the setup process.
Definition:
Agent.php:30
ILIAS\Setup\Config
A configuration for the setup.
Definition:
Config.php:27
ILIAS\Setup\Metrics\Storage
Definition:
Storage.php:24
ILIAS\Setup\Objective
An objective is a desired state of the system that is supposed to be created by the setup.
Definition:
Objective.php:31
ILIAS\Setup\Agent
Definition:
HasNoNamedObjective.php:21
ILIAS\Setup\Objective
Definition:
AdminConfirmedObjective.php:21
ILIAS\UI\examples\Layout\Page\Standard\$refinery
$refinery
Definition:
ui.php:137
components
ILIAS
GlobalScreen
classes
Setup
class.ilGlobalScreenSetupAgent.php
Generated on Sat Oct 18 2025 23:03:05 for ILIAS by
1.9.4 (using
Doxyfile
)