ILIAS  release_4-3 Revision
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilLocatorGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
16 {
17  protected $lng;
18  protected $entries;
19 
24  function ilLocatorGUI()
25  {
26  global $lng;
27 
28  $this->lng =& $lng;
29  $this->entries = array();
30  $this->setTextOnly(false);
31  $this->offline = false;
32  }
33 
39  function setTextOnly($a_textonly)
40  {
41  $this->textonly = $a_textonly;
42  }
43 
44  function setOffline($a_offline)
45  {
46  $this->offline = $a_offline;
47  }
48 
49  function getOffline()
50  {
51  return $this->offline;
52  }
53 
59  function getTextOnly()
60  {
61  return $this->textonly;
62  }
63 
70  function addRepositoryItems($a_ref_id = 0)
71  {
72  global $tree, $ilCtrl;
73 
74  if ($a_ref_id == 0)
75  {
76  $a_ref_id = $_GET["ref_id"];
77  }
78 
79  include_once './Services/Container/classes/class.ilMemberViewSettings.php';
80  if(ilMemberViewSettings::getInstance()->isActive() and $a_ref_id != ROOT_FOLDER_ID)
81  {
82  $a_start = ilMemberViewSettings::getInstance()->getContainer();
83  }
84  else
85  {
86  $a_start = ROOT_FOLDER_ID;
87  }
88 
89  if ($a_ref_id > 0)
90  {
91  $path = $tree->getPathFull($a_ref_id,$a_start);
92 
93  // add item for each node on path
94  foreach ((array) $path as $key => $row)
95  {
96  if (!in_array($row["type"], array("root", "cat","crs", "fold", "grp", "icrs")))
97  {
98  continue;
99  }
100  if ($row["title"] == "ILIAS" && $row["type"] == "root")
101  {
102  $row["title"] = $this->lng->txt("repository");
103  }
104 
105  $ilCtrl->setParameterByClass("ilrepositorygui", "ref_id", $row["child"]);
106  $this->addItem($row["title"],
107  $ilCtrl->getLinkTargetByClass("ilrepositorygui", "frameset"),
108  ilFrameTargetInfo::_getFrame("MainContent"), $row["child"]);
109  $ilCtrl->setParameterByClass("ilrepositorygui", "ref_id", $_GET["ref_id"]);
110  }
111  }
112  }
113 
120  function addAdministrationItems($a_ref_id = 0)
121  {
122  global $tree, $ilCtrl, $objDefinition, $lng;
123 
124  if ($a_ref_id == 0)
125  {
126  $a_ref_id = $_GET["ref_id"];
127  }
128 
129  if ($a_ref_id > 0)
130  {
131  $path = $tree->getPathFull($a_ref_id);
132 
133  // add item for each node on path
134  foreach ($path as $key => $row)
135  {
136  if (!in_array($row["type"], array("root", "cat", "crs", "fold", "grp", "icrs")))
137  {
138  continue;
139  }
140 
141  if ($row["child"] == ROOT_FOLDER_ID)
142  {
143  $row["title"] = $lng->txt("repository");
144  }
145 
146  $class_name = $objDefinition->getClassName($row["type"]);
147  $class = strtolower("ilObj".$class_name."GUI");
148  $ilCtrl->setParameterByClass($class, "ref_id", $row["child"]);
149  $this->addItem($row["title"],
150  $ilCtrl->getLinkTargetbyClass($class, "view"), "", $row["child"]);
151  }
152  }
153  }
154 
155  function addContextItems($a_ref_id, $a_omit_node = false, $a_stop = 0)
156  {
157  global $tree;
158 
159  if ($a_ref_id > 0)
160  {
161  $path = $tree->getPathFull($a_ref_id);
162 
163  // we want to show the full path, from the major container to the item
164  // (folders are not! treated as containers here), at least one parent item
165  $r_path = array_reverse($path);
166  $first = "";
167  $omit = array();
168  $do_omit = false;
169  foreach ($r_path as $key => $row)
170  {
171  if ($first == "")
172  {
173  if (in_array($row["type"], array("root", "cat", "grp", "crs")) &&
174  $row["child"] != $a_ref_id)
175  {
176  $first = $row["child"];
177  }
178  }
179  if ($a_stop == $row["child"])
180  {
181  $do_omit = true;
182  }
183  $omit[$row["child"]] = $do_omit;
184  }
185 
186  $add_it = false;
187  foreach ($path as $key => $row)
188  {
189  if ($first == $row["child"])
190  {
191  $add_it = true;
192  }
193 
194 
195  if ($add_it && !$omit[$row["child"]] &&
196  (!$a_omit_node || ($row["child"] != $a_ref_id)))
197  {
198 //echo "-".ilObject::_lookupTitle($row["obj_id"])."-";
199  if ($row["title"] == "ILIAS" && $row["type"] == "root")
200  {
201  $row["title"] = $this->lng->txt("repository");
202  }
203  $this->addItem($row["title"],
204  "./goto.php?client_id=".rawurlencode(CLIENT_ID)."&target=".$row["type"]."_".$row["child"],
205  "_top", $row["child"], $row["type"]);
206  }
207  }
208  }
209  }
210 
218  function addItem($a_title, $a_link, $a_frame = "", $a_ref_id = 0, $type = null)
219  {
220  $this->entries[] = array("title" => $a_title,
221  "link" => $a_link, "frame" => $a_frame, "ref_id" => $a_ref_id, "type" => $type);
222  }
223 
227  function clearItems()
228  {
229  $this->entries = array();
230  }
231 
235  function getItems()
236  {
237  return $this->entries;
238  }
239 
243  function getHTML()
244  {
245  global $lng, $ilSetting;
246 
247  if ($this->getTextOnly())
248  {
249  $loc_tpl = new ilTemplate("tpl.locator_text_only.html", true, true, "Services/Locator");
250  }
251  else
252  {
253  $loc_tpl = new ilTemplate("tpl.locator.html", true, true, "Services/Locator");
254  }
255 
256  $items = $this->getItems();
257  $first = true;
258 
259  if (is_array($items))
260  {
261  foreach($items as $item)
262  {
263  if (!$first)
264  {
265  $loc_tpl->touchBlock("locator_separator_prefix");
266  }
267 
268  if ($item["ref_id"] > 0)
269  {
270  $obj_id = ilObject::_lookupObjId($item["ref_id"]);
271  $type = ilObject::_lookupType($obj_id);
272 
273  if (!$this->getTextOnly())
274  {
275  $icon_path = ilObject::_getIcon($obj_id, "tiny", $type,
276  $this->getOffline());
277  }
278 
279  $loc_tpl->setCurrentBlock("locator_img");
280  $loc_tpl->setVariable("IMG_SRC", $icon_path);
281  $loc_tpl->setVariable("IMG_ALT",
282  $lng->txt("obj_".$type));
283  $loc_tpl->parseCurrentBlock();
284  }
285 
286  $loc_tpl->setCurrentBlock("locator_item");
287  if ($item["link"] != "")
288  {
289  $loc_tpl->setVariable("LINK_ITEM", $item["link"]);
290  if ($item["frame"] != "")
291  {
292  $loc_tpl->setVariable("LINK_TARGET", ' target="'.$item["frame"].'" ');
293  }
294  $loc_tpl->setVariable("ITEM", $item["title"]);
295  }
296  else
297  {
298  $loc_tpl->setVariable("PREFIX", $item["title"]);
299  }
300  $loc_tpl->parseCurrentBlock();
301 
302  $first = false;
303  }
304  }
305  else
306  {
307  $loc_tpl->setVariable("NOITEM", "&nbsp;");
308  $loc_tpl->touchBlock("locator");
309  }
310  $loc_tpl->setVariable("TXT_BREADCRUMBS", $lng->txt("breadcrumb_navigation"));
311 
312  return trim($loc_tpl->get());
313  }
314 
318  function getTextVersion()
319  {
320  global $lng, $ilSetting;
321 
322  $items = $this->getItems();
323  $first = true;
324 
325  $str = "";
326  if (is_array($items))
327  {
328  foreach($items as $item)
329  {
330  if (!$first)
331  {
332  $str.= " > ";
333  }
334 
335  $str.= $item["title"];
336 
337  $first = false;
338  }
339  }
340 
341  return $str;
342  }
343 
344 } // END class.LocatorGUI
345 ?>