ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilSCORM2004PageGUI.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2011 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 include_once("./Services/COPage/classes/class.ilPageObjectGUI.php");
6 include_once("./Modules/Scorm2004/classes/class.ilSCORM2004Page.php");
7 require_once './Modules/Scorm2004/classes/class.ilQuestionExporter.php';
8 
22 {
23  protected $glossary_links = array();
24  protected $scorm_mode = "preview";
26 
30  function __construct($a_parent_type, $a_id = 0, $a_old_nr = 0, $a_slm_id = 0,
31  $a_glo_id = 0)
32  {
33  global $tpl, $ilCtrl;
34 
35  $this->glo_id = $a_glo_id;
36  $this->slm_id = $a_slm_id;
37 
38  $a_parent_type = "sahs";
39 
40  parent::__construct($a_parent_type, $a_id, $a_old_nr);
41  $this->getPageObject()->setGlossaryId($this->glo_id);
42 
43  $this->setIntLinkReturn(
44  $ilCtrl->getLinkTargetByClass("ilobjscorm2004learningmodulegui", "showTree",
45  "", false, false));
46  include_once("./Modules/ScormAicc/classes/class.ilObjSAHSLearningModule.php");
47  $this->enableNotes(true, $this->slm_id);
48  }
49 
55  function setGlossaryOverviewInfo($a_ov_id, $a_sco)
56  {
57  $this->glossary_ov_id = $a_ov_id;
58  $this->sco = $a_sco;
59  }
60 
67  {
68  return $this->glossary_ov_id;
69  }
70 
74  function &executeCommand()
75  {
76  global $ilCtrl;
77 
78  $next_class = $this->ctrl->getNextClass($this);
79  $cmd = $this->ctrl->getCmd();
80 
81  switch($next_class)
82  {
83  case 'ilmdeditorgui':
84  return parent::executeCommand();
85  break;
86 
87  case "ilpageobjectgui":
88 die("ilSCORM2004PageGUI forwarding to ilpageobjectgui error.");
89  return;
90 
91  default:
92  $html = parent::executeCommand();
93  return $html;
94  }
95  }
96 
102  function setSCORM2004Page($a_scpage)
103  {
104  $this->setPageObject($a_scpage);
105  }
106 
112  function getSCORM2004Page()
113  {
114  return $this->getPageObject();
115  }
116 
117  /*function preview()
118  {
119  global $ilCtrl;
120 
121  $wtpl = new ilTemplate("tpl....html",
122  true, true, "Modules/Scorm2004");
123 
124  $wtpl->setVariable("PAGE", parent::preview());
125  return $wtpl->get();
126  }*/
127 
132  {
133  $q_ids = $this->getPageObject()->getQuestionIds();
134 
135  $html = array();
136  if (count($q_ids) > 0)
137  {
138  foreach ($q_ids as $q_id)
139  {
140  include_once("./Modules/TestQuestionPool/classes/class.assQuestionGUI.php");
141  $q_gui =& assQuestionGUI::_getQuestionGUI("", $q_id);
142  $q_gui->outAdditionalOutput();
143  $html[$q_id] = $q_gui->getPreview(TRUE);
144  }
145  }
146 
147  return $html;
148  }
149 
150 
151  // moved to parent
152  //function getQuestionJsOfPage($a_no_interaction = false)
153 
161  {
162  if ($this->scorm_mode == "preview")
163  {
164  parent::initSelfAssessmentRendering();
165  }
166  }
167 
174  function selfAssessmentRendering($a_output)
175  {
176  if ($this->scorm_mode == "preview")
177  {
178  $a_output = parent::selfAssessmentRendering($a_output);
179  }
180 
181  return $a_output;
182  }
183 
187  function showPage($a_mode = "preview")
188  {
189  global $tpl, $ilCtrl;
190 
191  $this->scorm_mode = $a_mode;
192 
193  $this->setTemplateOutput(false);
194 
195  $output = parent::showPage();
196 
197  return $output;
198  }
199 
203  function setDefaultLinkXml()
204  {
205  $int_links = $this->getPageObject()->getInternalLinks(true);
206  $this->glossary_links = $int_links;
207 //var_dump($int_links);
208 
209 // key is il__git_18:GlossaryItem:Glossary::4 => id is il__git_18_4,
210 
211  $link_info = "<IntLinkInfos>";
212  $targetframe = "None";
213  $ltarget = "";
214  foreach ($int_links as $int_link)
215  {
216  $onclick = "";
217  $target = $int_link["Target"];
218  $targetframe = "None";
219  if (substr($target, 0, 4) == "il__")
220  {
221  $target_arr = explode("_", $target);
222  $target_id = $target_arr[count($target_arr) - 1];
223  $type = $int_link["Type"];
224 
225  switch($type)
226  {
227  case "GlossaryItem":
228  $ltarget = "";
229  //$href = "./goto.php?target=git_".$target_id;
230  $href = "#";
231  $onclick = 'OnClick="return false;"';
232  $anc_par = 'Anchor=""';
233  $targetframe = "Glossary";
234  break;
235 
236  case "File":
237  $ltarget = "";
238  if ($this->getOutputMode() == "offline")
239  {
240  if (ilObject::_lookupType($target_id) == "file")
241  {
242  include_once("./Modules/File/classes/class.ilObjFile.php");
243  $href = "./files/file_".$target_id."/".ilObjFile::_lookupFileName($target_id);
244  $ltarget = "_blank";
245  }
246  }
247  else
248  {
249  $href = str_replace("&", "&amp;", $this->determineFileDownloadLink())."&amp;file_id=il__file_".$target_id;
250 //echo htmlentities($href);
251  }
252 
253  $anc_par = 'Anchor=""';
254  $targetframe = "None"; //???
255  break;
256 
257  }
258  $link_info.="<IntLinkInfo $onclick Target=\"$target\" Type=\"$type\" ".$anc_par." ".
259  "TargetFrame=\"$targetframe\" LinkHref=\"$href\" LinkTarget=\"$ltarget\" />";
260  }
261  }
262  $link_info.= "</IntLinkInfos>";
263  $this->setLinkXML($link_info);
264 //var_dump($link_info);
265  }
266 
271  function postOutputProcessing($a_output)
272  {
273 //var_dump($this->glossary_links);
274  include_once("./Services/UIComponent/Overlay/classes/class.ilOverlayGUI.php");
275 
276  if ($this->scorm_mode != "export")
277  {
278  $tpl = new ilTemplate("tpl.glossary_entries.html", true, true, "Modules/Scorm2004");
279  }
280  else
281  {
282  $tpl = self::$export_glo_tpl;
283  }
284  $glossary = false;
285 
286  $overlays = array();
287 
288  // overlay for sco glossary
289  if ($this->getGlossaryOverviewId() != "" && $this->getOutputMode() != "edit")
290  {
291  $ovov = $overlays[$this->getGlossaryOverviewId()] = new ilOverlayGUI($this->getGlossaryOverviewId());
292 // $ovov->setFixedCenter(true);
293  $ovov->setAutoHide(false);
294  $ovov->setCloseElementId("glo_ov_close");
295  if ($this->getGlossaryOverviewId() != "")
296  {
297  if ($this->scorm_mode != "export" ||
298  $this->getOutputMode() == IL_PAGE_PREVIEW)
299  {
300  $overlays[$this->getGlossaryOverviewId()]->add();
301  }
302  else
303  {
304  $tpl->setCurrentBlock("add_script");
305  $tpl->setVariable("ADD_SCRIPT", "il.Util.addOnLoad(function () {".$overlays[$this->getGlossaryOverviewId()]->getOnLoadCode()."});");
306  $tpl->parseCurrentBlock();
307  }
308  }
309  }
310 
311  if ($this->getOutputMode() != "edit")
312  {
313  if (is_array($this->glossary_links))
314  {
315  foreach ($this->glossary_links as $k => $e)
316  {
317  // glossary link
318  if ($e["Type"] == "GlossaryItem")
319  {
320  $karr = explode(":", $k);
321  $link_id = $karr[0]."_".$this->getPageObject()->getId()."_".$karr[4];
322  //$ov_id = "ov".$karr[0]."_".$karr[4];
323  $ov_id = "ov".$karr[0];
324  $cl_id = "ov".$karr[0]."cl";
325  $glov_id = "ov".$karr[0]."ov";
326  $term_id_arr = explode("_", $karr[0]);
327  $term_id = $term_id_arr[count($term_id_arr) - 1];
328 
329  // get overlay html from glossary term
330  include_once("./Modules/Glossary/classes/class.ilGlossaryTermGUI.php");
331  $id_arr = explode("_", $karr[0]);
332  $term_gui =& new ilGlossaryTermGUI($id_arr[count($id_arr) - 1]);
333  $html = $term_gui->getOverlayHTML($cl_id, ($this->getGlossaryOverviewId() != "")
334  ? $glov_id
335  : "",
337  $tpl->setCurrentBlock("entry");
338  $tpl->setVariable("CONTENT", $html);
339  $tpl->setVariable("OVERLAY_ID", $ov_id);
340 
341  $glossary = true;
342 
343  // first time the term is used
344  if (!isset($overlays[$ov_id]))
345  {
346  $overlays[$ov_id] = new ilOverlayGUI($ov_id);
347  $overlays[$ov_id]->setAnchor($link_id);
348  $overlays[$ov_id]->setTrigger($link_id, "click", $link_id);
349  $overlays[$ov_id]->setAutoHide(false);
350  $overlays[$ov_id]->setCloseElementId($cl_id);
351  if ($this->scorm_mode != "export" ||
352  $this->getOutputMode() == IL_PAGE_PREVIEW)
353  {
354  $overlays[$ov_id]->add();
355  }
356  else
357  {
358  $tpl->setVariable("SCRIPT", "il.Util.addOnLoad(function () {".$overlays[$ov_id]->getOnLoadCode()."});");
359  }
360  }
361  else
362  {
363  if ($this->scorm_mode != "export" ||
364  $this->getOutputMode() == IL_PAGE_PREVIEW)
365  {
366  $overlays[$ov_id]->addTrigger($link_id, "click", $link_id);
367  }
368  else
369  {
370  $tpl->setVariable("SCRIPT",
371  "il.Util.addOnLoad(function () {".$overlays[$ov_id]->getTriggerOnLoadCode($link_id, "click", $link_id)."});");
372  }
373  }
374 
375  if ($this->getGlossaryOverviewId() != "")
376  {
377  if ($this->scorm_mode != "export" ||
378  $this->getOutputMode() == IL_PAGE_PREVIEW)
379  {
380  //$overlays[$this->getGlossaryOverviewId()]->addTrigger($glov_id, "click", null);
381  $overlays[$this->getGlossaryOverviewId()]->addTrigger($glov_id, "click", $ov_id, false, "tl", "tl");
382  //$overlays[$ov_id]->addTrigger("glo_ov_t".$term_id, "click", null, true);
383  $overlays[$ov_id]->addTrigger("glo_ov_t".$term_id, "click", $this->getGlossaryOverviewId(), false, "tl", "tl");
384  }
385  else
386  {
387  $tpl->setVariable("SCRIPT2",
388  "il.Util.addOnLoad(function () {".
389  $overlays[$this->getGlossaryOverviewId()]->getTriggerOnLoadCode($glov_id, "click", $ov_id, false, "tl", "tl")."});");
390  $tpl->setVariable("SCRIPT3",
391  "il.Util.addOnLoad(function () {".
392  $overlays[$ov_id]->getTriggerOnLoadCode("glo_ov_t".$term_id, "click", $this->getGlossaryOverviewId(), false, "tl", "tl")."});");
393  }
394  }
395 
396  $tpl->parseCurrentBlock();
397  }
398  }
399  }
400 
401  if ($glossary && $this->scorm_mode != "export")
402  {
403  $ret = $a_output.$tpl->get();
404  if ($this->getGlossaryOverviewId() != "")
405  {
407  }
408  return $ret;
409  }
410  }
411 
412  return $a_output;
413  }
414 
418  static function initExport()
419  {
420  self::$export_glo_tpl = new ilTemplate("tpl.glossary_entries.html", true, true, "Modules/Scorm2004");
421  }
422 
426  static function getGlossaryHTML($a_sco)
427  {
428  $ret = self::$export_glo_tpl->get();
429 
431 
432  return $ret;
433  }
434 
435 }
436 ?>
$target_arr
Definition: goto.php:86
const IL_PAGE_PREVIEW
enableNotes($a_enabled, $a_parent_id)
getPageObject()
Get Page Object.
setTemplateOutput($a_output=true)
showPage($a_mode="preview")
Show the page.
setDefaultLinkXml()
Set standard link xml (currently only glossaries)
setGlossaryOverviewInfo($a_ov_id, $a_sco)
Set glossary overview id.
Class ilPageObjectGUI.
initSelfAssessmentRendering()
Init question handling.
static getGloOverviewOv($a_sco)
des
$cmd
Definition: sahs_server.php:35
$target_id
Definition: goto.php:88
setPageObject($a_pg_obj)
Set Page Object.
global $ilCtrl
Definition: ilias.php:18
getQuestionHtmlOfPage()
Get question html for page.
determineFileDownloadLink()
Determine file download link.
special template class to simplify handling of ITX/PEAR
& executeCommand()
execute command
& _getQuestionGUI($question_type, $question_id=-1)
Creates a question gui representation and returns the alias to the question gui note: please do not u...
__construct($a_parent_type, $a_id=0, $a_old_nr=0, $a_slm_id=0, $a_glo_id=0)
Constructor.
This is a utility class for the yui overlays.
GUI class for glossary terms.
getSCORM2004Page()
Get SCORM2004 Page Object.
static _lookupType($a_id, $a_reference=false)
lookup object type
selfAssessmentRendering($a_output)
Self assessment question rendering.
setSCORM2004Page($a_scpage)
Set SCORM2004 Page Object.
getAffectiveLocalization($a_id)
Get affective localization.
Class ilSCORM2004Page GUI class.
static getGlossaryHTML($a_sco)
Get glossary html (only in export mode)
_lookupFileName($a_id)
postOutputProcessing($a_output)
Post output processing:
getGlossaryOverviewId()
Get glossary overview id.
static initExport()
Init export.