ILIAS
trunk Revision v11.0_alpha-1866-gfa368f7776e
◀ 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
NullRepository.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\OERHarvester\ExposedRecords
;
22
23
class
NullRepository
implements
RepositoryInterface
24
{
28
public
function
getRecords
(
29
?\
DateTimeImmutable
$from =
null
,
30
?\
DateTimeImmutable
$until =
null
,
31
?
int
$limit =
null
,
32
?
int
$offset =
null
33
): \
Generator
{
34
yield
from
[];
35
}
36
40
public
function
getRecordInfos
(
41
?\
DateTimeImmutable
$from =
null
,
42
?\
DateTimeImmutable
$until =
null
,
43
?
int
$limit =
null
,
44
?
int
$offset =
null
45
): \
Generator
{
46
yield
from
[];
47
}
48
49
public
function
getRecordCount
(
50
?\
DateTimeImmutable
$from =
null
,
51
?\
DateTimeImmutable
$until =
null
52
):
int
{
53
return
0;
54
}
55
56
public
function
getEarliestDatestamp
(): \
DateTimeImmutable
57
{
58
return
new \DateTimeImmutable(
'@0'
);
59
}
60
61
public
function
getRecordByIdentifier
(
string
$identifier): ?
RecordInterface
62
{
63
return
null
;
64
}
65
66
public
function
doesRecordWithIdentifierExist
(
string
$identifier): bool
67
{
68
return
false
;
69
}
70
71
public
function
doesRecordExistForObjID
(
int
$obj_id): bool
72
{
73
return
false
;
74
}
75
76
public
function
createRecord
(
int
$obj_id,
string
$identifier, \
DOMDocument
$metadata): void
77
{
78
}
79
80
public
function
updateRecord
(
int
$obj_id, \
DOMDocument
$metadata): void
81
{
82
}
83
84
public
function
deleteRecord
(
int
$obj_id): void
85
{
86
}
87
}
ILIAS\MetaData\OERHarvester\ExposedRecords\NullRepository\getRecords
getRecords(?\DateTimeImmutable $from=null, ?\DateTimeImmutable $until=null, ?int $limit=null, ?int $offset=null)
Definition:
NullRepository.php:28
DOMDocument
DateTimeImmutable
ILIAS\MetaData\OERHarvester\ExposedRecords\NullRepository\getEarliestDatestamp
getEarliestDatestamp()
Definition:
NullRepository.php:56
ILIAS\MetaData\OERHarvester\ExposedRecords\NullRepository\getRecordInfos
getRecordInfos(?\DateTimeImmutable $from=null, ?\DateTimeImmutable $until=null, ?int $limit=null, ?int $offset=null)
Definition:
NullRepository.php:40
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\MetaData\OERHarvester\ExposedRecords\RepositoryInterface
Definition:
RepositoryInterface.php:23
ILIAS\MetaData\OERHarvester\ExposedRecords\NullRepository\getRecordByIdentifier
getRecordByIdentifier(string $identifier)
Definition:
NullRepository.php:61
ILIAS\MetaData\OERHarvester\ExposedRecords
Definition:
DatabaseRepository.php:21
ILIAS\MetaData\OERHarvester\ExposedRecords\RecordInterface
Definition:
RecordInterface.php:23
ILIAS\MetaData\OERHarvester\ExposedRecords\NullRepository\doesRecordExistForObjID
doesRecordExistForObjID(int $obj_id)
Definition:
NullRepository.php:71
ILIAS\MetaData\OERHarvester\ExposedRecords\NullRepository\deleteRecord
deleteRecord(int $obj_id)
Definition:
NullRepository.php:84
Generator
ILIAS\ResourceStorage\Flavour\Machine\DefaultMachines\from
from(FileStream $stream)
Definition:
GdImageToStreamTrait.php:48
ILIAS\MetaData\OERHarvester\ExposedRecords\NullRepository\getRecordCount
getRecordCount(?\DateTimeImmutable $from=null, ?\DateTimeImmutable $until=null)
Definition:
NullRepository.php:49
ILIAS\MetaData\OERHarvester\ExposedRecords\NullRepository\createRecord
createRecord(int $obj_id, string $identifier, \DOMDocument $metadata)
Definition:
NullRepository.php:76
ILIAS\MetaData\OERHarvester\ExposedRecords\NullRepository\updateRecord
updateRecord(int $obj_id, \DOMDocument $metadata)
Definition:
NullRepository.php:80
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\MetaData\OERHarvester\ExposedRecords\NullRepository\doesRecordWithIdentifierExist
doesRecordWithIdentifierExist(string $identifier)
Definition:
NullRepository.php:66
ILIAS\MetaData\OERHarvester\ExposedRecords\NullRepository
Definition:
NullRepository.php:23
components
ILIAS
MetaData
classes
OERHarvester
ExposedRecords
NullRepository.php
Generated on Fri Apr 25 2025 23:03:00 for ILIAS by
1.8.13 (using
Doxyfile
)