ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilOrgUnitExtensionGUI.php
Go to the documentation of this file.
1 <?php
2 
9 {
10 
14  protected $ilLocator;
15 
16 
24  public function __construct($a_ref_id = 0, $a_id_type = self::REPOSITORY_NODE_ID, $a_parent_node_id = 0)
25  {
26  global $DIC;
27  $ilLocator = $DIC['ilLocator'];
28  parent::__construct($a_ref_id, $a_id_type, $a_parent_node_id);
29  $this->ilLocator = $ilLocator;
30  $this->showTree();
31  }
32 
33 
40  protected function getPlugin()
41  {
42  if (!$this->plugin) {
43  $this->plugin = ilPlugin::getPluginObject(IL_COMP_MODULE, "OrgUnit", "orguext", ilPlugin::lookupNameForId(IL_COMP_MODULE, "OrgUnit", "orguext", $this->getType()));
44  if (!$this->plugin instanceof ilOrgUnitExtensionPlugin) {
45  throw new ilPluginException("ilObjectPluginGUI: Could not instantiate plugin object for type " . $this->getType() . ".");
46  }
47  }
48 
49  return $this->plugin;
50  }
51 
52 
56  protected function supportsExport()
57  {
58  return false;
59  }
60 
61 
65  protected function lookupParentTitleInCreationMode()
66  {
67  $parent = parent::lookupParentTitleInCreationMode();
68  if ($parent == '__OrgUnitAdministration') {
69  return $this->lng->txt("objs_orgu");
70  }
71 
72  return $parent;
73  }
74 
75 
79  protected function supportsCloning()
80  {
81  return false;
82  }
83 
84 
88  protected function setLocator()
89  {
90  global $DIC;
91  $tpl = $DIC['tpl'];
92  if ($this->getCreationMode()) {
93  $endnode_id = $this->parent_id;
94  } else {
95  $endnode_id = $this->ref_id;
96  }
97 
98  $path = $this->tree->getPathFull($endnode_id, ilObjOrgUnit::getRootOrgRefId());
99  // add item for each node on path
100  foreach ((array) $path as $key => $row) {
101  if ($row["title"] == "__OrgUnitAdministration") {
102  $row["title"] = $this->lng->txt("objs_orgu");
103  }
104  $this->ctrl->setParameterByClass("ilobjorgunitgui", "ref_id", $row["child"]);
105  $this->ilLocator->addItem($row["title"], $this->ctrl->getLinkTargetByClass(array(
106  "iladministrationgui",
107  "ilobjorgunitgui",
108  ), "view"), ilFrameTargetInfo::_getFrame("MainContent"), $row["child"]);
109  $this->ctrl->setParameterByClass("ilobjplugindispatchgui", "ref_id", $_GET["ref_id"]);
110  }
111  $tpl->setLocator();
112  }
113 
114 
118  public function showTree()
119  {
120  $this->ctrl->setParameterByClass("ilObjPluginDispatchGUI", "ref_id", $_GET["ref_id"]);
121  $this->ctrl->setParameterByClass("ilObjOrgUnitGUI", "ref_id", $_GET["ref_id"]);
122  $tree = new ilOrgUnitExplorerGUI("orgu_explorer", array("ilAdministrationGUI", "ilObjOrgUnitGUI"), "showTree", new ilTree(1));
123  $tree->setTypeWhiteList($this->getTreeWhiteList());
124  if (!$tree->handleCommand()) {
125  $this->tpl->setLeftNavContent($tree->getHTML());
126  }
127  }
128 
129 
133  protected function getTreeWhiteList()
134  {
135  $whiteList = array("orgu");
136  $pls = ilOrgUnitExtension::getActivePluginIdsForTree();
137 
138  return array_merge($whiteList, $pls);
139  }
140 }
static getPluginObject(string $a_ctype, string $a_cname, string $a_slot_id, string $a_pname)
showTree()
Views in the Org Unit have the Navigation Tree enabled by default.
$_GET["client_id"]
static lookupNameForId(string $a_ctype, string $a_cname, string $a_slot_id, string $a_plugin_id)
getType()
Functions that must be overwritten.
const IL_COMP_MODULE
Class ilOrgUnitExtensionGUI.
static getRootOrgRefId()
static _getFrame($a_class, $a_type='')
Get content frame name.
__construct(Container $dic, ilPlugin $plugin)
__construct($a_ref_id=0, $a_id_type=self::REPOSITORY_NODE_ID, $a_parent_node_id=0)
ilOrgUnitExtensionGUI constructor.
setLocator()
Override the locator (breadcrumbs).
$DIC
Definition: xapitoken.php:46
Class ilOrgUnitExtensionPlugin.