Class ilObjRootFolderListGUI. More...
Public Member Functions | |
ilObjRootFolderListGUI () | |
constructor | |
init () | |
initialisation | |
getCommandLink ($a_cmd) | |
Get command link url. |
Class ilObjRootFolderListGUI.
Definition at line 37 of file class.ilObjRootFolderListGUI.php.
ilObjRootFolderListGUI::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.ilObjRootFolderListGUI.php.
{ // separate method for this line $cmd_link = "repository.php?ref_id=".$this->ref_id."&cmd=$a_cmd"; return $cmd_link; }
ilObjRootFolderListGUI::ilObjRootFolderListGUI | ( | ) |
constructor
Definition at line 43 of file class.ilObjRootFolderListGUI.php.
References ilObjectListGUI::ilObjectListGUI().
{ $this->ilObjectListGUI(); }
ilObjRootFolderListGUI::init | ( | ) |
initialisation
Reimplemented from ilObjectListGUI.
Definition at line 51 of file class.ilObjRootFolderListGUI.php.
References ilObjRootFolderAccess::_getCommands().
{ $this->delete_enabled = true; $this->cut_enabled = true; $this->subscribe_enabled = true; $this->link_enabled = false; $this->payment_enabled = false; $this->type = "root"; $this->gui_class_name = "ilobjrootfoldergui"; // general commands array include_once('class.ilObjRootFolderAccess.php'); $this->commands = ilObjRootFolderAccess::_getCommands(); }