ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilLMExplorer.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 /*
5 * Explorer View for Learning Modules
6 *
7 * @author Alex Killing <alex.killing@gmx.de>
8 * @version $Id$
9 *
10 * @ingroup ModulesIliasLearningModule
11 */
12 
13 require_once("./Services/UIComponent/Explorer/classes/class.ilExplorer.php");
14 
15 class ilLMExplorer extends ilExplorer
16 {
17 
23  var $root_id;
24  var $lm_obj;
25  var $output;
26 
27  protected $lp_cache; // [array]
28 
35  function ilLMExplorer($a_target, $a_lm_obj, $a_lang = "-")
36  {
37  parent::ilExplorer($a_target);
38  $this->lang = $a_lang;
39  $this->tree = new ilTree($a_lm_obj->getId());
40  $this->tree->setTableNames('lm_tree','lm_data');
41  $this->tree->setTreeTablePK("lm_id");
42  $this->root_id = $this->tree->readRootId();
43  $this->lm_obj =& $a_lm_obj;
44  $this->order_column = "";
45  $this->setSessionExpandVariable("lmexpand");
46  $this->checkPermissions(false);
47  $this->setPostSort(false);
48  $this->textwidth = 200;
49  }
50 
58  function formatHeader(&$tpl, $a_obj_id,$a_option)
59  {
60  global $lng, $ilias;
61 
62  $tpl->setCurrentBlock("icon");
63  $tpl->setVariable("ICON_IMAGE" , ilUtil::getImagePath("icon_lm_s.png",false, "output", $this->offlineMode()));
64  $tpl->setVariable("TXT_ALT_IMG", $lng->txt("obj_".$this->lm_obj->getType()));
65  $tpl->parseCurrentBlock();
66 
67  $tpl->setCurrentBlock("link");
68  $tpl->setVariable("TITLE", ilUtil::shortenText($this->lm_obj->getTitle(), $this->textwidth, true));
69  $tpl->setVariable("LINK_TARGET", $this->buildLinkTarget("",""));
70  $tpl->setVariable("TARGET", " target=\"".$this->frame_target."\"");
71  $tpl->parseCurrentBlock();
72 
73  $tpl->touchBlock("element");
74  }
75 
83  function isClickable($a_type, $a_obj_id = 0)
84  {
85  global $ilUser;
86  // in this standard implementation
87  // only the type determines, wether an object should be clickable or not
88  // but this method can be overwritten and make use of the ref id
89  // (this happens e.g. in class ilRepositoryExplorerGUI)
90  if ($this->is_clickable[$a_type] == "n")
91  {
92  return false;
93  }
94 
95  // check public access
96  include_once 'Services/Payment/classes/class.ilPaymentObject.php';
97  if (($ilUser->getId() == ANONYMOUS_USER_ID ||
98  ilPaymentObject::_requiresPurchaseToAccess((int)$this->lm_obj->getRefId())) &&
99  !ilLMObject::_isPagePublic($a_obj_id, true))
100  {
101  return false;
102  }
103 
104  return true;
105  }
106 
107  protected function checkLPIcon($a_id)
108  {
109  global $ilUser;
110 
111  // do it once for all chapters
112  if($this->lp_cache[$this->lm_obj->getId()] === null)
113  {
114  $this->lp_cache[$this->lm_obj->getId()] = false;
115 
116  include_once './Services/Tracking/classes/class.ilLearningProgressAccess.php';
117  if(ilLearningProgressAccess::checkAccess($this->lm_obj->getRefId()))
118  {
119  $info = null;
120 
121  include_once './Services/Object/classes/class.ilObjectLP.php';
122  $olp = ilObjectLP::getInstance($this->lm_obj->getId());
123  if($olp->getCurrentMode() == ilLPObjSettings::LP_MODE_COLLECTION_MANUAL ||
124  $olp->getCurrentMode() == ilLPObjSettings::LP_MODE_COLLECTION_TLT)
125  {
126  include_once "Services/Tracking/classes/class.ilLPStatusFactory.php";
127  $class = ilLPStatusFactory::_getClassById($this->lm_obj->getId(), $olp->getCurrentMode());
128  $info = $class::_getStatusInfo($this->lm_obj->getId());
129  }
130 
131  // parse collection items
132  if(is_array($info["items"]))
133  {
134  foreach($info["items"] as $item_id)
135  {
137  if(is_array($info["in_progress"][$item_id]) &&
138  in_array($ilUser->getId(), $info["in_progress"][$item_id]))
139  {
141  }
142  else if(is_array($info["completed"][$item_id]) &&
143  in_array($ilUser->getId(), $info["completed"][$item_id]))
144  {
146  }
147  $this->lp_cache[$this->lm_obj->getId()][$item_id] =$status;
148  }
149  }
150  }
151 
152  include_once './Services/Tracking/classes/class.ilLearningProgressBaseGUI.php';
153  }
154 
155  if(is_array($this->lp_cache[$this->lm_obj->getId()]) &&
156  isset($this->lp_cache[$this->lm_obj->getId()][$a_id]))
157  {
158  return ilLearningProgressBaseGUI::_getImagePathForStatus($this->lp_cache[$this->lm_obj->getId()][$a_id]);
159  }
160  }
161 
162 } // END class ilLMExplorer
163 ?>
const LP_STATUS_COMPLETED_NUM
setPostSort($a_sort)
process post sorting
buildLinkTarget($a_node_id, $a_type)
get link target (may be overwritten by derived classes)
const LP_STATUS_IN_PROGRESS_NUM
static _requiresPurchaseToAccess($a_ref_id, $a_purchasetype='')
this function should be used by all buyable repository objects !!
_getImagePathForStatus($a_status)
Get image path for status.
static shortenText($a_str, $a_len, $a_dots=false, $a_next_blank=false, $a_keep_extension=false)
shorten a string to given length.
checkPermissions($a_check)
check permissions via rbac
static checkAccess($a_ref_id, $a_allow_only_read=true)
check access to learning progress
ilLMExplorer($a_target, $a_lm_obj, $a_lang="-")
Constructor public.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
formatHeader(&$tpl, $a_obj_id, $a_option)
overwritten method from base class public
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
setTableNames($a_table_tree, $a_table_obj_data, $a_table_obj_reference="")
set table names The primary key of the table containing your object_data must be &#39;obj_id&#39; You may use...
Tree class data representation in hierachical trees using the Nested Set Model with Gaps by Joe Celco...
Class ilExplorer class for explorer view in admin frame.
const LP_STATUS_NOT_ATTEMPTED_NUM
isClickable($a_type, $a_obj_id=0)
check if links for certain object type are activated
global $ilUser
Definition: imgupload.php:15
global $lng
Definition: privfeed.php:40
setSessionExpandVariable($a_var_name="expand")
set name of expand session variable
static _isPagePublic($a_node_id, $a_check_public_mode=false)
static getInstance($a_obj_id)
_getClassById($a_obj_id, $a_mode=NULL)