ILIAS
trunk Revision v11.0_alpha-1769-g99a433fe2dc
◀ 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
NullHandler.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\Vocabularies\Slots
;
22
23
use
ILIAS\MetaData\Paths\PathInterface
;
24
use
ILIAS\MetaData\Vocabularies\Slots\Conditions\ConditionInterface
;
25
use
ILIAS\MetaData\Paths\NullPath
;
26
use
ILIAS\MetaData\Elements\Data\Type
as
DataType
;
27
use
ILIAS\MetaData\Elements\Data\Type
;
28
29
class
NullHandler
implements
HandlerInterface
30
{
31
public
function
pathForSlot
(
Identifier
$identifier):
PathInterface
32
{
33
return
new
NullPath
();
34
}
35
36
public
function
isSlotConditional
(
Identifier
$identifier): bool
37
{
38
return
false
;
39
}
40
41
public
function
conditionForSlot
(
Identifier
$identifier): ?
ConditionInterface
42
{
43
return
null
;
44
}
45
46
public
function
identiferFromPathAndCondition
(
47
PathInterface
$path_to_element,
48
?
PathInterface
$path_to_condition,
49
?
string
$condition_value
50
):
Identifier
{
51
return
Identifier::NULL;
52
}
53
54
public
function
allSlotsForPath
(
PathInterface
$path_to_element): \
Generator
55
{
56
yield
from
[];
57
}
58
59
public
function
doesSlotExist
(
60
PathInterface
$path_to_element,
61
?
PathInterface
$path_to_condition,
62
?
string
$condition_value
63
): bool {
64
return
false
;
65
}
66
67
public
function
dataTypeForSlot
(
Identifier
$identifier):
DataType
68
{
69
return
DataType::NULL;
70
}
71
}
ILIAS\MetaData\Vocabularies\Slots\NullHandler\dataTypeForSlot
dataTypeForSlot(Identifier $identifier)
Definition:
NullHandler.php:67
ILIAS\MetaData\Vocabularies\Slots\NullHandler\doesSlotExist
doesSlotExist(PathInterface $path_to_element, ?PathInterface $path_to_condition, ?string $condition_value)
Definition:
NullHandler.php:59
ConditionInterface
ILIAS\MetaData\Paths\NullPath
Definition:
NullPath.php:23
ILIAS\MetaData\Vocabularies\Slots\Conditions\ConditionInterface
Definition:
ConditionInterface.php:25
ILIAS\MetaData\Vocabularies\Slots\NullHandler
Definition:
NullHandler.php:29
ILIAS\MetaData\Vocabularies\Slots\Identifier
Identifier
Definition:
Identifier.php:23
ILIAS\MetaData\Paths\PathInterface
Definition:
PathInterface.php:25
ILIAS\MetaData\Vocabularies\Slots\NullHandler\identiferFromPathAndCondition
identiferFromPathAndCondition(PathInterface $path_to_element, ?PathInterface $path_to_condition, ?string $condition_value)
Definition:
NullHandler.php:46
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\MetaData\Vocabularies\Slots\NullHandler\allSlotsForPath
allSlotsForPath(PathInterface $path_to_element)
Definition:
NullHandler.php:54
Type
ILIAS\MetaData\Vocabularies\Slots\NullHandler\isSlotConditional
isSlotConditional(Identifier $identifier)
Definition:
NullHandler.php:36
ILIAS\MetaData\Vocabularies\Slots\NullHandler\conditionForSlot
conditionForSlot(Identifier $identifier)
Definition:
NullHandler.php:41
ILIAS\MetaData\Elements\Data\Type
Type
Definition:
Type.php:23
Generator
ILIAS\MetaData\Vocabularies\Slots\NullHandler\pathForSlot
pathForSlot(Identifier $identifier)
Definition:
NullHandler.php:31
ILIAS\ResourceStorage\Flavour\Machine\DefaultMachines\from
from(FileStream $stream)
Definition:
GdImageToStreamTrait.php:48
PathInterface
ILIAS\MetaData\Vocabularies\Slots\HandlerInterface
Definition:
HandlerInterface.php:27
NullPath
ILIAS\MetaData\Vocabularies\Slots
components
ILIAS
MetaData
classes
Vocabularies
Slots
NullHandler.php
Generated on Sun Apr 13 2025 23:03:21 for ILIAS by
1.8.13 (using
Doxyfile
)