ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilSCORMExplorer.php
Go to the documentation of this file.
1<?php
2/*
3 +-----------------------------------------------------------------------------+
4 | ILIAS open source |
5 +-----------------------------------------------------------------------------+
6 | Copyright (c) 1998-2001 ILIAS open source, University of Cologne |
7 | |
8 | This program is free software; you can redistribute it and/or |
9 | modify it under the terms of the GNU General Public License |
10 | as published by the Free Software Foundation; either version 2 |
11 | of the License, or (at your option) any later version. |
12 | |
13 | This program is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | GNU General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU General Public License |
19 | along with this program; if not, write to the Free Software |
20 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21 +-----------------------------------------------------------------------------+
22*/
23
34require_once("./Services/UIComponent/Explorer/classes/class.ilExplorer.php");
35require_once("./Modules/ScormAicc/classes/SCORM/class.ilSCORMTree.php");
36
38{
39
45 public $slm_obj;
46
53 public function __construct($a_target, &$a_slm_obj)
54 {
55 parent::__construct($a_target);
56 $this->slm_obj = $a_slm_obj;
57 $this->tree = new ilSCORMTree($a_slm_obj->getId());
58 $this->root_id = $this->tree->readRootId();
59 $this->checkPermissions(false);
60 $this->outputIcons(true);
61 $this->setOrderColumn("");
62 }
63
64 public function getItem($a_node_id)
65 {
66 return new ilSCORMItem($a_node_id);
67 }
68
69 public function getIconImagePathPrefix()
70 {
71 return "scorm/";
72 }
73
74 public function getNodesToSkip()
75 {
76 return 2;
77 }
78
79
86 public function formatHeader($tpl, $a_obj_id, $a_option)
87 {
88 global $lng, $ilias;
89
90 $tpl = new ilTemplate("tpl.tree.html", true, true, "Services/UIComponent/Explorer");
91
92 $tpl->setCurrentBlock("row");
93 $tpl->setVariable("TITLE", $lng->txt("cont_manifest"));
94 $tpl->setVariable("LINK_TARGET", $this->target . "&" . $this->target_get . "=" . $a_obj_id);
95 $tpl->setVariable("TARGET", " target=\"" . $this->frame_target . "\"");
96 $tpl->parseCurrentBlock();
97
98 $this->output[] = $tpl->get();
99 }
100
108 public function createTarget($a_type, $a_child, $a_highlighted_subtree = false, $a_append_anch = true)
109 {
110 // SET expand parameter:
111 // positive if object is expanded
112 // negative if object is compressed
113 $a_child = ($a_type == '+')
114 ? $a_child
115 : -(int) $a_child;
116
117 return $_SERVER["PATH_INFO"] . "?cmd=explorer&ref_id=" . $this->slm_obj->getRefId() . "&scexpand=" . $a_child;
118 }
119
124 public function setOutput($parent_id, $a_depth = 1, $a_obj_id = 0, $a_highlighted_subtree = false)
125 {
126 $this->format_options = $this->createOutputArray($parent_id);
127 }
128
136 protected function createOutputArray($a_parent_id, $options = array())
137 {
138 $types_do_not_display = array("sos", "sma");
139 $types_do_not_load = array("srs");
140
141 if (!isset($a_parent_id)) {
142 $this->ilias->raiseError(get_class($this) . "::setOutput(): No node_id given!", $this->ilias->error_obj->WARNING);
143 }
144
145 if (!$this->showChilds($a_parent_id)) {
146 return array();
147 }
148
149 foreach ($this->tree->getChilds($a_parent_id, $this->order_column) as $key => $child) {
150 if (in_array($child["c_type"], $types_do_not_load)) {
151 continue;
152 }
153
154 $option = array();
155 $option["parent"] = $child["parent"];
156 $option["id"] = $child["child"];
157 $option["title"] = $child["title"];
158 $option["c_type"] = $child["c_type"];
159 $option["obj_id"] = $child["obj_id"];
160 $option["desc"] = "obj_" . $child["c_type"];
161 $option["container"] = false;
162 $option["visible"] = !in_array($child["c_type"], $types_do_not_display);
163
164 if ($this->showChilds($option["id"])) {
165 $option = $this->createOutputArray($option["id"], $option, ++$depth);
166 }
167
168 $options["childs"][] = $option;
169 }
170
171 return $options;
172 }
173
177 public function isVisible($a_id, $a_type)
178 {
179 if ($a_type == "sre") {
180 return false;
181 } else {
182 return true;
183 }
184 }
185
193 public function getOutput($jsApi = false)
194 {
195 $output = $this->createOutput($this->format_options, $jsApi);
196
197 return $output->get();
198 }
199
208 public function createOutput($option, $jsApi)
209 {
210 global $ilBench;
211
212 if ($option["visible"]) {
213 $tpl = new ilTemplate("tpl.sahs_tree_ul.html", true, true, "Modules/ScormAicc");
214 $tpl = $this->insertObject($option, $tpl, $jsApi);
215 } else {
216 $tpl = new ilTemplate("tpl.sahs_tree_free.html", true, true, "Modules/ScormAicc");
217 }
218
219 if (count($option["childs"])) {
220 foreach ($option["childs"] as $key => $ch_option) {
221 $tpl->setCurrentBlock("childs");
222 $tpl->setVariable("CHILDS", $this->createOutput($ch_option, $jsApi)->get());
223 $tpl->parseCurrentBlock();
224 }
225 }
226
227 return $tpl;
228 }
229
238 public function isClickable($a_type, $a_id = 0, $a_obj = 0)
239 {
240 if ($a_type != "sit") {
241 return false;
242 } else {
243 if (is_object($a_obj)) {
244 $sc_object = $a_obj;
245 } else {
246 $sc_object = new ilSCORMItem($a_id);
247 }
248 if ($sc_object->getIdentifierRef() != "") {
249 return true;
250 }
251 }
252 return false;
253 }
254
264 protected function insertObject($option, ilTemplate $tpl, $jsApi)
265 {
266 if (!is_array($option) || !isset($option["id"])) {
267 $this->ilias->raiseError(get_class($this) . "::insertObject(): Missing parameter or wrong datatype! " .
268 "node_id: " . $a_node_id . " options:" . var_dump($a_option), $this->ilias->error_obj->WARNING);
269 }
270
271 //get scorm item
272 $sc_object = new ilSCORMItem($option["id"]);
273 $id_ref = $sc_object->getIdentifierRef();
274
275 //get scorm resource ref id
276 $sc_res_id = ilSCORMResource::_lookupIdByIdRef($id_ref, $sc_object->getSLMId());
277
278 //get scorm type
279 $scormtype = strtolower(ilSCORMResource::_lookupScormType($sc_res_id));
280
281 //is scorm clickabke
282 $clickable = $this->isClickable($option["c_type"], $option["id"], $sc_object);
283
284 if ($this->output_icons && $clickable) {
285 $this->getOutputIcons($tpl, $option, $option["id"], $scormtype);
286 }
287
288 if ($clickable) { // output link
289 $tpl->setCurrentBlock("link");
290 $frame_target = $this->buildFrameTarget($option["c_type"], $option["id"], $option["obj_id"]);
291 if ($frame_target != "") {
292 $tpl->setVariable("TITLE", ilUtil::shortenText($option["title"], $this->textwidth, true));
293 $tpl->setVariable("LINK_TARGET", "javascript:void(0);");
294 if ($jsApi == true) {
295 $tpl->setVariable("ONCLICK", " onclick=\"parent.API.IliasLaunch('" . $option["id"] . "');return false;\"");
296 } else {
297 $tpl->setVariable("ONCLICK", " onclick=\"parent.APIFRAME.setupApi();parent.APIFRAME.API."
298 . ($scormtype == 'asset' ? 'IliasLaunchAsset' : 'IliasLaunchSahs')
299 . "('" . $option["id"] . "');return false;\"");
300 }
301 }
302 $tpl->parseCurrentBlock();
303 } else { // output text only
304 $tpl->setCurrentBlock("text");
305 $tpl->setVariable("OBJ_TITLE", ilUtil::shortenText($option["title"], $this->textwidth, true));
306 $tpl->parseCurrentBlock();
307 }
308
309 $tpl->setCurrentBlock("li");
310 $tpl->parseCurrentBlock();
311
312 return $tpl;
313 }
314
323 public function getOutputIcons(&$tpl, $a_option, $a_node_id, $scormtype="sco")
324 {
325 global $lng;
326
327 $tpl->setCurrentBlock("icon");
328
329 if ($scormtype == 'asset') {
330 $tpl->setVariable('ICON_IMAGE', ilUtil::getImagePath($this->getIconImagePathPrefix() . "asset.svg"));
331 $tpl->setVariable('TXT_ALT_IMG', '');
332 $tpl->parseCurrentBlock();
333 return;
334 }
335
337 $a_node_id,
338 0,
339 $this->slm_obj->getId()
340 );
341
342 // status
343 $status = ($trdata["cmi.core.lesson_status"] == "")
344 ? "not attempted"
345 : $trdata["cmi.core.lesson_status"];
346
347 $statusChar=strtolower(substr($status, 0, 1));
348 if ($statusChar=="f") {
349 $status="failed";
350 } elseif ($statusChar=="b") {
351 $status="browsed";
352 } elseif ($statusChar=="c") {
353 $status="completed";
354 } elseif ($statusChar=="n") {
355 $status="not_attempted";
356 } elseif ($statusChar=="p") {
357 $status="passed";
358 } elseif ($statusChar=="r") {
359 $status="running";
360 }
361
362 $alt = $lng->txt("cont_status") . ": " .
363 $lng->txt("cont_sc_stat_" . str_replace(" ", "_", $status));
364
365 // score
366 if ($trdata["cmi.core.score.raw"] != "") {
367 $alt.= ", " . $lng->txt("cont_credits") .
368 ": " . $trdata["cmi.core.score.raw"];
369 }
370
371 // total time
372 if ($trdata["cmi.core.total_time"] != "" &&
373 $trdata["cmi.core.total_time"] != "0000:00:00.00") {
374 $alt.= ", " . $lng->txt("cont_total_time") .
375 ": " . $trdata["cmi.core.total_time"];
376 }
377
378 $tpl->setVariable("ICON_NAME", 'scoIcon' . $a_node_id);
379 $tpl->setVariable("ICON_IMAGE", ilUtil::getImagePath($this->getIconImagePathPrefix() . str_replace(" ", "_", $status) . ".svg"));
380 $tpl->setVariable("TXT_ALT_IMG", $alt);
381 $tpl->parseCurrentBlock();
382 }
383}
if(!isset( $_REQUEST[ 'ReturnTo'])) if(!isset($_REQUEST['AuthId'])) $options
Definition: as_login.php:20
An exception for terminatinating execution or to throw for unit testing.
Class ilExplorer class for explorer view in admin frame.
showChilds($a_parent_id)
determines wether the childs of an object should be shown or not note: this standard implementation a...
outputIcons($a_icons)
output icons
checkPermissions($a_check)
check permissions via rbac
buildFrameTarget($a_type, $a_child=0, $a_obj_id=0)
get frame target (may be overwritten by derived classes)
setOrderColumn($a_column)
set the order column @access public
Explorer View for SCORM Learning Modules.
setOutput($parent_id, $a_depth=1, $a_obj_id=0, $a_highlighted_subtree=false)
possible output array is set
createOutput($option, $jsApi)
recursive creation of output templates
createOutputArray($a_parent_id, $options=array())
recursivi creating of outputs
getOutput($jsApi=false)
Creates output template.
isVisible($a_id, $a_type)
formatHeader($tpl, $a_obj_id, $a_option)
overwritten method from base class @access public
isClickable($a_type, $a_id=0, $a_obj=0)
can i click on the module name
__construct($a_target, &$a_slm_obj)
Constructor @access public.
insertObject($option, ilTemplate $tpl, $jsApi)
insert the option data in $tpl
getOutputIcons(&$tpl, $a_option, $a_node_id, $scormtype="sco")
tpl is filled with option state
createTarget($a_type, $a_child, $a_highlighted_subtree=false, $a_append_anch=true)
Creates Get Parameter @access private.
static _lookupTrackingDataOfUser($a_item_id, $a_user_id=0, $a_obj_id=0)
static _lookupIdByIdRef($a_id_ref, $a_slm_id)
static _lookupScormType($a_obj_id)
SCORM Object Tree.
special template class to simplify handling of ITX/PEAR
static shortenText( $a_str, $a_len, $a_dots=false, $a_next_blank=false, $a_keep_extension=false)
shorten a string to given length.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
$key
Definition: croninfo.php:18
global $ilBench
Definition: ilias.php:18
redirection script todo: (a better solution should control the processing via a xml file)
if((!isset($_SERVER['DOCUMENT_ROOT'])) OR(empty($_SERVER['DOCUMENT_ROOT']))) $_SERVER['DOCUMENT_ROOT']
$a_type
Definition: workflow.php:92