ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
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
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
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
k
l
m
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.ilADTPresentationBridge.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
11
abstract
class
ilADTPresentationBridge
12
{
13
protected
$adt
;
// [ilADT]
14
21
public
function
__construct
(
ilADT
$a_adt)
22
{
23
$this->
setADT
($a_adt);
24
}
25
26
27
//
28
// properties
29
//
30
39
abstract
protected
function
isValidADT
(
ilADT
$a_adt);
40
47
protected
function
setADT
(
ilADT
$a_adt)
48
{
49
if
(!$this->
isValidADT
($a_adt))
50
{
51
throw
new
Exception
(
'ADTPresentationBridge Type mismatch.'
);
52
}
53
54
$this->adt = $a_adt;
55
}
56
62
public
function
getADT
()
63
{
64
return
$this->adt
;
65
}
66
72
public
function
getList
()
73
{
74
return
$this->
getHTML
();
75
}
76
82
abstract
public
function
getHTML
();
83
89
abstract
public
function
getSortable
();
90
}
91
92
?>
ilADTPresentationBridge\__construct
__construct(ilADT $a_adt)
Constructor.
Definition:
class.ilADTPresentationBridge.php:21
ilADTPresentationBridge\getList
getList()
Get list presentation.
Definition:
class.ilADTPresentationBridge.php:72
ilADTPresentationBridge\getADT
getADT()
Get ADT.
Definition:
class.ilADTPresentationBridge.php:62
ilADT
ADT base class.
Definition:
class.ilADT.php:11
ilADTPresentationBridge\getSortable
getSortable()
Get sortable value presentation.
ilADTPresentationBridge\isValidADT
isValidADT(ilADT $a_adt)
Check if given ADT is valid.
ilADTPresentationBridge\getHTML
getHTML()
Get HTML presentation.
Exception
ilADTPresentationBridge\$adt
$adt
Definition:
class.ilADTPresentationBridge.php:13
ilADTPresentationBridge
ADT presentation bridge base class.
Definition:
class.ilADTPresentationBridge.php:11
ilADTPresentationBridge\setADT
setADT(ilADT $a_adt)
Set ADT.
Definition:
class.ilADTPresentationBridge.php:47
Services
ADT
classes
Bridges
class.ilADTPresentationBridge.php
Generated on Mon Apr 21 2025 19:00:38 for ILIAS by
1.8.13 (using
Doxyfile
)