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
CopyrightData.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\Copyright
;
22
23
use
ILIAS\Data\URI
;
24
25
class
CopyrightData
implements
CopyrightDataInterface
26
{
27
protected
string
$full_name
;
28
protected
?
URI
$link
;
29
protected
?
URI
$image_link
=
null
;
30
protected
string
$image_file
=
''
;
31
protected
string
$alt_text
;
32
protected
bool
$fall_back_to_default_image
;
33
34
public
function
__construct
(
35
string
$full_name,
36
?
URI
$link,
37
?
URI
$image_link,
38
string
$image_file,
39
string
$alt_text,
40
bool
$fall_back_to_default_image
41
) {
42
$this->full_name =
$full_name
;
43
$this->
link
=
$link
;
44
$this->alt_text =
$alt_text
;
45
$this->image_link =
$image_link
;
46
$this->image_file =
$image_file
;
47
$this->fall_back_to_default_image =
$fall_back_to_default_image
;
48
}
49
50
public
function
fullName
(): string
51
{
52
return
$this->full_name
;
53
}
54
55
public
function
link
(): ?
URI
56
{
57
return
$this->link
;
58
}
59
60
public
function
hasImage
(): bool
61
{
62
return
$this->
isImageLink
() || $this->
imageFile
() !==
''
;
63
}
64
65
public
function
isImageLink
(): bool
66
{
67
return
!is_null($this->
imageLink
());
68
}
69
70
public
function
imageLink
(): ?
URI
71
{
72
return
$this->image_link
;
73
}
74
75
public
function
imageFile
(): string
76
{
77
return
$this->image_file
;
78
}
79
80
public
function
altText
(): string
81
{
82
return
$this->alt_text
;
83
}
84
85
public
function
fallBackToDefaultImage
(): bool
86
{
87
return
$this->fall_back_to_default_image
;
88
}
89
}
ILIAS\MetaData\Copyright
Definition:
CopyrightData.php:21
ILIAS\MetaData\Copyright\CopyrightData\link
link()
Definition:
CopyrightData.php:55
ILIAS\MetaData\Copyright\CopyrightData\imageFile
imageFile()
Definition:
CopyrightData.php:75
ILIAS\MetaData\Copyright\CopyrightData\$image_file
string $image_file
Definition:
CopyrightData.php:30
ILIAS\MetaData\Copyright\CopyrightDataInterface
Definition:
CopyrightDataInterface.php:25
ILIAS\MetaData\Copyright\CopyrightData\$image_link
URI $image_link
Definition:
CopyrightData.php:29
ILIAS\MetaData\Copyright\CopyrightData\$full_name
string $full_name
Definition:
CopyrightData.php:27
ILIAS\MetaData\Copyright\CopyrightData\fallBackToDefaultImage
fallBackToDefaultImage()
Definition:
CopyrightData.php:85
ILIAS\MetaData\Copyright\CopyrightData\fullName
fullName()
Definition:
CopyrightData.php:50
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\MetaData\Copyright\CopyrightData\imageLink
imageLink()
Definition:
CopyrightData.php:70
ILIAS\MetaData\Copyright\CopyrightData\$link
URI $link
Definition:
CopyrightData.php:28
ILIAS\MetaData\Copyright\CopyrightData
Definition:
CopyrightData.php:25
ILIAS\MetaData\Copyright\CopyrightData\isImageLink
isImageLink()
Definition:
CopyrightData.php:65
ILIAS\Data\URI
ILIAS\MetaData\Copyright\CopyrightData\$alt_text
string $alt_text
Definition:
CopyrightData.php:31
ILIAS\MetaData\Copyright\CopyrightData\altText
altText()
Definition:
CopyrightData.php:80
ILIAS\MetaData\Copyright\CopyrightData\__construct
__construct(string $full_name, ?URI $link, ?URI $image_link, string $image_file, string $alt_text, bool $fall_back_to_default_image)
Definition:
CopyrightData.php:34
ILIAS\MetaData\Copyright\CopyrightData\$fall_back_to_default_image
bool $fall_back_to_default_image
Definition:
CopyrightData.php:32
ILIAS\MetaData\Copyright\CopyrightData\hasImage
hasImage()
Definition:
CopyrightData.php:60
components
ILIAS
MetaData
classes
Copyright
CopyrightData.php
Generated on Wed Apr 2 2025 23:03:14 for ILIAS by
1.8.13 (using
Doxyfile
)