ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
ilADTBasedObjectGUI Class Reference

ADT based-object GUI base class. More...

+ Inheritance diagram for ilADTBasedObjectGUI:
+ Collaboration diagram for ilADTBasedObjectGUI:

Public Member Functions

 __construct (ilObjectGUI $a_parent_gui)
 Constructor. More...
 
 editAction (ilADTGroupFormBridge $a_form=null)
 Edit object ADT properties. More...
 
 updateAction ()
 Parse incoming values and update if valid
More...
 

Protected Member Functions

 initObject ()
 Init ADT-based object. More...
 
 prepareFormElements (ilADTGroupFormBridge $a_adt_form)
 Prepare/customize form elements. More...
 
 initForm ()
 Init ADT-based form. More...
 

Protected Attributes

 $object
 

Detailed Description

ADT based-object GUI base class.

Author
Jörg Lützenkirchen luetz.nosp@m.enki.nosp@m.rchen.nosp@m.@lei.nosp@m.fos.c.nosp@m.om
Version
$Id$

Definition at line 11 of file class.ilADTBasedObjectGUI.php.

Constructor & Destructor Documentation

◆ __construct()

ilADTBasedObjectGUI::__construct ( ilObjectGUI  $a_parent_gui)

Constructor.

Parent GUI is just needed for testing (ilCtrl)

Parameters
ilObjectGUI$a_parent_gui
Returns
self

Definition at line 23 of file class.ilADTBasedObjectGUI.php.

24 {
25 $this->gui = $a_parent_gui;
26 $this->object = $this->initObject();
27 }
initObject()
Init ADT-based object.

References initObject().

+ Here is the call graph for this function:

Member Function Documentation

◆ editAction()

ilADTBasedObjectGUI::editAction ( ilADTGroupFormBridge  $a_form = null)

Edit object ADT properties.

Parameters
ilADTGroupFormBridge$a_form

Definition at line 44 of file class.ilADTBasedObjectGUI.php.

45 {
46 global $tpl;
47
48 if(!$a_form)
49 {
50 $a_form = $this->initForm();
51 }
52
53 $tpl->setContent($a_form->getForm()->getHTML());
54 }
global $tpl
Definition: ilias.php:8
initForm()
Init ADT-based form.

References $tpl, and initForm().

Referenced by updateAction().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ initForm()

ilADTBasedObjectGUI::initForm ( )
protected

Init ADT-based form.

Returns
ilADTGroupFormBridge $a_form

Definition at line 68 of file class.ilADTBasedObjectGUI.php.

69 {
70 global $tpl, $lng, $ilCtrl;
71
72 include_once "Services/Form/classes/class.ilPropertyFormGUI.php";
73 $form = new ilPropertyFormGUI();
74 $form->setFormAction($ilCtrl->getFormAction($this->gui, "updateAction"));
75
76 $adt_form = ilADTFactory::getInstance()->getFormBridgeForInstance($this->object->getProperties());
77
78 // has to be done BEFORE prepareFormElements() ...
79 $adt_form->setForm($form);
80
81 $this->prepareFormElements($adt_form);
82
83 $adt_form->addToForm();
84 $adt_form->addJS($tpl);
85
86 // :TODO:
87 $form->addCommandButton("updateAction", $lng->txt("save"));
88
89 return $adt_form;
90 }
prepareFormElements(ilADTGroupFormBridge $a_adt_form)
Prepare/customize form elements.
static getInstance()
Get singleton.
This class represents a property form user interface.
global $ilCtrl
Definition: ilias.php:18
global $lng
Definition: privfeed.php:40

References $ilCtrl, $lng, $tpl, ilADTFactory\getInstance(), and prepareFormElements().

Referenced by editAction(), and updateAction().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ initObject()

ilADTBasedObjectGUI::initObject ( )
abstractprotected

Init ADT-based object.

Reimplemented in ilADTTestGUI.

Referenced by __construct().

+ Here is the caller graph for this function:

◆ prepareFormElements()

ilADTBasedObjectGUI::prepareFormElements ( ilADTGroupFormBridge  $a_adt_form)
abstractprotected

Prepare/customize form elements.

Parameters
ilADTGroupFormBridge$a_adt_form

Reimplemented in ilADTTestGUI.

Referenced by initForm().

+ Here is the caller graph for this function:

◆ updateAction()

ilADTBasedObjectGUI::updateAction ( )

Parse incoming values and update if valid

Definition at line 95 of file class.ilADTBasedObjectGUI.php.

96 {
97 global $lng, $ilCtrl;
98
99 $adt_form = $this->initForm();
100 $valid = $adt_form->getForm()->checkInput(); // :TODO: return value is obsolete
101
102 $old_chksum = $this->object->getProperties()->getCheckSum();
103
104 $adt_form->importFromPost();
105 $valid = $adt_form->validate();
106
107 $changed = ($old_chksum != $this->object->getProperties()->getCheckSum());
108
109 // validation errors have top priority
110 if(!$valid)
111 {
112 ilUtil::sendFailure($lng->txt("form_input_not_valid"));
113 return $this->editAction($adt_form);
114 }
115
116 // :TODO: experimental, update only if necessary
117 if($changed)
118 {
119 if($this->object->update())
120 {
121 ilUtil::sendSuccess($lng->txt("settings_saved"), true);
122 }
123 else
124 {
125 // error occured in db-layer (primary/unique)
126 foreach($this->object->getDBErrors() as $element_id => $codes)
127 {
128 $element = $adt_form->getElement($element_id);
129 if($element)
130 {
131 $element->setExternalErrors($this->object->translateDBErrorCodes($codes));
132 }
133 }
134
135 ilUtil::sendFailure($lng->txt("form_input_not_valid"));
136 return $this->editAction($adt_form);
137 }
138 }
139
140 $ilCtrl->redirect($this->gui, "edit");
141 }
editAction(ilADTGroupFormBridge $a_form=null)
Edit object ADT properties.
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
$valid

References $changed, $ilCtrl, $lng, $valid, editAction(), initForm(), ilUtil\sendFailure(), and ilUtil\sendSuccess().

+ Here is the call graph for this function:

Field Documentation

◆ $object

ilADTBasedObjectGUI::$object
protected

Definition at line 13 of file class.ilADTBasedObjectGUI.php.


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