ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilObjOrgUnitListGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 require_once("./Services/Object/classes/class.ilObjectListGUI.php");
13 
14  function __construct(){
15  $this->ilObjectListGUI();
16  //$this->enableComments(false, false);
17  }
18 
22  function init()
23  {
24  $this->static_link_enabled = true;
25  $this->delete_enabled = true;
26  $this->cut_enabled = true;
27  $this->info_screen_enabled = true;
28  $this->copy_enabled = false;
29  $this->subscribe_enabled = false;
30  $this->link_enabled = false;
31  $this->payment_enabled = false;
32 
33  $this->type = "orgu";
34  $this->gui_class_name = "ilobjorgunitgui";
35 
36  // general commands array
37  include_once('./Modules/OrgUnit/classes/class.ilObjOrgUnitAccess.php');
38  $this->commands = ilObjOrgUnitAccess::_getCommands();
39  }
40 
41 
42 
46  public function insertTimingsCommand(){
47  return;
48  }
49 
53  public function insertCommonSocialCommands(){
54  return;
55  }
56 
61  {
62 
63  if ($this->std_cmd_only)
64  {
65  return;
66  }
67  $cmd_link = $this->ctrl->getLinkTargetByClass("ilinfoscreengui", "showSummary");
68  $cmd_frame = $this->getCommandFrame("infoScreen");
69 
70  $this->insertCommand($cmd_link, $this->lng->txt("info_short"), $cmd_frame,
71  ilUtil::getImagePath("cmd_info_s.png"));
72  }
73 
74  function getCommandLink($a_cmd)
75  {
76  $this->ctrl->setParameterByClass("ilobjorgunitgui", "ref_id", $this->ref_id);
77  return $this->ctrl->getLinkTargetByClass("ilobjorgunitgui", $a_cmd);
78  }
79 
80 }
81 ?>
ilObjectListGUI()
constructor
insertTimingsCommand()
no timing commands needed in orgunits.
insertCommand($a_href, $a_text, $a_frame="", $a_img="", $a_cmd="", $a_onclick="")
insert command button
insertCommonSocialCommands()
no social commands needed in orgunits.
getCommandFrame($a_cmd)
Get command target frame.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
Class ilObjectListGUI.
insertInfoScreenCommand()
insert info screen command
Class ilObjOrgUnitListGUI.