ILIAS
Release_5_0_x_branch Revision 61816
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Groups
Pages
class.ilADTFloatDBBridge.php
Go to the documentation of this file.
1
<?php
2
3
require_once
"Services/ADT/classes/Bridges/class.ilADTDBBridge.php"
;
4
5
class
ilADTFloatDBBridge
extends
ilADTDBBridge
6
{
7
protected
function
isValidADT
(
ilADT
$a_adt)
8
{
9
return
($a_adt instanceof
ilADTFloat
);
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(
"float"
, $this->
getADT
()->getNumber());
23
}
24
}
25
26
?>
Services
ADT
classes
Types
Float
class.ilADTFloatDBBridge.php
Generated on Wed Apr 27 2016 21:01:27 for ILIAS by
1.8.1.2 (using
Doxyfile
)