ILIAS
trunk Revision v11.0_alpha-1744-gb0451eebef4
◀ 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
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 Tue Apr 8 2025 23:03:00 for ILIAS by
1.8.13 (using
Doxyfile
)