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
CallableObjective.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
namespace
ILIAS\Setup\Objective
;
6
7
use
ILIAS\Setup
;
8
15
class
CallableObjective
implements
Setup\Objective
16
{
20
protected
$callable
;
21
25
protected
$label
;
26
30
protected
$is_notable
;
31
35
protected
$preconditions
;
36
37
public
function
__construct
(callable
$callable
,
string
$label
,
bool
$is_notable
, Setup\
Objective
...
$preconditions
)
38
{
39
$this->callable =
$callable
;
40
$this->label =
$label
;
41
$this->is_notable =
$is_notable
;
42
$this->preconditions =
$preconditions
;
43
}
44
48
public
function
getHash
() : string
49
{
50
return
hash
(
51
"sha256"
,
52
spl_object_hash($this)
53
);
54
}
55
59
public
function
getLabel
() : string
60
{
61
return
$this->label
;
62
}
63
67
public
function
isNotable
() : bool
68
{
69
return
$this->is_notable
;
70
}
71
75
public
function
getPreconditions
(Setup\
Environment
$environment) : array
76
{
77
return
$this->preconditions
;
78
}
79
83
public
function
achieve
(Setup\
Environment
$environment) : Setup\
Environment
84
{
85
$res
= call_user_func($this->callable, $environment);
86
if
(
$res
instanceof Setup\
Environment
) {
87
return
$res
;
88
}
89
return
$environment;
90
}
91
95
public
function
isApplicable
(Setup\
Environment
$environment) : bool
96
{
97
return
true
;
98
}
99
}
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\Setup\Objective\CallableObjective\__construct
__construct(callable $callable, string $label, bool $is_notable, Setup\Objective ... $preconditions)
Definition:
CallableObjective.php:37
ILIAS\Setup\Objective\CallableObjective\getPreconditions
getPreconditions(Setup\Environment $environment)
Definition:
CallableObjective.php:75
ILIAS\Setup\Objective\CallableObjective\$preconditions
$preconditions
Definition:
CallableObjective.php:35
ILIAS\Setup\Objective\CallableObjective\getHash
getHash()
Definition:
CallableObjective.php:48
hash
ILIAS\Setup\Objective\CallableObjective\getLabel
getLabel()
Definition:
CallableObjective.php:59
$res
foreach($_POST as $key=> $value) $res
Definition:
save_question_post_data.php:15
ILIAS\Setup\Objective\CallableObjective\$callable
$callable
Definition:
CallableObjective.php:20
ILIAS\Setup\Objective
Definition:
AdminConfirmedObjective.php:5
ILIAS\Setup\Objective\CallableObjective\isNotable
isNotable()
Definition:
CallableObjective.php:67
ILIAS\Setup
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
AdminInteraction.php:5
ILIAS\Setup\Objective\CallableObjective\$label
$label
Definition:
CallableObjective.php:25
ILIAS\Setup\Objective\CallableObjective\achieve
achieve(Setup\Environment $environment)
Definition:
CallableObjective.php:83
ILIAS\Setup\Environment
An environment holds resources to be used in the setup process.
Definition:
Environment.php:11
ILIAS\Setup\Objective\CallableObjective\isApplicable
isApplicable(Setup\Environment $environment)
Definition:
CallableObjective.php:95
ILIAS\Setup\Objective\CallableObjective\$is_notable
$is_notable
Definition:
CallableObjective.php:30
ILIAS\Setup\Objective\CallableObjective
A callable objective wraps a callable into an objective.
Definition:
CallableObjective.php:15
src
Setup
Objective
CallableObjective.php
Generated on Thu Apr 3 2025 21:01:36 for ILIAS by
1.8.13 (using
Doxyfile
)