ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
ServicesInterface.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\Services
;
22
23
use
ILIAS\MetaData\Services\Paths\PathsInterface
;
24
use
ILIAS\MetaData\Services\DataHelper\DataHelperInterface
;
25
use
ILIAS\MetaData\Services\Manipulator\ManipulatorInterface
;
26
use
ILIAS\MetaData\Services\Reader\ReaderInterface
;
27
use
ILIAS\MetaData\Paths\PathInterface
;
28
use
ILIAS\MetaData\Services\Derivation\SourceSelectorInterface
;
29
use
ILIAS\MetaData\Services\Search\SearcherInterface
;
30
use
ILIAS\MetaData\Services\CopyrightHelper\CopyrightHelperInterface
;
31
32
interface
ServicesInterface
33
{
51
public
function
read
(
52
int
$obj_id,
53
int
$sub_id,
54
string
$type,
55
?
PathInterface
$limited_to =
null
56
):
ReaderInterface
;
57
62
public
function
search
():
SearcherInterface
;
63
68
public
function
manipulate
(
int
$obj_id,
int
$sub_id,
string
$type):
ManipulatorInterface
;
69
74
public
function
derive
():
SourceSelectorInterface
;
75
80
public
function
deleteAll
(
int
$obj_id,
int
$sub_id,
string
$type): void;
81
86
public
function
paths
():
PathsInterface
;
87
92
public
function
dataHelper
():
DataHelperInterface
;
93
100
public
function
copyrightHelper
():
CopyrightHelperInterface
;
101
}
ILIAS\MetaData\Services\ServicesInterface\read
read(int $obj_id, int $sub_id, string $type, ?PathInterface $limited_to=null)
Get a reader, which can read out LOM of an ILIAS object.
ILIAS\MetaData\Services
SearcherInterface
ILIAS\MetaData\Services\DataHelper\DataHelperInterface
Definition:
DataHelperInterface.php:25
ILIAS\MetaData\Services\ServicesInterface\copyrightHelper
copyrightHelper()
The LOM of an object also contains its copyright information, which might consist of a reference to a...
ILIAS\MetaData\Services\ServicesInterface
Definition:
ServicesInterface.php:32
ILIAS\MetaData\Services\ServicesInterface\dataHelper
dataHelper()
The data carried by many LOM elements is in LOM-specific formats.
ILIAS\MetaData\Services\ServicesInterface\search
search()
Get a searcher, in which you can assemble a search clause and filters, and use these to find objects ...
ILIAS\MetaData\Services\Reader\ReaderInterface
Definition:
ReaderInterface.php:26
ILIAS\MetaData\Services\Search\SearcherInterface
Definition:
SearcherInterface.php:29
ILIAS\MetaData\Paths\PathInterface
Definition:
PathInterface.php:25
CopyrightHelperInterface
ILIAS\MetaData\Services\Manipulator\ManipulatorInterface
Definition:
ManipulatorInterface.php:25
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:144
ManipulatorInterface
ILIAS\MetaData\Services\Paths\PathsInterface
Definition:
PathsInterface.php:25
PathsInterface
ILIAS\MetaData\Services\ServicesInterface\derive
derive()
Derives LOM from a target, for a source.
ILIAS\MetaData\Services\ServicesInterface\paths
paths()
Elements in LOM are identified by paths to them from the root.
ILIAS\MetaData\Services\Derivation\SourceSelectorInterface
Definition:
SourceSelectorInterface.php:23
SourceSelectorInterface
DataHelperInterface
ReaderInterface
PathInterface
ILIAS\MetaData\Services\ServicesInterface\deleteAll
deleteAll(int $obj_id, int $sub_id, string $type)
Delete all LOM of an ILIAS object.
ILIAS\MetaData\Services\CopyrightHelper\CopyrightHelperInterface
Definition:
CopyrightHelperInterface.php:27
ILIAS\MetaData\Services\ServicesInterface\manipulate
manipulate(int $obj_id, int $sub_id, string $type)
Get a manipulator, which can manipulate the LOM of an ILIAS object.
components
ILIAS
MetaData
classes
Services
ServicesInterface.php
Generated on Sun Aug 31 2025 23:02:06 for ILIAS by
1.8.13 (using
Doxyfile
)