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.ilADTIntegerDBBridge.php
Go to the documentation of this file.
1
<?php
2
3
require_once
"Services/ADT/classes/Bridges/class.ilADTDBBridge.php"
;
4
5
class
ilADTIntegerDBBridge
extends
ilADTDBBridge
6
{
7
protected
function
isValidADT
(
ilADT
$a_adt)
8
{
9
return
($a_adt instanceof
ilADTInteger
);
10
}
11
12
13
// CRUD
14
15
public
function
readRecord
(array $a_row)
16
{
17
$this->
getADT
()->setNumber($a_row[$this->
getElementId
()]);
18
}
19
20
public
function
prepareInsert
(array &$a_fields)
21
{
22
$a_fields[$this->
getElementId
()] = array(
"integer"
, $this->
getADT
()->getNumber());
23
}
24
}
25
26
?>
ilADTInteger
Definition:
class.ilADTInteger.php:3
ilADTDBBridge\getElementId
getElementId()
Get element id.
Definition:
class.ilADTDBBridge.php:104
ilADT
ADT base class.
Definition:
class.ilADT.php:11
ilADTIntegerDBBridge\isValidADT
isValidADT(ilADT $a_adt)
Definition:
class.ilADTIntegerDBBridge.php:7
ilADTIntegerDBBridge
Definition:
class.ilADTIntegerDBBridge.php:5
ilADTDBBridge
ADT DB bridge base class.
Definition:
class.ilADTDBBridge.php:11
ilADTDBBridge\getADT
getADT()
Get ADT.
Definition:
class.ilADTDBBridge.php:64
ilADTIntegerDBBridge\prepareInsert
prepareInsert(array &$a_fields)
Definition:
class.ilADTIntegerDBBridge.php:20
ilADTIntegerDBBridge\readRecord
readRecord(array $a_row)
Definition:
class.ilADTIntegerDBBridge.php:15
Services
ADT
classes
Types
Integer
class.ilADTIntegerDBBridge.php
Generated on Mon Mar 31 2025 19:00:42 for ILIAS by
1.8.13 (using
Doxyfile
)