ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilADTMultiDBBridge.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 abstract class ilADTMultiDBBridge extends ilADTDBBridge
22 {
26  protected function getSubTableName(): string
27  {
28  // getElementId? => adv_md_values_enum_123
29  return $this->getTable() . "_" . $this->getElementId();
30  }
31 
32  public function readRecord(array $a_row): void
33  {
34  $sql = "SELECT " . $this->getElementId() .
35  " FROM " . $this->getSubTableName() .
36  " WHERE " . $this->buildPrimaryWhere();
37  $set = $this->db->query($sql);
38  $this->readMultiRecord($set);
39  }
40 
45  abstract protected function readMultiRecord(ilDBStatement $a_set): void;
46 
47  public function prepareInsert(array &$a_fields): void
48  {
49  // see afterUpdate()
50  }
51 
52  public function afterInsert(): void
53  {
54  $this->afterUpdate();
55  }
56 
57  public function afterUpdate(): void
58  {
59  // :TODO: build diff, save difference
60  // is this in use? Cannot
61  /*
62  $ilDB->manipulate("DELETE FROM " . $this->getSubTableName() .
63  " WHERE " . $this->buildPrimaryWhere());
64 
65  foreach ($this->prepareMultiInsert() as $sub_items) {
66  $fields = array_merge($this->getPrimary(), $sub_items);
67 
68  $ilDB->insert($this->getSubTableName(), $fields);
69  }
70  */
71  }
72 
76  abstract protected function prepareMultiInsert(): array;
77 
78  public function afterDelete(): void
79  {
80  // is this in use? Cannot
81  /*
82  $ilDB->manipulate("DELETE FROM " . $this->getSubTableName() .
83  " WHERE " . $this->buildPrimaryWhere());
84  */
85  }
86 }
prepareInsert(array &$a_fields)
buildPrimaryWhere()
Convert primary keys array to sql string.
getSubTableName()
Build sub-table name.
getElementId()
Get element id.
ADT DB bridge base class.
readMultiRecord(ilDBStatement $a_set)
Import record-rows from sub-table.
prepareMultiInsert()
Build insert-fields for each "value".