ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilLMExplorerGUI.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("./Services/UIComponent/Explorer2/classes/class.ilTreeExplorerGUI.php");
5 include_once("./Modules/LearningModule/classes/class.ilStructureObject.php");
6 include_once("./Modules/LearningModule/classes/class.ilLMObject.php");
7 
17 {
18  protected $lp_cache; // [array]
19  protected $cnt_lmobj; // number of items (chapters and pages) in the explorer
20 
28  public function __construct($a_parent_obj, $a_parent_cmd, ilObjContentObject $a_lm)
29  {
30  $this->lm = $a_lm;
31 
32  include_once("./Modules/LearningModule/classes/class.ilLMTree.php");
33  $tree = ilLMTree::getInstance($this->lm->getId());
34 
35 //echo "+".$tree->isCacheUsed()."+";
36 
37 // $tree = new ilTree($this->lm->getId());
38 // $tree->setTableNames('lm_tree','lm_data');
39 // $tree->setTreeTablePK("lm_id");
40 
41  include_once("./Modules/LearningModule/classes/class.ilLMObject.php");
42  $this->cnt_lmobj = ilLMObject::preloadDataByLM($this->lm->getId());
43 
44  include_once("./Services/COPage/classes/class.ilPageObject.php");
46 
47  $id = "lm_exp";
48 
49  // this does not work, since it is not set yet
50  if ($this->getOfflineMode())
51  {
52  $id = "lm_exp_off";
53  }
54 
55  parent::__construct($id, $a_parent_obj, $a_parent_cmd, $tree);
56 
57  $this->setSkipRootNode(false);
58  $this->setAjax(false);
59  $this->setPreloadChilds(true);
60 
61  if ((int) $_GET["obj_id"] > 0)
62  {
63  $this->setPathOpen((int) $_GET["obj_id"]);
64  }
65  }
66 
70  function beforeRendering()
71  {
72  if ($this->cnt_lmobj > 200 && !$this->getOfflineMode())
73  {
74  $this->setAjax(true);
75  }
76  }
77 
78 
85  function getNodeContent($a_node)
86  {
87  if ($a_node["child"] == $this->getNodeId($this->getRootNode()))
88  {
89  return $this->lm->getTitle();
90  }
91 
92  $lang = ($_GET["transl"] != "")
93  ? $_GET["transl"]
94  : "-";
96  $this->lm->isActiveNumbering(), false, false, $this->lm->getId(), $lang);
97  }
98 
105  function isNodeHighlighted($a_node)
106  {
107  if ($a_node["child"] == $_GET["obj_id"] ||
108  ($_GET["obj_id"] == "" && $a_node["child"] == $this->getNodeId($this->getRootNode())))
109  {
110  return true;
111  }
112  return false;
113  }
114 
121  protected function checkLPIcon($a_id)
122  {
123  global $ilUser;
124 
125  // do it once for all chapters
126  if($this->lp_cache[$this->lm->getId()] === null)
127  {
128  $this->lp_cache[$this->lm->getId()] = false;
129 
130  include_once './Services/Tracking/classes/class.ilLearningProgressAccess.php';
131  if(ilLearningProgressAccess::checkAccess($this->lm->getRefId()))
132  {
133  $info = null;
134 
135  include_once './Services/Object/classes/class.ilObjectLP.php';
136  $olp = ilObjectLP::getInstance($this->lm->getId());
137  if($olp->getCurrentMode() == ilLPObjSettings::LP_MODE_COLLECTION_MANUAL ||
138  $olp->getCurrentMode() == ilLPObjSettings::LP_MODE_COLLECTION_TLT)
139  {
140  include_once "Services/Tracking/classes/class.ilLPStatusFactory.php";
141  $class = ilLPStatusFactory::_getClassById($this->lm->getId(), $olp->getCurrentMode());
142  $info = $class::_getStatusInfo($this->lm->getId());
143  }
144 
145  // parse collection items
146  if(is_array($info["items"]))
147  {
148  foreach($info["items"] as $item_id)
149  {
151  if(is_array($info["in_progress"][$item_id]) &&
152  in_array($ilUser->getId(), $info["in_progress"][$item_id]))
153  {
155  }
156  else if(is_array($info["completed"][$item_id]) &&
157  in_array($ilUser->getId(), $info["completed"][$item_id]))
158  {
160  }
161  $this->lp_cache[$this->lm->getId()][$item_id] =$status;
162  }
163  }
164  }
165 
166  include_once './Services/Tracking/classes/class.ilLearningProgressBaseGUI.php';
167  }
168 
169  if(is_array($this->lp_cache[$this->lm->getId()]) &&
170  isset($this->lp_cache[$this->lm->getId()][$a_id]))
171  {
172  return ilLearningProgressBaseGUI::_getImagePathForStatus($this->lp_cache[$this->lm->getId()][$a_id]);
173  }
174 
175  return "";
176  }
177 
178 }
179 
180 ?>
const LP_STATUS_COMPLETED_NUM
beforeRendering()
Before rendering.
const IL_PAGE_TITLE
$_GET["client_id"]
setSkipRootNode($a_val)
Set skip root node.
const LP_STATUS_IN_PROGRESS_NUM
_getImagePathForStatus($a_status)
Get image path for status.
setPathOpen($a_id)
Set node path to be opened.
isNodeHighlighted($a_node)
Is node highlighted?
setPreloadChilds($a_val)
Set preload childs.
static checkAccess($a_ref_id, $a_allow_only_read=true)
check access to learning progress
checkLPIcon($a_id)
Check learning progress icon.
static getInstance($a_tree_id)
Get Instance.
static preloadDataByLM($a_lm_id)
Preload data records by lm.
LM editor explorer GUI class.
getNodeId($a_node)
Get id for node.
getOfflineMode()
Get offline mode.
const LP_STATUS_NOT_ATTEMPTED_NUM
getRootNode()
Get root node.
global $ilUser
Definition: imgupload.php:15
Explorer class that works on tree objects (Services/Tree)
static preloadActivationDataByParentId($a_parent_id)
Preload activation data by Parent Id.
Class ilObjContentObject.
getNodeContent($a_node)
Get node content.
static getInstance($a_obj_id)
__construct($a_parent_obj, $a_parent_cmd, ilObjContentObject $a_lm)
Constructor.
static _getPresentationTitle($a_node, $a_mode=IL_PAGE_TITLE, $a_include_numbers=false, $a_time_scheduled_activation=false, $a_force_content=false, $a_lm_id=0, $a_lang="-")
Get affective title.
_getClassById($a_obj_id, $a_mode=NULL)