ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilADTBooleanFormBridge.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 ilADTBoolean);
26  }
27 
28  public function addToForm(): void
29  {
30  $bool = new ilCheckboxInputGUI($this->getTitle(), $this->getElementId());
31  $bool->setValue('1');
32  $this->addBasicFieldProperties($bool, $this->getADT()->getCopyOfDefinition());
33  $bool->setRequired(false);
34  $bool->setChecked($this->getADT()->getStatus());
35  $this->addToParentElement($bool);
36  }
37 
38  public function importFromPost(): void
39  {
40  // ilPropertyFormGUI::checkInput() is pre-requisite
41  $incoming = $this->getForm()->getInput($this->getElementId());
42 
43  // unchecked == no incoming
44  $incoming = (bool) $incoming;
45 
46  $this->getADT()->setStatus($incoming);
47 
48  $field = $this->getForm()->getItemByPostVar($this->getElementId());
49  $field->setChecked($this->getADT()->getStatus());
50  }
51 
52  public function validate(): bool
53  {
54  return true;
55  }
56 
57  protected function isActiveForSubItems($a_parent_option = null): bool
58  {
59  return ($this->getADT()->getStatus() === true);
60  }
61 }
addToParentElement(ilFormPropertyGUI $a_field)
ADT form bridge base class.
ADT base class.
Definition: class.ilADT.php:25
addBasicFieldProperties(ilFormPropertyGUI $a_field, ilADTDefinition $a_def)
Helper method to handle generic properties like setRequired(), setInfo()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
isActiveForSubItems($a_parent_option=null)