Class ilObjSurveyQuestionPoolListGUI. More...
Inheritance diagram for ilObjSurveyQuestionPoolListGUI:
Collaboration diagram for ilObjSurveyQuestionPoolListGUI:Public Member Functions | |
| ilObjSurveyQuestionPoolListGUI () | |
| 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. | |
Class ilObjSurveyQuestionPoolListGUI.
Definition at line 38 of file class.ilObjSurveyQuestionPoolListGUI.php.
| ilObjSurveyQuestionPoolListGUI::getCommandFrame | ( | $ | a_cmd | ) |
Get command target frame.
| string | $a_cmd command |
Reimplemented from ilObjectListGUI.
Definition at line 89 of file class.ilObjSurveyQuestionPoolListGUI.php.
References ilFrameTargetInfo::_getFrame().
{
switch($a_cmd)
{
case "":
case "questions":
$frame = ilFrameTargetInfo::_getFrame("MainContent");
break;
default:
}
return $frame;
}
Here is the call graph for this function:| ilObjSurveyQuestionPoolListGUI::getCommandLink | ( | $ | a_cmd | ) |
Get command link url.
| int | $a_ref_id reference id | |
| string | $a_cmd command |
Reimplemented from ilObjectListGUI.
Definition at line 131 of file class.ilObjSurveyQuestionPoolListGUI.php.
{
// separate method for this line
$cmd_link = "survey/questionpool.php?ref_id=".$this->ref_id."&cmd=$a_cmd";
return $cmd_link;
}
| ilObjSurveyQuestionPoolListGUI::getProperties | ( | ) |
Get item properties.
Definition at line 114 of file class.ilObjSurveyQuestionPoolListGUI.php.
| ilObjSurveyQuestionPoolListGUI::ilObjSurveyQuestionPoolListGUI | ( | ) |
constructor
Definition at line 44 of file class.ilObjSurveyQuestionPoolListGUI.php.
References ilObjectListGUI::ilObjectListGUI().
{
$this->ilObjectListGUI();
}
Here is the call graph for this function:| ilObjSurveyQuestionPoolListGUI::init | ( | ) |
initialisation
Reimplemented from ilObjectListGUI.
Definition at line 52 of file class.ilObjSurveyQuestionPoolListGUI.php.
{
$this->delete_enabled = true;
$this->cut_enabled = true;
$this->subscribe_enabled = true;
$this->link_enabled = false;
$this->payment_enabled = false;
$this->type = "spl";
$this->gui_class_name = "ilobjsurveyquestionpoolgui";
// general commands array
include_once('class.ilObjSurveyQuestionPoolAccess.php');
$this->commands = ilObjSurveyQUestionPoolAccess::_getCommands();
}
| ilObjSurveyQuestionPoolListGUI::initItem | ( | $ | a_ref_id, | |
| $ | a_obj_id, | |||
| $ | a_title = "", |
|||
| $ | a_description = "" | |||
| ) |
inititialize new item
| 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 76 of file class.ilObjSurveyQuestionPoolListGUI.php.
{
parent::initItem($a_ref_id, $a_obj_id, $a_title, $a_description);
}
1.7.1