ILIAS  release_7 Revision v7.30-3-g800a261c036
class.ilADTDateDBBridge.php
Go to the documentation of this file.
1<?php
2
3require_once "Services/ADT/classes/Bridges/class.ilADTDBBridge.php";
4
6{
7 protected function isValidADT(ilADT $a_adt)
8 {
9 return ($a_adt instanceof ilADTDate);
10 }
11
12 // CRUD
13
14 public function readRecord(array $a_row)
15 {
16 $date = null;
17 if ($a_row[$this->getElementId()]) {
18 $date = new ilDate($a_row[$this->getElementId()], IL_CAL_DATE);
19 }
20 $this->getADT()->setDate($date);
21 }
22
23 public function prepareInsert(array &$a_fields)
24 {
25 $date = $this->getADT()->getDate();
26 if ($date instanceof ilDate) {
27 $date = $date->get(IL_CAL_DATE);
28 }
29 $a_fields[$this->getElementId()] = array("date", $date);
30 }
31}
An exception for terminatinating execution or to throw for unit testing.
const IL_CAL_DATE
ADT DB bridge base class.
getElementId()
Get element id.
isValidADT(ilADT $a_adt)
Check if given ADT is valid.
prepareInsert(array &$a_fields)
Prepare ADT values for insert.
readRecord(array $a_row)
Import DB values to ADT.
ADT base class.
Definition: class.ilADT.php:12
Class for single dates.