ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
q
r
s
t
u
v
w
x
z
+
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
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilADTLocalizedTextPresentationBridge.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
8
class
ilADTLocalizedTextPresentationBridge
extends
ilADTTextPresentationBridge
9
{
10
private
$lng
;
11
12
public
function
__construct
(
ilADT
$a_adt)
13
{
14
global
$DIC
;
15
16
$this->lng = $DIC->language();
17
18
parent::__construct
($a_adt);
19
}
20
21
protected
function
isValidADT
(
ilADT
$a_adt)
22
{
23
return
$a_adt instanceof
ilADTLocalizedText
;
24
}
25
26
public
function
getHTML
()
27
{
28
if
(!$this->
getADT
()->isNull()) {
29
return
$this->
decorate
(nl2br($this->
getADT
()->getTextForLanguage($this->lng->getLangKey())));
30
}
31
}
32
33
public
function
getSortable
()
34
{
35
if
(!$this->
getADT
()->isNull()) {
36
return
strtolower($this->
getADT
()->getTextForLanguage($this->lng->getLangKey()));
37
}
38
}
39
}
ilADTTextPresentationBridge
Definition:
class.ilADTTextPresentationBridge.php:5
ilADTLocalizedTextPresentationBridge\getHTML
getHTML()
Definition:
class.ilADTLocalizedTextPresentationBridge.php:26
ilADTLocalizedTextPresentationBridge\$lng
$lng
Definition:
class.ilADTLocalizedTextPresentationBridge.php:10
ilADTPresentationBridge\decorate
decorate($a_value)
Decorate value.
Definition:
class.ilADTPresentationBridge.php:107
ilADTLocalizedTextPresentationBridge\__construct
__construct(ilADT $a_adt)
Definition:
class.ilADTLocalizedTextPresentationBridge.php:12
ilADTPresentationBridge\getADT
getADT()
Get ADT.
Definition:
class.ilADTPresentationBridge.php:62
ilADT
ADT base class.
Definition:
class.ilADT.php:11
ilADTLocalizedText
Class ilADTLocalizedText.
Definition:
class.ilADTLocalizedText.php:8
ilADTLocalizedTextPresentationBridge\getSortable
getSortable()
Definition:
class.ilADTLocalizedTextPresentationBridge.php:33
ilADTLocalizedTextPresentationBridge\isValidADT
isValidADT(ilADT $a_adt)
Definition:
class.ilADTLocalizedTextPresentationBridge.php:21
$DIC
global $DIC
Definition:
goto.php:24
ilADTLocalizedTextPresentationBridge
Class ilADTLocalizedTextPresentationBridge.
Definition:
class.ilADTLocalizedTextPresentationBridge.php:8
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:40
Services
ADT
classes
Types
LocalizedText
class.ilADTLocalizedTextPresentationBridge.php
Generated on Wed Apr 2 2025 21:01:13 for ILIAS by
1.8.13 (using
Doxyfile
)