ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilADTIntegerDBBridge.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  protected function isValidADT(ilADT $a_adt): bool
24  {
25  return ($a_adt instanceof ilADTInteger);
26  }
27 
28  // CRUD
29 
30  public function readRecord(array $a_row): void
31  {
32  $this->getADT()->setNumber($a_row[$this->getElementId()]);
33  }
34 
35  public function prepareInsert(array &$a_fields): void
36  {
37  $a_fields[$this->getElementId()] = array("integer", $this->getADT()->getNumber());
38  }
39 }
getElementId()
Get element id.
ADT base class.
Definition: class.ilADT.php:25
ADT DB bridge base class.