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
NullRepository.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\Repository
;
22
23
use
ILIAS\MetaData\Elements\NullSet
;
24
use
ILIAS\MetaData\Elements\SetInterface
;
25
use
ILIAS\MetaData\Paths\PathInterface
;
26
use
ILIAS\MetaData\Elements\RessourceID\RessourceIDInterface
;
27
use
ILIAS\MetaData\Search\Clauses\ClauseInterface
;
28
use
ILIAS\MetaData\Search\Filters\FilterInterface
;
29
30
class
NullRepository
implements
RepositoryInterface
31
{
32
public
function
getMD
(
int
$obj_id,
int
$sub_id,
string
$type):
SetInterface
33
{
34
return
new
NullSet
();
35
}
36
37
public
function
getMDOnPath
(
PathInterface
$path
,
int
$obj_id,
int
$sub_id,
string
$type):
SetInterface
38
{
39
return
new
NullSet
();
40
}
41
45
public
function
searchMD
(
46
ClauseInterface
$clause,
47
?
int
$limit,
48
?
int
$offset,
49
FilterInterface
...$filters
50
): \
Generator
{
51
yield
from
[];
52
}
53
54
public
function
manipulateMD
(
SetInterface
$set): void
55
{
56
}
57
58
public
function
transferMD
(
59
SetInterface
$from_set,
60
int
$to_obj_id,
61
int
$to_sub_id,
62
string
$to_type,
63
bool
$throw_error_if_invalid
64
): void {
65
}
66
67
public
function
deleteAllMD
(
int
$obj_id,
int
$sub_id,
string
$type): void
68
{
69
}
70
}
ILIAS\MetaData\Search\Filters\FilterInterface
Definition:
FilterInterface.php:23
ILIAS\MetaData\Repository
ILIAS\MetaData\Paths\PathInterface
Definition:
PathInterface.php:25
ILIAS\MetaData\Repository\NullRepository\getMDOnPath
getMDOnPath(PathInterface $path, int $obj_id, int $sub_id, string $type)
Returns an MD set with only the elements specified on a path, and all nested subelements of the last ...
Definition:
NullRepository.php:37
ILIAS\MetaData\Repository\NullRepository\searchMD
searchMD(ClauseInterface $clause, ?int $limit, ?int $offset, FilterInterface ... $filters)
Definition:
NullRepository.php:45
ClauseInterface
$path
$path
Definition:
ltiservices.php:29
ILIAS\MetaData\Elements\NullSet
Definition:
NullSet.php:26
RessourceIDInterface
ILIAS\MetaData\Repository\NullRepository\deleteAllMD
deleteAllMD(int $obj_id, int $sub_id, string $type)
Definition:
NullRepository.php:67
SetInterface
ILIAS\MetaData\Repository\NullRepository\getMD
getMD(int $obj_id, int $sub_id, string $type)
Definition:
NullRepository.php:32
ILIAS\MetaData\Elements\SetInterface
Definition:
SetInterface.php:26
ILIAS\MetaData\Repository\NullRepository\transferMD
transferMD(SetInterface $from_set, int $to_obj_id, int $to_sub_id, string $to_type, bool $throw_error_if_invalid)
Transfers a metadata set to an object, regardless of its source.
Definition:
NullRepository.php:58
Generator
ILIAS\MetaData\Search\Clauses\ClauseInterface
Definition:
ClauseInterface.php:26
FilterInterface
ILIAS\ResourceStorage\Flavour\Machine\DefaultMachines\from
from(FileStream $stream)
Definition:
GdImageToStreamTrait.php:48
ILIAS\MetaData\Repository\NullRepository
Definition:
NullRepository.php:30
ILIAS\MetaData\Repository\NullRepository\manipulateMD
manipulateMD(SetInterface $set)
Follows a trail of markers from the root element, and creates, updates or deletes marked MD elements ...
Definition:
NullRepository.php:54
PathInterface
NullSet
ILIAS\MetaData\Repository\RepositoryInterface
Definition:
RepositoryInterface.php:29
components
ILIAS
MetaData
classes
Repository
NullRepository.php
Generated on Wed Apr 2 2025 23:03:14 for ILIAS by
1.8.13 (using
Doxyfile
)