ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilADTEnumDBBridge.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
6 {
7  protected function isValidADT(ilADT $a_adt): bool
8  {
9  return ($a_adt instanceof ilADTEnum);
10  }
11 
12  public function readRecord(array $a_row): void
13  {
14  $this->getADT()->setSelection($a_row[$this->getElementId()]);
15  }
16 
17  public function prepareInsert(array &$a_fields): void
18  {
19  $a_fields[$this->getElementId()] = [
21  $this->getADT()->getSelection()
22  ];
23  }
24 
29  public function supportsDefaultValueColumn(): bool
30  {
31  return false;
32  }
33 }
getElementId()
Get element id.
ADT base class.
Definition: class.ilADT.php:11
ADT DB bridge base class.
prepareInsert(array &$a_fields)
supportsDefaultValueColumn()
Column is value_index.