ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilTaxonomyExplorerGUI.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2012 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 include_once("./Services/UIComponent/Explorer2/classes/class.ilTreeExplorerGUI.php");
6 
15 {
22  function __construct($a_parent_obj, $a_parent_cmd, $a_tax_id,
23  $a_target_gui, $a_target_cmd, $a_id = "")
24  {
25  include_once("./Services/Taxonomy/classes/class.ilTaxonomyTree.php");
26  $this->tax_tree = new ilTaxonomyTree($a_tax_id);
27  if ($a_id != "")
28  {
29  $this->id = $a_id;
30  }
31  else
32  {
33  $this->id = "tax_expl_".$this->tax_tree->getTreeId();
34  }
35  include_once("./Services/Taxonomy/classes/class.ilObjTaxonomy.php");
37  {
38  $this->setOrderField("title");
39  }
40  else
41  {
42  $this->setOrderField("order_nr", true);
43  }
44  $this->setPreloadChilds(true);
45  $this->target_gui = $a_target_gui;
46  $this->target_cmd = $a_target_cmd;
47  //$this->setOrderField("title");
48  parent::__construct($this->id, $a_parent_obj, $a_parent_cmd, $this->tax_tree);
49  }
50 
51 
58  function getNodeContent($a_node)
59  {
60  $rn = $this->getRootNode();
61  if ($rn["child"] == $a_node["child"])
62  {
63  return ilObject::_lookupTitle($this->tax_tree->getTreeId());
64  }
65  else
66  {
67  return $a_node["title"];
68  }
69  }
70 
77  function getNodeHref($a_node)
78  {
79  global $ilCtrl;
80 
81  $ilCtrl->setParameterByClass($this->target_gui, "tax_node", $a_node["child"]);
82  $href = $ilCtrl->getLinkTargetByClass($this->target_gui, $this->target_cmd);
83  $ilCtrl->setParameterByClass($this->target_gui, "tax_node", $_GET["tax_node"]);
84  return $href;
85  }
86 
93  function getNodeIcon($a_node)
94  {
95  return ilUtil::getImagePath("icon_taxn_s.png");
96  }
97 
104  function isNodeHighlighted($a_node)
105  {
106  if ($a_node["child"] == $_GET["tax_node"])
107  {
108  return true;
109  }
110  return false;
111  }
112 
113 }
114 
115 ?>
getNodeIcon($a_node)
Get node icon.
getNodeHref($a_node)
Get node href.
$_GET["client_id"]
Taxonomy explorer GUI class.
static _lookupTitle($a_id)
lookup object title
global $ilCtrl
Definition: ilias.php:18
setPreloadChilds($a_val)
Set preload childs.
static lookupSortingMode($a_id)
Lookup sorting mode.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
getNodeContent($a_node)
Get content of node.
__construct($a_parent_obj, $a_parent_cmd, $a_tax_id, $a_target_gui, $a_target_cmd, $a_id="")
Constructor.
getRootNode()
Get root node.
Explorer class that works on tree objects (Services/Tree)
setOrderField($a_val, $a_numeric=false)
Set order field.