ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
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.

References initObject().

24  {
25  $this->gui = $a_parent_gui;
26  $this->object = $this->initObject();
27  }
initObject()
Init ADT-based object.
+ 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.

References $tpl, initForm(), and prepareFormElements().

Referenced by updateAction().

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.
+ 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.

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

Referenced by editAction(), and updateAction().

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  }
This class represents a property form user interface.
getProperties()
Get properties.
Definition: PHPExcel.php:425
static getInstance()
Get singleton.
global $tpl
Definition: ilias.php:8
global $ilCtrl
Definition: ilias.php:18
prepareFormElements(ilADTGroupFormBridge $a_adt_form)
Prepare/customize form elements.
Create new PHPExcel object
obj_idprivate
global $lng
Definition: privfeed.php:17
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ initObject()

ilADTBasedObjectGUI::initObject ( )
abstractprotected

Init ADT-based object.

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

Referenced by editAction(), and 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.

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

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  }
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
$valid
global $ilCtrl
Definition: ilias.php:18
editAction(ilADTGroupFormBridge $a_form=null)
Edit object ADT properties.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
initForm()
Init ADT-based form.
Create new PHPExcel object
obj_idprivate
global $lng
Definition: privfeed.php:17
+ 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: