Public Member Functions

ilObjExerciseListGUI Class Reference
[Modules/Exercise]

ListGUI class for exercise objects. More...

Inheritance diagram for ilObjExerciseListGUI:
Collaboration diagram for ilObjExerciseListGUI:

Public Member Functions

 ilObjExerciseListGUI ()
 constructor
 init ()
 initialisation
 initItem ($a_ref_id, $a_obj_id, $a_title="", $a_description="")
 inititialize new item
 getCommandFrame ($a_cmd)
 Get command target frame.
 getProperties ()
 Get item properties.
 getCommandLink ($a_cmd)
 Get command link url.

Detailed Description

ListGUI class for exercise objects.

Author:
Alex Killing <alex.killing@gmx.de>
Version:
Id:
class.ilObjExerciseListGUI.php 11815 2006-08-08 16:28:16Z akill

Definition at line 34 of file class.ilObjExerciseListGUI.php.


Member Function Documentation

ilObjExerciseListGUI::getCommandFrame ( a_cmd  ) 

Get command target frame.

Parameters:
string $a_cmd command
Returns:
string command target frame

Reimplemented from ilObjectListGUI.

Definition at line 85 of file class.ilObjExerciseListGUI.php.

References ilFrameTargetInfo::_getFrame().

        {
                switch($a_cmd)
                {
                        default:
                                $frame = ilFrameTargetInfo::_getFrame("MainContent");
                                break;
                }

                return $frame;
        }

Here is the call graph for this function:

ilObjExerciseListGUI::getCommandLink ( a_cmd  ) 

Get command link url.

Parameters:
int $a_ref_id reference id
string $a_cmd command

Reimplemented from ilObjectListGUI.

Definition at line 128 of file class.ilObjExerciseListGUI.php.

        {
                // separate method for this line
                $cmd_link = "exercise.php?ref_id=".$this->ref_id."&cmd=$a_cmd";

                return $cmd_link;
        }

ilObjExerciseListGUI::getProperties (  ) 

Get item properties.

Returns:
array array of property arrays: "alert" (boolean) => display as an alert property (usually in red) "property" (string) => property name "value" (string) => property value

Definition at line 107 of file class.ilObjExerciseListGUI.php.

References $lng, and ilObjExerciseAccess::_lookupRemainingWorkingTimeString().

        {
                global $lng, $ilUser;

                $props = array();
                $props[] = array(
                        "property" => $this->lng->txt("exc_time_to_send"),
                        "value" => ilObjExerciseAccess::_lookupRemainingWorkingTimeString($this->obj_id)
                );

                return $props;
        }

Here is the call graph for this function:

ilObjExerciseListGUI::ilObjExerciseListGUI (  ) 

constructor

Definition at line 39 of file class.ilObjExerciseListGUI.php.

References ilObjectListGUI::ilObjectListGUI().

        {
                $this->ilObjectListGUI();
        }

Here is the call graph for this function:

ilObjExerciseListGUI::init (  ) 

initialisation

Reimplemented from ilObjectListGUI.

Definition at line 47 of file class.ilObjExerciseListGUI.php.

References ilObjExerciseAccess::_getCommands().

        {
                $this->delete_enabled = true;
                $this->cut_enabled = true;
                $this->subscribe_enabled = true;
                $this->link_enabled = true;
                $this->payment_enabled = false;
                $this->info_screen_enabled = true;
                $this->type = "exc";
                $this->gui_class_name = "ilobjexercisegui";
                
                // general commands array
                include_once('class.ilObjExerciseAccess.php');
                $this->commands = ilObjExerciseAccess::_getCommands();
        }

Here is the call graph for this function:

ilObjExerciseListGUI::initItem ( a_ref_id,
a_obj_id,
a_title = "",
a_description = "" 
)

inititialize new item

Parameters:
int $a_ref_id reference id
int $a_obj_id object id
string $a_title title
string $a_description description

Reimplemented from ilObjectListGUI.

Definition at line 72 of file class.ilObjExerciseListGUI.php.

        {
                parent::initItem($a_ref_id, $a_obj_id, $a_title, $a_description);
        }


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