ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ 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
NullCopyrightHelper.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\Services\CopyrightHelper
;
22
23
use
ILIAS\MetaData\Services\Reader\ReaderInterface
;
24
use
ILIAS\MetaData\Services\Manipulator\ManipulatorInterface
;
25
use
ILIAS\MetaData\Search\Clauses\ClauseInterface
as
SearchClause
;
26
use
ILIAS\MetaData\Search\Clauses\NullClause
;
27
28
class
NullCopyrightHelper
implements
CopyrightHelperInterface
29
{
30
public
function
isCopyrightSelectionActive
(): bool
31
{
32
return
false
;
33
}
34
35
public
function
hasPresetCopyright
(
ReaderInterface
$reader): bool
36
{
37
return
false
;
38
}
39
40
public
function
readPresetCopyright
(
ReaderInterface
$reader):
CopyrightInterface
41
{
42
return
new
NullCopyright
();
43
}
44
45
public
function
readCustomCopyright
(
ReaderInterface
$reader): string
46
{
47
return
''
;
48
}
49
50
public
function
prepareCreateOrUpdateOfCopyrightFromPreset
(
51
ManipulatorInterface
$manipulator,
52
string
$copyright_id
53
):
ManipulatorInterface
{
54
return
$manipulator;
55
}
56
57
public
function
prepareCreateOrUpdateOfCustomCopyright
(
58
ManipulatorInterface
$manipulator,
59
string
$custom_copyright
60
):
ManipulatorInterface
{
61
return
$manipulator;
62
}
63
67
public
function
getAllCopyrightPresets
(): \
Generator
68
{
69
yield
from
[];
70
}
71
75
public
function
getNonOutdatedCopyrightPresets
(): \
Generator
76
{
77
yield
from
[];
78
}
79
80
public
function
getCopyrightSearchClause
(
81
string
$first_copyright_id,
82
string
...$further_copyright_ids
83
):
SearchClause
{
84
return
new
NullClause
();
85
}
86
}
ILIAS\MetaData\Services\CopyrightHelper\NullCopyrightHelper\hasPresetCopyright
hasPresetCopyright(ReaderInterface $reader)
Is the copyright in the LOM of the reader's object selected from the presets? If not, custom copyright information was entered manually.
Definition:
NullCopyrightHelper.php:35
ILIAS\MetaData\Search\Clauses\NullClause
Definition:
NullClause.php:26
ILIAS\MetaData\Services\CopyrightHelper\NullCopyrightHelper\isCopyrightSelectionActive
isCopyrightSelectionActive()
If copyright selection is not active, there are no copyright presets to choose from, but copyright information can still be added manually to the LOM of objects.
Definition:
NullCopyrightHelper.php:30
ILIAS\MetaData\Services\CopyrightHelper\NullCopyrightHelper\readCustomCopyright
readCustomCopyright(ReaderInterface $reader)
Returns the custom copyright information from the LOM of the reader's object.
Definition:
NullCopyrightHelper.php:45
ILIAS\MetaData\Services\CopyrightHelper\NullCopyrightHelper\getCopyrightSearchClause
getCopyrightSearchClause(string $first_copyright_id, string ... $further_copyright_ids)
Get a search clause that finds object with one of the given copyright entries in their LOM...
Definition:
NullCopyrightHelper.php:80
ILIAS\MetaData\Services\CopyrightHelper
Definition:
Copyright.php:21
ILIAS\MetaData\Services\CopyrightHelper\NullCopyrightHelper\getNonOutdatedCopyrightPresets
getNonOutdatedCopyrightPresets()
Definition:
NullCopyrightHelper.php:75
ILIAS\MetaData\Services\CopyrightHelper\NullCopyrightHelper\prepareCreateOrUpdateOfCopyrightFromPreset
prepareCreateOrUpdateOfCopyrightFromPreset(ManipulatorInterface $manipulator, string $copyright_id)
The preset copyright with the given identifier is set to be selected for the manipulator's object...
Definition:
NullCopyrightHelper.php:50
ILIAS\MetaData\Services\CopyrightHelper\NullCopyrightHelper\prepareCreateOrUpdateOfCustomCopyright
prepareCreateOrUpdateOfCustomCopyright(ManipulatorInterface $manipulator, string $custom_copyright)
The given copyright information is set to be written to the LOM of the manipulator's object...
Definition:
NullCopyrightHelper.php:57
ILIAS\MetaData\Services\CopyrightHelper\NullCopyright
Definition:
NullCopyright.php:27
ILIAS\MetaData\Services\Reader\ReaderInterface
Definition:
ReaderInterface.php:26
ClauseInterface
ILIAS\MetaData\Services\Manipulator\ManipulatorInterface
Definition:
ManipulatorInterface.php:25
ILIAS\MetaData\Services\CopyrightHelper\CopyrightInterface
Definition:
CopyrightInterface.php:27
ManipulatorInterface
ILIAS\MetaData\Services\CopyrightHelper\NullCopyrightHelper\readPresetCopyright
readPresetCopyright(ReaderInterface $reader)
If possible, returns the preset copyright selected for the reader's object.
Definition:
NullCopyrightHelper.php:40
NullClause
ILIAS\MetaData\Services\CopyrightHelper\NullCopyrightHelper\getAllCopyrightPresets
getAllCopyrightPresets()
Definition:
NullCopyrightHelper.php:67
ILIAS\MetaData\Services\CopyrightHelper\NullCopyrightHelper
Definition:
NullCopyrightHelper.php:28
Generator
ReaderInterface
ILIAS\ResourceStorage\Flavour\Machine\DefaultMachines\from
from(FileStream $stream)
Definition:
GdImageToStreamTrait.php:48
ILIAS\MetaData\Services\CopyrightHelper\CopyrightHelperInterface
Definition:
CopyrightHelperInterface.php:27
components
ILIAS
MetaData
classes
Services
CopyrightHelper
NullCopyrightHelper.php
Generated on Thu Apr 3 2025 23:03:21 for ILIAS by
1.8.13 (using
Doxyfile
)