ILIAS
release_8 Revision v8.24
◀ ilDoc Overview
Table.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\UI\Implementation\Component\Table
;
22
23
use
ILIAS\UI\Component\Table
as
T
;
24
use ILIAS\UI\Implementation\Component\ComponentHelper;
25
26
abstract
class
Table
implements
T\Table
27
{
28
use ComponentHelper;
29
30
protected
string
$title
;
31
32
public
function
__construct
(
33
string
$title
34
) {
35
$this->
title
=
$title
;
36
}
37
41
public
function
withTitle
(
string
$title):
T
\
Table
42
{
43
$clone =
clone
$this
;
44
$clone->title =
$title
;
45
return
$clone;
46
}
47
51
public
function
getTitle
():
string
52
{
53
return
$this->title
;
54
}
55
}
ILIAS\GlobalScreen\ScreenContext\Stack\ContextCollection\$this
function return $this
Definition:
ContextCollection.php:135
ILIAS\Refinery\Factory\string
string()
Contains constraints for string.
Definition:
Factory.php:86
ILIAS\UI\Implementation\Component\Table\Table
Definition:
Table.php:27
ILIAS\UI\Implementation\Component\Table\Table\__construct
__construct(string $title)
Definition:
Table.php:32
ILIAS\UI\Implementation\Component\Table\Table\withTitle
withTitle(string $title)
Definition:
Table.php:41
ILIAS\UI\Implementation\Component\Table\Table\$title
string $title
Definition:
Table.php:30
ILIAS\UI\Implementation\Component\Table\Table\getTitle
getTitle()
Definition:
Table.php:51
ilAccessibilityDocument\title
title()
Definition:
class.ilAccessibilityDocument.php:113
ilDclStandardField\clone
clone(ilDclStandardField $original_record)
Definition:
class.ilDclStandardField.php:53
ilGeoLocation\$title
$title
Definition:
ilGeoLocation.php:9
ILIAS\UI\Component\Table
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\UI\Implementation\Component\Table
src
UI
Implementation
Component
Table
Table.php
Generated on Sun Nov 2 2025 22:02:01 for ILIAS by
1.9.4 (using
Doxyfile
)