ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilFormPropertyDispatchGUI Class Reference

Form property dispatcher. More...

+ Collaboration diagram for ilFormPropertyDispatchGUI:

Public Member Functions

 _construct ()
 Constructor.
 setItem ($a_val)
 Set item.
 getItem ()
 Get item.
executeCommand ()
 Execute command.

Detailed Description

Form property dispatcher.

Forwards control flow to property form input GUI classes.

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
$Id$ ilFormPropertyDispatchGUI:

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

Member Function Documentation

ilFormPropertyDispatchGUI::_construct ( )

Constructor.

Definition at line 18 of file class.ilFormPropertyDispatchGUI.php.

{
}
& ilFormPropertyDispatchGUI::executeCommand ( )

Execute command.

Definition at line 45 of file class.ilFormPropertyDispatchGUI.php.

References $cmd, $ilCtrl, and getItem().

{
global $ilCtrl;
$next_class = $ilCtrl->getNextClass($this);
$cmd = $ilCtrl->getCmd();
if (strtolower(get_class($this->getItem())) != $next_class)
{
die("ilFormPropertyDispatch: Forward Error.");
}
return $ilCtrl->forwardCommand($this->getItem());
}

+ Here is the call graph for this function:

ilFormPropertyDispatchGUI::getItem ( )

Get item.

Returns
object item

Definition at line 37 of file class.ilFormPropertyDispatchGUI.php.

Referenced by executeCommand().

{
return $this->item;
}

+ Here is the caller graph for this function:

ilFormPropertyDispatchGUI::setItem (   $a_val)

Set item.

Parameters
objectitem

Definition at line 27 of file class.ilFormPropertyDispatchGUI.php.

{
$this->item = $a_val;
}

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