Class ilObjFolderListGUI. More...
Public Member Functions | |
ilObjFolderListGUI () | |
constructor | |
init () | |
initialisation | |
getCommandLink ($a_cmd) | |
Get command link url. |
Class ilObjFolderListGUI.
Definition at line 37 of file class.ilObjFolderListGUI.php.
ilObjFolderListGUI::getCommandLink | ( | $ | a_cmd | ) |
Get command link url.
int | $a_ref_id reference id | |
string | $a_cmd command |
Reimplemented from ilObjectListGUI.
Definition at line 73 of file class.ilObjFolderListGUI.php.
{ // separate method for this line $cmd_link = "repository.php?ref_id=".$this->ref_id."&cmd=$a_cmd"; return $cmd_link; }
ilObjFolderListGUI::ilObjFolderListGUI | ( | ) |
constructor
Definition at line 43 of file class.ilObjFolderListGUI.php.
References ilObjectListGUI::ilObjectListGUI().
{ $this->ilObjectListGUI(); }
ilObjFolderListGUI::init | ( | ) |
initialisation
Reimplemented from ilObjectListGUI.
Definition at line 51 of file class.ilObjFolderListGUI.php.
References ilObjFolderAccess::_getCommands().
{ $this->delete_enabled = true; $this->cut_enabled = true; $this->subscribe_enabled = true; $this->link_enabled = false; $this->payment_enabled = false; $this->type = "fold"; $this->gui_class_name = "ilobjfoldergui"; // general commands array include_once('class.ilObjFolderAccess.php'); $this->commands = ilObjFolderAccess::_getCommands(); }