ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilADTMultiTextDBBridge.php
Go to the documentation of this file.
1<?php
2
3require_once "Services/ADT/classes/Bridges/class.ilADTMultiDBBridge.php";
4
6{
7 protected function isValidADT(ilADT $a_adt)
8 {
9 return ($a_adt instanceof ilADTMultiText);
10 }
11
12 protected function readMultiRecord($a_set)
13 {
14 global $ilDB;
15
16 $elements = array();
17
18 while($row = $ilDB->fetchAssoc($a_set))
19 {
20 $elements[] = $row[$this->getElementId()];
21 }
22
23 $this->getADT()->setTextElements($elements);
24 }
25
26 protected function prepareMultiInsert()
27 {
28 $res = array();
29
30 foreach((array)$this->getADT()->getTextElements() as $element)
31 {
32 $res[] = array($this->getElementId() => array("text", $element));
33 }
34
35 return $res;
36 }
37}
38
39?>
getElementId()
Get element id.
readMultiRecord($a_set)
Import record-rows from sub-table.
isValidADT(ilADT $a_adt)
Check if given ADT is valid.
prepareMultiInsert()
Build insert-fields for each "value".
ADT base class.
Definition: class.ilADT.php:12
global $ilDB