ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
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 Aug 31 2025 23:02:05 for ILIAS by
1.8.13 (using
Doxyfile
)