ILIAS
trunk Revision v11.0_alpha-1713-gd8962da2f67
◀ 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
Entry.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\MetaData\Copyright
;
22
23
class
Entry
implements
EntryInterface
24
{
25
protected
int
$id
;
26
protected
string
$title
;
27
protected
string
$description
;
28
protected
bool
$is_default
;
29
protected
bool
$is_outdated
;
30
protected
int
$position
;
31
protected
CopyrightDataInterface
$data
;
32
33
public
function
__construct
(
34
int
$id,
35
string
$title,
36
string
$description,
37
bool
$is_default,
38
bool
$is_outdated,
39
int
$position,
40
CopyrightDataInterface
$data
41
) {
42
$this->
id
=
$id
;
43
$this->
title
=
$title
;
44
$this->
description
=
$description
;
45
$this->is_default =
$is_default
;
46
$this->is_outdated =
$is_outdated
;
47
$this->
position
=
$position
;
48
$this->data =
$data
;
49
}
50
51
public
function
id
():
int
52
{
53
return
$this->id
;
54
}
55
56
public
function
title
(): string
57
{
58
return
$this->title
;
59
}
60
61
public
function
description
(): string
62
{
63
return
$this->description
;
64
}
65
66
public
function
isDefault
(): bool
67
{
68
return
$this->is_default
;
69
}
70
71
public
function
isOutdated
(): bool
72
{
73
return
$this->is_outdated
;
74
}
75
76
public
function
position
():
int
77
{
78
return
$this->position
;
79
}
80
81
public
function
copyrightData
():
CopyrightDataInterface
82
{
83
return
$this->data
;
84
}
85
}
ILIAS\MetaData\Copyright
Definition:
CopyrightData.php:21
ILIAS\MetaData\Copyright\EntryInterface
Definition:
EntryInterface.php:23
ILIAS\MetaData\Copyright\Entry\$description
string $description
Definition:
Entry.php:27
ILIAS\MetaData\Copyright\Entry\$is_default
bool $is_default
Definition:
Entry.php:28
ILIAS\MetaData\Copyright\CopyrightDataInterface
Definition:
CopyrightDataInterface.php:25
ILIAS\MetaData\Copyright\Entry\$id
int $id
Definition:
Entry.php:25
ComponentEntry
ILIAS\MetaData\Copyright\Entry\$is_outdated
bool $is_outdated
Definition:
Entry.php:29
ILIAS\MetaData\Copyright\Entry\position
position()
Definition:
Entry.php:76
ILIAS\MetaData\Copyright\Entry\id
id()
Definition:
Entry.php:51
ILIAS\MetaData\Copyright\Entry\$position
int $position
Definition:
Entry.php:30
ILIAS\MetaData\Copyright\Entry\isOutdated
isOutdated()
Definition:
Entry.php:71
ILIAS\MetaData\Copyright\Entry\__construct
__construct(int $id, string $title, string $description, bool $is_default, bool $is_outdated, int $position, CopyrightDataInterface $data)
Definition:
Entry.php:33
ILIAS\MetaData\Copyright\Entry\description
description()
Definition:
Entry.php:61
ILIAS\MetaData\Copyright\Entry\title
title()
Definition:
Entry.php:56
ILIAS\MetaData\Copyright\Entry\copyrightData
copyrightData()
Definition:
Entry.php:81
ILIAS\MetaData\Copyright\Entry\$data
CopyrightDataInterface $data
Definition:
Entry.php:31
ILIAS\MetaData\Copyright\Entry\isDefault
isDefault()
Definition:
Entry.php:66
ILIAS\MetaData\Copyright\Entry\$title
string $title
Definition:
Entry.php:26
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
components
ILIAS
MetaData
classes
Copyright
Entry.php
Generated on Fri Apr 4 2025 23:03:16 for ILIAS by
1.8.13 (using
Doxyfile
)