ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
ilADTLocationFormBridge Class Reference
+ Inheritance diagram for ilADTLocationFormBridge:
+ Collaboration diagram for ilADTLocationFormBridge:

Public Member Functions

 addToForm ()
 Add ADT-specific fields to form. More...
 
 importFromPost ()
 Import values from form request POST data. More...
 
- Public Member Functions inherited from ilADTFormBridge
 __construct (ilADT $a_adt)
 Constructor. More...
 
 getADT ()
 Get ADT. More...
 
 setForm (ilPropertyFormGUI $a_form)
 Set form. More...
 
 getForm ()
 Get form. More...
 
 setElementId ($a_value)
 Set element id (aka form field) More...
 
 getElementId ()
 Get element id. More...
 
 setTitle ($a_value)
 Set title (aka form field caption) More...
 
 getTitle ()
 Get title. More...
 
 setInfo ($a_value)
 Set info (aka form field info text) More...
 
 getInfo ()
 Get info. More...
 
 setParentElement ($a_value)
 Set parent element. More...
 
 getParentElement ()
 Get parent element. More...
 
 setDisabled ($a_value)
 Set disabled. More...
 
 isDisabled ()
 Get disabled. More...
 
 setRequired ($a_value)
 Set required. More...
 
 isRequired ()
 Get required. More...
 
 addToForm ()
 Add ADT-specific fields to form. More...
 
 addJS (ilTemplate $a_tpl)
 Add ADT-specific JS-files to template. More...
 
 shouldBeImportedFromPost (ilADTFormBridge $a_parent_adt=null)
 Check if incoming values should be imported at all. More...
 
 importFromPost ()
 Import values from form request POST data. More...
 
 validate ()
 Validate ADT and parse error codes. More...
 
 setExternalErrors ($a_errors)
 

Protected Member Functions

 isValidADT (ilADT $a_adt)
 Check if given ADT is valid. More...
 
- Protected Member Functions inherited from ilADTFormBridge
 isValidADT (ilADT $a_adt)
 Check if given ADT is valid. More...
 
 setADT (ilADT $a_adt)
 Set ADT. More...
 
 addBasicFieldProperties (ilFormPropertyGUI $a_field, ilADTDefinition $a_def)
 Helper method to handle generic properties like setRequired(), setInfo() More...
 
 findParentElementInForm ()
 Try to find parent element in form (could be option) More...
 
 addToParentElement (ilFormPropertyGUI $a_field)
 Add form field to parent element. More...
 
 isActiveForSubItems ($a_parent_option=null)
 Check if element is currently active for subitem(s) More...
 

Additional Inherited Members

- Protected Attributes inherited from ilADTFormBridge
 $adt
 
 $form
 
 $id
 
 $title
 
 $info
 
 $parent_element
 
 $required
 
 $disabled
 

Detailed Description

Definition at line 5 of file class.ilADTLocationFormBridge.php.

Member Function Documentation

◆ addToForm()

ilADTLocationFormBridge::addToForm ( )

Add ADT-specific fields to form.

Reimplemented from ilADTFormBridge.

Definition at line 12 of file class.ilADTLocationFormBridge.php.

13 {
14 global $DIC;
15
16 $lng = $DIC['lng'];
17
18 $adt = $this->getADT();
19
20 $default = false;
21 if ($adt->isNull()) {
22 // see ilPersonalProfileGUI::addLocationToForm()
23
24 // use installation default
25 include_once("./Services/Maps/classes/class.ilMapUtil.php");
27 $adt->setLatitude($def["latitude"]);
28 $adt->setLongitude($def["longitude"]);
29 $adt->setZoom($def["zoom"]);
30
31 $default = true;
32 }
33
34 // :TODO: title?
35 $title = $this->isRequired()
36 ? $this->getTitle()
37 : $lng->txt("location");
38
39 $loc = new ilLocationInputGUI($title, $this->getElementId());
40 $loc->setLongitude($adt->getLongitude());
41 $loc->setLatitude($adt->getLatitude());
42 $loc->setZoom($adt->getZoom());
43
44 $this->addBasicFieldProperties($loc, $adt->getCopyOfDefinition());
45
46 if (!$this->isRequired()) {
47 $optional = new ilCheckboxInputGUI($this->getTitle(), $this->getElementId() . "_tgl");
48 $optional->addSubItem($loc);
49 $this->addToParentElement($optional);
50
51 if (!$default && !$adt->isNull()) {
52 $optional->setChecked(true);
53 }
54 } else {
55 $this->addToParentElement($loc);
56 }
57 }
$default
Definition: build.php:20
addBasicFieldProperties(ilFormPropertyGUI $a_field, ilADTDefinition $a_def)
Helper method to handle generic properties like setRequired(), setInfo()
getElementId()
Get element id.
addToParentElement(ilFormPropertyGUI $a_field)
Add form field to parent element.
isRequired()
Get required.
This class represents a checkbox property in a property form.
This class represents a location property in a property form.
static getDefaultSettings()
Get default longitude, latitude and zoom.
$def
Definition: croninfo.php:21
global $DIC
Definition: saml.php:7
$lng

References ilADTFormBridge\$adt, $def, $default, $DIC, $lng, ilADTFormBridge\$title, ilADTFormBridge\addBasicFieldProperties(), ilADTFormBridge\addToParentElement(), ilADTFormBridge\getADT(), ilMapUtil\getDefaultSettings(), ilADTFormBridge\getElementId(), ilADTFormBridge\getTitle(), and ilADTFormBridge\isRequired().

+ Here is the call graph for this function:

◆ importFromPost()

ilADTLocationFormBridge::importFromPost ( )

Import values from form request POST data.

Reimplemented from ilADTFormBridge.

Definition at line 59 of file class.ilADTLocationFormBridge.php.

60 {
61 $do_import = true;
62 if (!$this->isRequired()) {
63 $toggle = $this->getForm()->getInput($this->getElementId() . "_tgl");
64 if (!$toggle) {
65 $do_import = false;
66 }
67 }
68
69 if ($do_import) {
70 // ilPropertyFormGUI::checkInput() is pre-requisite
71 $incoming = $this->getForm()->getInput($this->getElementId());
72 $this->getADT()->setLongitude($incoming["longitude"]);
73 $this->getADT()->setLatitude($incoming["latitude"]);
74 $this->getADT()->setZoom($incoming["zoom"]);
75 } else {
76 $this->getADT()->setLongitude(null);
77 $this->getADT()->setLatitude(null);
78 $this->getADT()->setZoom(null);
79 }
80
81 $field = $this->getForm()->getItemByPostvar($this->getElementId());
82 $field->setLongitude($this->getADT()->getLongitude());
83 $field->setLatitude($this->getADT()->getLatitude());
84 $field->setZoom($this->getADT()->getZoom());
85 }

References ilADTFormBridge\getADT(), ilADTFormBridge\getElementId(), ilADTFormBridge\getForm(), and ilADTFormBridge\isRequired().

+ Here is the call graph for this function:

◆ isValidADT()

ilADTLocationFormBridge::isValidADT ( ilADT  $a_adt)
protected

Check if given ADT is valid.

:TODO: This could be avoided with type-specifc constructors :TODO: bridge base class?

Parameters
ilADT$a_adt

Reimplemented from ilADTFormBridge.

Definition at line 7 of file class.ilADTLocationFormBridge.php.

8 {
9 return ($a_adt instanceof ilADTLocation);
10 }

The documentation for this class was generated from the following file: