ILIAS
release_8 Revision v8.19
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
j
l
m
p
s
t
u
+
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
Ö
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilADTLocalizedTextPresentationBridge.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
5
10
class
ilADTLocalizedTextPresentationBridge
extends
ilADTTextPresentationBridge
11
{
12
public
function
__construct
(
ilADT
$a_adt)
13
{
14
parent::__construct
($a_adt);
15
}
16
17
protected
function
isValidADT
(
ilADT
$a_adt): bool
18
{
19
return
$a_adt instanceof
ilADTLocalizedText
;
20
}
21
22
public
function
getHTML
(): string
23
{
24
if
(!$this->
getADT
()->isNull()) {
25
return
$this->
decorate
(nl2br($this->
getADT
()->getTextForLanguage($this->
lng
->getLangKey())));
26
}
27
return
''
;
28
}
29
30
public
function
getSortable
()
31
{
32
if
(!$this->
getADT
()->isNull()) {
33
return
strtolower($this->
getADT
()->getTextForLanguage($this->
lng
->getLangKey()));
34
}
35
return
''
;
36
}
37
}
ilADTTextPresentationBridge
Definition:
class.ilADTTextPresentationBridge.php:5
ilADTLocalizedTextPresentationBridge\getHTML
getHTML()
Definition:
class.ilADTLocalizedTextPresentationBridge.php:22
ilADTPresentationBridge\decorate
decorate($a_value)
Decorate value.
Definition:
class.ilADTPresentationBridge.php:88
ilADTLocalizedTextPresentationBridge\__construct
__construct(ilADT $a_adt)
Definition:
class.ilADTLocalizedTextPresentationBridge.php:12
ilADTPresentationBridge\getADT
getADT()
Definition:
class.ilADTPresentationBridge.php:54
ilADT
ADT base class.
Definition:
class.ilADT.php:11
ilADTLocalizedText
Class ilADTLocalizedText.
Definition:
class.ilADTLocalizedText.php:25
ilADTLocalizedTextPresentationBridge\getSortable
getSortable()
Definition:
class.ilADTLocalizedTextPresentationBridge.php:30
ILIAS\Repository\lng
lng()
Definition:
trait.GlobalDICDomainServices.php:56
ilADTLocalizedTextPresentationBridge\isValidADT
isValidADT(ilADT $a_adt)
Definition:
class.ilADTLocalizedTextPresentationBridge.php:17
ilADTLocalizedTextPresentationBridge
Class ilADTLocalizedTextPresentationBridge.
Definition:
class.ilADTLocalizedTextPresentationBridge.php:10
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:37
Services
ADT
classes
Types
LocalizedText
class.ilADTLocalizedTextPresentationBridge.php
Generated on Thu Apr 3 2025 22:01:44 for ILIAS by
1.8.13 (using
Doxyfile
)