ILIAS
release_5-2 Revision v5.2.25-18-g3f80b828510
◀ ilDoc Overview
Legacy.php
Go to the documentation of this file.
1
<?
php
2
3
/* Copyright (c) 2016 Timon Amstutz <timon.amstutz@ilub.unibe.ch> Extended GPL, see docs/LICENSE */
4
5
namespace
ILIAS\UI\Implementation\Component\Legacy
;
6
7
use
ILIAS\UI\Component
as
C
;
8
use ILIAS\UI\Implementation\Component\ComponentHelper;
9
14
class
Legacy
implements
C\Legacy\Legacy
{
15
use ComponentHelper;
16
20
private
$content
;
21
22
27
public
function
__construct
(
$content
) {
28
$this->checkStringArg(
"content"
,
$content
);
29
30
$this->content =
$content
;
31
}
32
36
public
function
getContent
(){
37
return
$this->content
;
38
}
39
}
40
?>
php
An exception for terminatinating execution or to throw for unit testing.
C\Legacy\Legacy
ILIAS\UI\Implementation\Component\Legacy\Legacy
Definition:
Legacy.php:14
ILIAS\UI\Implementation\Component\Legacy\Legacy\$content
$content
Definition:
Legacy.php:20
ILIAS\UI\Implementation\Component\Legacy\Legacy\getContent
getContent()
Definition:
Legacy.php:36
ILIAS\UI\Implementation\Component\Legacy\Legacy\__construct
__construct($content)
Legacy constructor.
Definition:
Legacy.php:27
ILIAS\UI\Component
ILIAS\UI\Implementation\Component\Legacy
Definition:
Legacy.php:5
src
UI
Implementation
Component
Legacy
Legacy.php
Generated on Fri Oct 3 2025 19:00:41 for ILIAS by
1.9.4 (using
Doxyfile
)