ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilLMEditorExplorerGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once("./Modules/LearningModule/classes/class.ilLMExplorerGUI.php");
5 
15 {
16 
23  function getNodeIcon($a_node)
24  {
25  if ($a_node["child"] == $this->getNodeId($this->getRootNode()))
26  {
27  $icon = ilUtil::getImagePath("icon_lm_s.png");
28  }
29  else
30  {
31  $a_name = "icon_".$a_node["type"]."_s.png";
32  if ($a_node["type"] == "pg")
33  {
34  include_once("./Modules/LearningModule/classes/class.ilLMPage.php");
35  $lm_set = new ilSetting("lm");
36  $active = ilLMPage::_lookupActive($a_node["child"], $this->lm->getType(),
37  $lm_set->get("time_scheduled_page_activation"));
38 
39  // is page scheduled?
40  $img_sc = ($lm_set->get("time_scheduled_page_activation") &&
41  ilLMPage::_isScheduledActivation($a_node["child"], $this->lm->getType()))
42  ? "_sc"
43  : "";
44 
45  $a_name = "icon_pg".$img_sc."_s.png";
46 
47  if (!$active)
48  {
49  $a_name = "icon_pg_d".$img_sc."_s.png";
50  }
51  else
52  {
53  include_once("./Modules/LearningModule/classes/class.ilLMPage.php");
54  $contains_dis = ilLMPage::_lookupContainsDeactivatedElements($a_node["child"],
55  $this->lm->getType());
56  if ($contains_dis)
57  {
58  $a_name = "icon_pg_del".$img_sc."_s.png";
59  }
60  }
61  }
62  $icon = ilUtil::getImagePath($a_name);
63  }
64 
65  return $icon;
66  }
67 
74  function getNodeIconAlt($a_node)
75  {
76  global $lng;
77 
78  include_once("./Modules/LearningModule/classes/class.ilLMObject.php");
79 
80  if ($a_node["type"] == "pg")
81  {
82  include_once("./Modules/LearningModule/classes/class.ilLMPage.php");
83  $lm_set = new ilSetting("lm");
84  $active = ilLMPage::_lookupActive($a_node["child"], $this->lm->getType(),
85  $lm_set->get("time_scheduled_page_activation"));
86 
87  if (!$active)
88  {
89  return $lng->txt("cont_page_deactivated");
90  }
91  else
92  {
93  $contains_dis = ilLMPage::_lookupContainsDeactivatedElements($a_node["child"],
94  $this->lm->getType());
95  if ($contains_dis)
96  {
97  return $lng->txt("cont_page_deactivated_elements");
98  }
99  }
100  }
101  return parent::getNodeIconAlt($a_node);
102  }
103 
110  function getNodeHref($a_node)
111  {
112  global $ilCtrl;
113 
114  switch($a_node["type"])
115  {
116  case "du":
117 // $ilCtrl->setParameterByClass("ilobjlearningmodulegui", "obj_id", $a_node["child"]);
118  $ret = $ilCtrl->getLinkTargetByClass("ilobjlearningmodulegui", "chapters");
119 // $ilCtrl->setParameterByClass("ilobjlearningmodulegui", "obj_id", $_GET["obj_id"]);
120  return $ret;
121  break;
122 
123  case "pg":
124  $ilCtrl->setParameterByClass("illmpageobjectgui", "obj_id", $a_node["child"]);
125  $ret = $ilCtrl->getLinkTargetByClass(array("ilobjlearningmodulegui", "illmpageobjectgui"), "edit");
126  $ilCtrl->setParameterByClass("illmpageobjectgui", "obj_id", $_GET["obj_id"]);
127  return $ret;
128  break;
129 
130  case "st":
131  $ilCtrl->setParameterByClass("ilstructureobjectgui", "obj_id", $a_node["child"]);
132  $ret = $ilCtrl->getLinkTargetByClass(array("ilobjlearningmodulegui", "ilstructureobjectgui"), "view");
133  $ilCtrl->setParameterByClass("ilstructureobjectgui", "obj_id", $_GET["obj_id"]);
134  return $ret;
135  break;
136  }
137  }
138 
139 }
140 
141 ?>
ILIAS Setting Class.
$_GET["client_id"]
LM editor explorer GUI class.
global $ilCtrl
Definition: ilias.php:18
static _lookupActive($a_id, $a_parent_type, $a_check_scheduled_activation=false, $a_lang="-")
lookup activation status
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
LM editor explorer GUI class.
getNodeId($a_node)
Get id for node.
getNodeIconAlt($a_node)
Get node icon alt text.
static _lookupContainsDeactivatedElements($a_id, $a_parent_type, $a_lang="-")
lookup whether page contains deactivated elements
static _isScheduledActivation($a_id, $a_parent_type, $a_lang="-")
Check whether page is activated by time schedule.
getRootNode()
Get root node.
getNodeIcon($a_node)
Get node icon.
getNodeHref($a_node)
Get href for node.
$lm_set
global $lng
Definition: privfeed.php:40