ILIAS
trunk Revision v11.0_alpha-2662-g519ff7d528f
◀ ilDoc Overview
class.MetadataManager.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MediaPool\Metadata
;
22
23
use
ILIAS\MetaData\Services\ServicesInterface
as
LOMServices
;
24
25
class
MetadataManager
26
{
27
protected
LOMServices
$lom_services
;
28
29
public
function
__construct
(
LOMServices
$lom_services)
30
{
31
$this->lom_services =
$lom_services
;
32
}
33
34
public
function
cloneLOM
(
35
int
$source_obj_id,
36
int
$source_sub_id,
37
string
$source_type,
38
int
$target_obj_id,
39
int
$target_sub_id,
40
string
$target_type
41
): void {
42
$this->lom_services->derive()
43
->fromObject($source_obj_id, $source_sub_id, $source_type)
44
->forObject($source_obj_id, $source_sub_id, $source_type);
45
}
46
}
ILIAS\MediaPool\Metadata
Definition:
class.MetadataManager.php:21
ILIAS\FileUpload\DTO\Metadata\MetadataManager\cloneLOM
cloneLOM(int $source_obj_id, int $source_sub_id, string $source_type, int $target_obj_id, int $target_sub_id, string $target_type)
Definition:
class.MetadataManager.php:34
ILIAS\FileUpload\DTO\Metadata\MetadataManager\__construct
__construct(LOMServices $lom_services)
Definition:
class.MetadataManager.php:29
ILIAS\FileUpload\DTO\Metadata\MetadataManager
Definition:
class.MetadataManager.php:25
ILIAS\FileUpload\DTO\Metadata\MetadataManager\$lom_services
LOMServices $lom_services
Definition:
class.MetadataManager.php:27
ServicesInterface
components
ILIAS
MediaPool
Metadata
class.MetadataManager.php
Generated on Wed Sep 3 2025 23:02:42 for ILIAS by
1.8.13 (using
Doxyfile
)