ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilOrgUnitExplorerGUI.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/UIComponent/Explorer2/classes/class.ilTreeExplorerGUI.php");
12 {
13 
14  protected $stay_with_command = array("", "render", "view", "infoScreen", "showStaff", "performPaste");
15 
19  public function __construct($a_expl_id, $a_parent_obj, $a_parent_cmd, $a_tree)
20  {
21  parent::__construct($a_expl_id, $a_parent_obj, $a_parent_cmd, $a_tree);
22  $this->setAjax(true);
23  }
24 
25  public function getNodeContent($node){
26  global $lng;
27  if($node["title"] == "__OrgUnitAdministration")
28  $node["title"] = $lng->txt("objs_orgu");
29  if($node["child"] == $_GET["ref_id"])
30  return "<span class='ilExp2NodeContent ilHighlighted'>".$node["title"]."</span>";
31  else
32  return $node["title"];
33  }
34 
35  public function getRootNode(){
36  return $this->getTree()->getNodeData(ilObjOrgUnit::getRootOrgRefId());
37  }
38 
45  function getNodeIcon($a_node)
46  {
47  $obj_id = ilObject::_lookupObjId($a_node["child"]);
48  return ilObject::_getIcon($obj_id, "tiny", $a_node["type"]);
49  }
50 
51  function getNodeHref($node){
52  global $ilCtrl;
53  if($ilCtrl->getCmd() == "performPaste")
54  {
55  $ilCtrl->setParameterByClass("ilObjOrgUnitGUI","target_node",$node["child"]);
56  }
57  $ilCtrl->setParameterByClass("ilObjOrgUnitGUI", "ref_id", $node["child"]);
58  return $this->getLinkTarget();
59  }
60 
61  protected function getLinkTarget(){
62  global $ilCtrl;
63 
64  if($ilCtrl->getCmdClass() == "ilobjorgunitgui" && in_array($ilCtrl->getCmd(), $this->stay_with_command))
65  {
66  return $ilCtrl->getLinkTargetByClass($ilCtrl->getCmdClass(), $ilCtrl->getCmd());
67  }
68  else
69  {
70  return $ilCtrl->getLinkTargetByClass("ilobjorgunitgui", "view");
71  }
72 
73  }
74 
83  function getChildsOfNode($a_parent_node_id)
84  {
85  global $ilAccess;
86 
87  $wl = $this->getTypeWhiteList();
88  if (is_array($wl) && count($wl) > 0)
89  {
90  $childs = $this->tree->getChildsByTypeFilter($a_parent_node_id, $wl, $this->getOrderField());
91  }
92  else
93  {
94  $childs = $this->tree->getChilds($a_parent_node_id, $this->getOrderField());
95  }
96 
97  // apply black list filter
98  $bl = $this->getTypeBlackList();
99  if (is_array($bl) && count($bl) > 0)
100  {
101  $bl_childs = array();
102  foreach($childs as $k => $c)
103  {
104  if (!in_array($c["type"], $bl))
105  {
106  $bl_childs[$k] = $c;
107  }
108  }
109  return $bl_childs;
110  }
111 
112  //Check Access
113  foreach($childs as $key => $child)
114  {
115  if(!$ilAccess->checkAccess('visible', '', $child['ref_id']))
116  {
117  unset($childs[$key]);
118  }
119  }
120 
121  return $childs;
122  }
123 
133  function sortChilds($a_childs, $a_parent_node_id)
134  {
135  usort($a_childs,array( __CLASS__, "sortbyTitle"));
136 
137  return $a_childs;
138  }
139 
140  /*
141  * sortbyTitle
142  * Helper Method for sortChilds -> usort
143  */
144  function sortbyTitle($a, $b)
145  {
146  return strcmp($a["title"], $b["title"]);
147  }
148 
156  function isNodeClickable($a_node)
157  {
158  global $ilAccess;
159 
160  if($ilAccess->checkAccess('read', '', $a_node['ref_id']))
161  {
162  return true;
163  }
164  return false;
165  }
166  }
167 ?>
isNodeClickable($a_node)
Is node clickable?
static _getIcon($a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
getTypeBlackList()
Get type black list.
$_GET["client_id"]
getNodeIcon($a_node)
Get node icon.
global $ilCtrl
Definition: ilias.php:18
__construct($a_expl_id, $a_parent_obj, $a_parent_cmd, $a_tree)
Constructor.
sortChilds($a_childs, $a_parent_node_id)
Sort childs.
static _lookupObjId($a_id)
static getRootOrgRefId()
getOrderField()
Get order field.
Explorer class that works on tree objects (Services/Tree)
global $lng
Definition: privfeed.php:40
Class ilOrgUnitExplorerGUI.
getChildsOfNode($a_parent_node_id)
Get childs of node.
getTypeWhiteList()
Get type white list.