ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
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.ilFileSystemSetupAgent.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
ilFileSystemSetupAgent
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 \ilFileSystemSetupConfig(
40
$data
[
"data_dir"
]
41
);
42
});
43
}
44
48
public
function
getInstallObjective
(Setup\
Config
$config
= null) : Setup\
Objective
49
{
50
return
new
ilFileSystemDirectoriesCreatedObjective
(
$config
);
51
}
52
56
public
function
getUpdateObjective
(Setup\
Config
$config
= null) : Setup\
Objective
57
{
58
if
(
$config
) {
59
return
new
ilFileSystemConfigNotChangedObjective
(
$config
);
60
}
61
return
new
Setup\Objective\NullObjective();
62
}
63
67
public
function
getBuildArtifactObjective
() : Setup\
Objective
68
{
69
return
new
Setup\Objective\NullObjective();
70
}
71
75
public
function
getStatusObjective
(Setup\Metrics\Storage $storage) : Setup\
Objective
76
{
77
return
new
ilFileSystemMetricsCollectedObjective
($storage);
78
}
79
83
public
function
getMigrations
() : array
84
{
85
return
[];
86
}
87
}
ilFileSystemDirectoriesCreatedObjective
Definition:
class.ilFileSystemDirectoriesCreatedObjective.php:8
ilFileSystemSetupAgent\getArrayToConfigTransformation
getArrayToConfigTransformation()
Definition:
class.ilFileSystemSetupAgent.php:36
$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:
ByTrying.php:5
ilFileSystemSetupAgent\hasConfig
hasConfig()
Definition:
class.ilFileSystemSetupAgent.php:28
ilFileSystemSetupAgent\getMigrations
getMigrations()
Definition:
class.ilFileSystemSetupAgent.php:83
$config
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition:
metadata.php:68
ilFileSystemSetupAgent\getBuildArtifactObjective
getBuildArtifactObjective()
Definition:
class.ilFileSystemSetupAgent.php:67
ilFileSystemSetupAgent\getUpdateObjective
getUpdateObjective(Setup\Config $config=null)
Definition:
class.ilFileSystemSetupAgent.php:56
Factory
ilFileSystemSetupAgent\getInstallObjective
getInstallObjective(Setup\Config $config=null)
Definition:
class.ilFileSystemSetupAgent.php:48
ilFileSystemSetupAgent
Definition:
class.ilFileSystemSetupAgent.php:10
ILIAS\Data\Factory
Builds data types.
Definition:
Factory.php:19
ilFileSystemSetupAgent\$refinery
$refinery
Definition:
class.ilFileSystemSetupAgent.php:17
ilFileSystemMetricsCollectedObjective
Definition:
class.ilFileSystemMetricsCollectedObjective.php:8
ILIAS\Setup
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
AdminInteraction.php:5
ilFileSystemSetupAgent\__construct
__construct(Refinery\Factory $refinery)
Definition:
class.ilFileSystemSetupAgent.php:19
ilFileSystemConfigNotChangedObjective
Definition:
class.ilFileSystemConfigNotChangedObjective.php:8
ILIAS\Refinery\Transformation
A transformation is a function from one datatype to another.
Definition:
Transformation.php:17
ILIAS\UI
ilFileSystemSetupAgent\getStatusObjective
getStatusObjective(Setup\Metrics\Storage $storage)
Definition:
class.ilFileSystemSetupAgent.php:75
HasNoNamedObjective
ILIAS\Setup\Config
A configuration for the setup.
Definition:
Config.php:10
ILIAS\Data
Definition:
Alphanumeric.php:10
Services
FileSystem
classes
Setup
class.ilFileSystemSetupAgent.php
Generated on Wed Apr 2 2025 21:01:29 for ILIAS by
1.8.13 (using
Doxyfile
)