ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilADTDateFormBridge.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
9 {
10  protected bool $invalid_input = false;
11 
12  protected function isValidADT(ilADT $a_adt): bool
13  {
14  return ($a_adt instanceof ilADTDate);
15  }
16 
17  protected function addToElementId($a_add): string
18  {
19  return $this->getElementId() . "[" . $a_add . "]";
20  }
21 
22  public function addToForm(): void
23  {
24  $adt_date = $this->getADT()->getDate();
25 
26  $date = new ilDateTimeInputGUI($this->getTitle(), $this->getElementId());
27  $date->setShowTime(false);
28 
29  $this->addBasicFieldProperties($date, $this->getADT()->getCopyOfDefinition());
30 
31  $date->setDate($adt_date);
32 
33  $this->addToParentElement($date);
34  }
35 
36  public function importFromPost(): void
37  {
38  $field = $this->getForm()->getItemByPostVar($this->getElementId());
39 
40  // because of ilDate the ADT can only have valid dates
41  if (!$field->hasInvalidInput()) {
42  // ilPropertyFormGUI::checkInput() is pre-requisite
43  $this->getADT()->setDate($field->getDate());
44 
45  $field->setDate($this->getADT()->getDate());
46  } else {
47  $this->invalid_input = true;
48  }
49  }
50 
51  public function validate(): bool
52  {
53  // :TODO: error handling is done by ilDateTimeInputGUI
54  return !$this->invalid_input;
55  }
56 }
addToParentElement(ilFormPropertyGUI $a_field)
ADT form bridge base class.
ADT base class.
Definition: class.ilADT.php:11
addBasicFieldProperties(ilFormPropertyGUI $a_field, ilADTDefinition $a_def)
Helper method to handle generic properties like setRequired(), setInfo()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilADTDateFormBridge.