ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ 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
NullDataHelper.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\DataHelper
;
22
23
class
NullDataHelper
implements
DataHelperInterface
24
{
25
public
function
matchesDurationPattern
(
string
$string): bool
26
{
27
return
false
;
28
}
29
30
public
function
matchesDatetimePattern
(
string
$string): bool
31
{
32
return
false
;
33
}
34
38
public
function
durationToIterator
(
string
$duration
): \
Generator
39
{
40
yield
from
[];
41
}
42
43
public
function
durationToSeconds
(
string
$duration
):
int
44
{
45
return
0;
46
}
47
51
public
function
datetimeToIterator
(
string
$datetime
): \
Generator
52
{
53
yield
from
[];
54
}
55
56
public
function
datetimeToObject
(
string
$datetime
): \
DateTimeImmutable
57
{
58
return
new \DateTimeImmutable(
'@0'
);
59
}
60
61
public
function
durationFromIntegers
(
62
?
int
$years,
63
?
int
$months,
64
?
int
$days,
65
?
int
$hours,
66
?
int
$minutes,
67
?
int
$seconds
68
): string {
69
return
''
;
70
}
71
72
public
function
datetimeFromObject
(\
DateTimeImmutable
$object): string
73
{
74
return
''
;
75
}
76
80
public
function
getAllLanguages
(): \
Generator
81
{
82
yield
from
[];
83
}
84
}
ILIAS\MetaData\DataHelper\NullDataHelper\matchesDatetimePattern
matchesDatetimePattern(string $string)
Definition:
NullDataHelper.php:30
ILIAS\MetaData\DataHelper\NullDataHelper\datetimeToObject
datetimeToObject(string $datetime)
Definition:
NullDataHelper.php:56
ILIAS\MetaData\DataHelper\NullDataHelper\matchesDurationPattern
matchesDurationPattern(string $string)
Definition:
NullDataHelper.php:25
DateTimeImmutable
$datetime
$datetime
Definition:
LOMStructure.php:69
ILIAS\MetaData\DataHelper\NullDataHelper\datetimeToIterator
datetimeToIterator(string $datetime)
Definition:
NullDataHelper.php:51
ILIAS\MetaData\DataHelper
Definition:
Constants.php:21
$duration
$duration
Definition:
LOMStructure.php:54
ILIAS\MetaData\DataHelper\NullDataHelper\durationToSeconds
durationToSeconds(string $duration)
Definition:
NullDataHelper.php:43
ILIAS\MetaData\DataHelper\NullDataHelper\durationFromIntegers
durationFromIntegers(?int $years, ?int $months, ?int $days, ?int $hours, ?int $minutes, ?int $seconds)
Definition:
NullDataHelper.php:61
ILIAS\MetaData\DataHelper\DataHelperInterface
Definition:
DataHelperInterface.php:23
ILIAS\MetaData\DataHelper\NullDataHelper
Definition:
NullDataHelper.php:23
ILIAS\MetaData\DataHelper\NullDataHelper\datetimeFromObject
datetimeFromObject(\DateTimeImmutable $object)
Note that LOM in ILIAS ignores the time part of any datetimes.
Definition:
NullDataHelper.php:72
ILIAS\MetaData\DataHelper\NullDataHelper\getAllLanguages
getAllLanguages()
Definition:
NullDataHelper.php:80
Generator
ILIAS\ResourceStorage\Flavour\Machine\DefaultMachines\from
from(FileStream $stream)
Definition:
GdImageToStreamTrait.php:48
ILIAS\MetaData\DataHelper\NullDataHelper\durationToIterator
durationToIterator(string $duration)
Definition:
NullDataHelper.php:38
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
components
ILIAS
MetaData
classes
DataHelper
NullDataHelper.php
Generated on Wed Apr 2 2025 23:03:14 for ILIAS by
1.8.13 (using
Doxyfile
)