ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilADTBooleanDBBridge.php
Go to the documentation of this file.
1 <?php
2 
3 require_once "Services/ADT/classes/Bridges/class.ilADTDBBridge.php";
4 
6 {
7  protected function isValidADT(ilADT $a_adt)
8  {
9  return ($a_adt instanceof ilADTBoolean);
10  }
11 
12 
13  // CRUD
14 
15  public function readRecord(array $a_row)
16  {
17  $this->getADT()->setStatus($a_row[$this->getElementId()]);
18  }
19 
20  public function prepareInsert(array &$a_fields)
21  {
22  $a_fields[$this->getElementId()] = array("integer", $this->getADT()->getStatus());
23  }
24 }
25 
26 ?>