ILIAS
trunk Revision v11.0_alpha-1843-g9e1fad99175
◀ 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
Set.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\AdvancedMetaData\Services\ObjectModes\Custom
;
22
23
class
Set
implements
SetInterface
24
{
25
protected
string
$title
;
26
30
protected
array
$fields
;
31
32
public
function
__construct
(
33
string
$title,
34
FieldInterface
...$fields
35
) {
36
$this->title =
$title
;
37
$this->
fields
=
$fields
;
38
}
39
40
public
function
presentableTitle
(): string
41
{
42
return
$this->title
;
43
}
44
48
public
function
fields
(): array
49
{
50
return
$this->fields
;
51
}
52
}
ILIAS\AdvancedMetaData\Services\ObjectModes\Custom
Definition:
Custom.php:21
ILIAS\Cache\Services::ObjectModes::Custom\FieldInterface
Definition:
FieldInterface.php:23
ILIAS\Cache\Services::ObjectModes::Custom\Set\fields
fields()
Definition:
Set.php:48
ILIAS\Cache\Services::ObjectModes::Custom\Set\presentableTitle
presentableTitle()
Definition:
Set.php:40
ILIAS\Cache\Services::ObjectModes::Custom\Set\__construct
__construct(string $title, FieldInterface ... $fields)
Definition:
Set.php:32
ILIAS\Cache\Services::ObjectModes::Custom\Set
Definition:
Set.php:23
ILIAS\Cache\Services::ObjectModes::Custom\SetInterface
Definition:
SetInterface.php:23
ILIAS\Cache\Services::ObjectModes::Custom\Set\$fields
array $fields
Definition:
Set.php:30
ILIAS\Cache\Services::ObjectModes::Custom\Set\$title
string $title
Definition:
Set.php:25
components
ILIAS
AdvancedMetaData
classes
Services
ObjectModes
Custom
Set.php
Generated on Sun Apr 20 2025 23:02:27 for ILIAS by
1.8.13 (using
Doxyfile
)