ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
All Data Structures Namespaces Files Functions Variables Modules Pages
ilQuestionExporter Class Reference

Scorm 2004 Question Exporter. More...

+ Collaboration diagram for ilQuestionExporter:

Public Member Functions

 ilQuestionExporter ($a_preview_mode=false)
 Constructor public. More...
 
 exportQuestion ($a_ref_id, $a_image_path=null, $a_output_mode="presentation")
 

Static Public Member Functions

static indicateNewSco ()
 
static getMobs ()
 
static getFiles ()
 
static questionsJS (array $a_qids=null)
 

Data Fields

 $db
 
 $ilias
 
 $ref_id
 
 $inst_id
 
 $q_gui
 
 $tpl
 
 $json
 
 $json_decoded
 
 $preview_mode
 

Static Public Attributes

static $exported = array()
 
static $mobs = array()
 
static $media_files = array()
 

Private Member Functions

 setHeaderFooter ()
 
 assSingleChoice ()
 
 assMultipleChoice ()
 
 assKprimChoice ()
 
 assTextQuestion ()
 
 assClozeTest ()
 
 assOrderingQuestion ()
 
 assMatchingQuestion ()
 
 assImagemapQuestion ()
 
 assTextSubset ()
 
 assOrderingHorizontal ()
 
 assErrorText ()
 

Detailed Description

Scorm 2004 Question Exporter.

Author
Hendrik Holtmann holtm.nosp@m.ann@.nosp@m.me.co.nosp@m.m
Version
Id
class.ilQuestionExporter.php 12658 2006-11-29 08:51:48Z akill

Definition at line 16 of file class.ilQuestionExporter.php.

Member Function Documentation

◆ assClozeTest()

ilQuestionExporter::assClozeTest ( )
private

Definition at line 243 of file class.ilQuestionExporter.php.

243  {
244  $this->tpl->setCurrentBlock("clozequestion");
245  $this->tpl->setVariable("VAL_ID", $this->json_decoded->id);
246  $this->tpl->setVariable("TXT_SUBMIT_ANSWERS", $this->lng->txt("cont_submit_answers"));
247  if ($this->preview_mode) {
248  $this->tpl->setVariable("VAL_NO_DISPLAY", "style=\"display:none\"");
249  }
250  $this->tpl->parseCurrentBlock();
251 // $this->setHeaderFooter();
252  return $this->tpl->get();
253  }

◆ assErrorText()

ilQuestionExporter::assErrorText ( )
private

Definition at line 349 of file class.ilQuestionExporter.php.

349  {
350  $this->tpl->setCurrentBlock("errortext");
351  $this->tpl->setVariable("VAL_ID", $this->json_decoded->id);
352  $this->tpl->setVariable("TXT_SUBMIT_ANSWERS", $this->lng->txt("cont_submit_answers"));
353  if ($this->preview_mode) {
354  $this->tpl->setVariable("VAL_NO_DISPLAY", "style=\"display:none\"");
355  }
356  $this->tpl->parseCurrentBlock();
357 // $this->setHeaderFooter();
358  return $this->tpl->get();
359  }

◆ assImagemapQuestion()

ilQuestionExporter::assImagemapQuestion ( )
private

Definition at line 300 of file class.ilQuestionExporter.php.

300  {
301  $this->tpl->setVariable("TXT_SUBMIT_ANSWERS", $this->lng->txt("cont_submit_answers"));
302  array_push(self::$media_files,$this->q_gui->object->getImagePath().$this->q_gui->object->getImageFilename());
303  $this->tpl->setCurrentBlock("mapareas");
304  $areas = $this->json_decoded->answers;
305  //set areas in PHP cause of inteference between pure and highlighter
306  foreach ($areas as $area) {
307  $this->tpl->setVariable("VAL_TOOLTIP", htmlspecialchars($area->answertext));
308  $this->tpl->setVariable("VAL_COORDS", $area->coords);
309  $this->tpl->setVariable("VAL_ORDER", $area->order);
310  $this->tpl->setVariable("VAL_AREA", $area->area);
311  $this->tpl->setVariable("VAL_ID", $this->json_decoded->id);
312  $this->tpl->parseCurrentBlock();
313  }
314  $this->tpl->setCurrentBlock("imagemapquestion");
315  $this->tpl->setVariable("VAL_ID", $this->json_decoded->id);
316  if ($this->preview_mode) {
317  $this->tpl->setVariable("VAL_NO_DISPLAY", "style=\"display:none\"");
318  }
319  $this->tpl->parseCurrentBlock();
320 // $this->setHeaderFooter();
321  return $this->tpl->get();
322  }

◆ assKprimChoice()

ilQuestionExporter::assKprimChoice ( )
private

Definition at line 186 of file class.ilQuestionExporter.php.

References $tpl.

187  {
188  global $tpl;
189  $tpl->addCss('Modules/Test/templates/default/ta.css');
190 
191  $this->tpl->setCurrentBlock("kprimchoice");
192 
193  $this->tpl->setVariable("TXT_SUBMIT_ANSWERS", $this->lng->txt("cont_submit_answers"));
194  $this->tpl->setVariable("VAL_ID", $this->json_decoded->id);
195 
196  if( $this->preview_mode )
197  {
198  $this->tpl->setVariable("VAL_NO_DISPLAY", "style=\"display:none\"");
199  }
200 
201  if( $this->json_decoded->path )
202  {
203  $this->tpl->setVariable("HANDLE_IMAGES",
204  "ilias.questions.handleMCImages(".$this->json_decoded->id.");");
205  }
206 
207  $this->tpl->setVariable('OPTION_LABEL_TRUE', $this->json_decoded->trueOptionLabel);
208  $this->tpl->setVariable('OPTION_LABEL_FALSE', $this->json_decoded->falseOptionLabel);
209 
210  $this->tpl->setVariable('VALUE_TRUE', 1);
211  $this->tpl->setVariable('VALUE_FALSE', 0);
212 
213  $this->tpl->parseCurrentBlock();
214 
215  foreach( $this->json_decoded->answers as $answer )
216  {
217  if( $answer->image != "" )
218  {
219  self::$media_files[] = $answer->getImageFsPath();
220  self::$media_files[] = $answer->getThumbFsPath();
221  }
222  }
223 
224  // $this->setHeaderFooter();
225 
226  return $this->tpl->get();
227  }

◆ assMatchingQuestion()

ilQuestionExporter::assMatchingQuestion ( )
private

Definition at line 284 of file class.ilQuestionExporter.php.

References $tpl.

284  {
285  global $tpl;
286  $tpl->addJavaScript('Modules/TestQuestionPool/js/ilMatchingQuestion.js');
287  $tpl->addCss('Modules/TestQuestionPool/templates/default/test_javascript.css');
288  $this->tpl->setCurrentBlock("matchingquestion");
289  $this->tpl->setVariable("VAL_ID", $this->json_decoded->id);
290  $this->tpl->setVariable("BTN_LABEL_RESET", $this->lng->txt("reset_terms"));
291  $this->tpl->setVariable("TXT_SUBMIT_ANSWERS", $this->lng->txt("cont_submit_answers"));
292  if ($this->preview_mode) {
293  $this->tpl->setVariable("VAL_NO_DISPLAY", "style=\"display:none\"");
294  }
295  $this->tpl->parseCurrentBlock();
296 // $this->setHeaderFooter();
297  return $this->tpl->get();
298  }

◆ assMultipleChoice()

ilQuestionExporter::assMultipleChoice ( )
private

Definition at line 162 of file class.ilQuestionExporter.php.

162  {
163  $this->tpl->setCurrentBlock("multiplechoice");
164  $this->tpl->setVariable("TXT_SUBMIT_ANSWERS", $this->lng->txt("cont_submit_answers"));
165  $this->tpl->setVariable("VAL_ID", $this->json_decoded->id);
166  if ($this->preview_mode) {
167  $this->tpl->setVariable("VAL_NO_DISPLAY", "style=\"display:none\"");
168  }
169  if($this->json_decoded->path)
170  {
171  $this->tpl->setVariable("HANDLE_IMAGES",
172  "ilias.questions.handleMCImages(".$this->json_decoded->id.");");
173  }
174  $this->tpl->parseCurrentBlock();
175  foreach ($this->json_decoded->answers as $answer) {
176  if ($answer->image!="") {
177  array_push(self::$media_files,$this->q_gui->object->getImagePath().$answer->image);
178  array_push(self::$media_files,$this->q_gui->object->getImagePath()."thumb.".$answer->image);
179  }
180  }
181 // $this->setHeaderFooter();
182  return $this->tpl->get();
183  }

◆ assOrderingHorizontal()

ilQuestionExporter::assOrderingHorizontal ( )
private

Definition at line 337 of file class.ilQuestionExporter.php.

337  {
338  $this->tpl->setCurrentBlock("orderinghorizontal");
339  $this->tpl->setVariable("VAL_ID", $this->json_decoded->id);
340  $this->tpl->setVariable("TXT_SUBMIT_ANSWERS", $this->lng->txt("cont_submit_answers"));
341  if ($this->preview_mode) {
342  $this->tpl->setVariable("VAL_NO_DISPLAY", "style=\"display:none\"");
343  }
344  $this->tpl->parseCurrentBlock();
345 // $this->setHeaderFooter();
346  return $this->tpl->get();
347  }

◆ assOrderingQuestion()

ilQuestionExporter::assOrderingQuestion ( )
private

Definition at line 255 of file class.ilQuestionExporter.php.

References OQ_PICTURES.

255  {
256  $this->tpl->setCurrentBlock("orderingquestion");
257  $this->tpl->setVariable("VAL_ID", $this->json_decoded->id);
258  $this->tpl->setVariable("TXT_SUBMIT_ANSWERS", $this->lng->txt("cont_submit_answers"));
259  if ($this->preview_mode) {
260  $this->tpl->setVariable("VAL_NO_DISPLAY", "style=\"display:none\"");
261  }
262  if($this->q_gui->object->getOrderingType() == OQ_PICTURES)
263  {
264  $this->tpl->setVariable("VAL_SUBTYPE", "_images");
265  $this->tpl->setVariable("HANDLE_IMAGES",
266  "ilias.questions.handleOrderingImages(".$this->json_decoded->id.");");
267 
268  foreach ($this->json_decoded->answers as $answer) {
269  if ($answer->answertext!="") {
270  array_push(self::$media_files,$this->q_gui->object->getImagePath().$answer->answertext);
271  array_push(self::$media_files,$this->q_gui->object->getImagePath()."thumb.".$answer->answertext);
272  }
273  }
274  }
275  else
276  {
277  $this->tpl->setVariable("VAL_SUBTYPE", "_terms");
278  }
279  $this->tpl->parseCurrentBlock();
280 // $this->setHeaderFooter();
281  return $this->tpl->get();
282  }
const OQ_PICTURES
Ordering question constants.

◆ assSingleChoice()

ilQuestionExporter::assSingleChoice ( )
private

Definition at line 135 of file class.ilQuestionExporter.php.

136  {
137  $this->tpl->setCurrentBlock("singlechoice");
138  $this->tpl->setVariable("TXT_SUBMIT_ANSWERS", $this->lng->txt("cont_submit_answers"));
139  $this->tpl->setVariable("VAL_ID", $this->json_decoded->id);
140  if ($this->preview_mode) {
141  $this->tpl->setVariable("VAL_NO_DISPLAY", "style=\"display:none\"");
142  }
143  if($this->json_decoded->path)
144  {
145  $this->tpl->setVariable("HANDLE_IMAGES",
146  "ilias.questions.handleMCImages(".$this->json_decoded->id.");");
147  }
148  $this->tpl->parseCurrentBlock();
149  foreach ($this->json_decoded->answers as $answer) {
150  if ($answer->image!="") {
151  array_push(self::$media_files,$this->q_gui->object->getImagePath().$answer->image);
152  if (is_file($this->q_gui->object->getImagePath()."thumb.".$answer->image))
153  {
154  array_push(self::$media_files,$this->q_gui->object->getImagePath()."thumb.".$answer->image);
155  }
156  }
157  }
158 // $this->setHeaderFooter();
159  return $this->tpl->get();
160  }

◆ assTextQuestion()

ilQuestionExporter::assTextQuestion ( )
private

Definition at line 229 of file class.ilQuestionExporter.php.

229  {
230  $maxlength = $this->json_decoded->maxlength == 0 ? 4096 : $this->json_decoded->maxlength;
231  $this->tpl->setCurrentBlock("textquestion");
232  $this->tpl->setVariable("VAL_ID", $this->json_decoded->id);
233  $this->tpl->setVariable("TXT_SUBMIT_ANSWERS", $this->lng->txt("cont_submit_answers"));
234  $this->tpl->setVariable("VAL_MAXLENGTH", $maxlength);
235  if ($this->preview_mode) {
236  $this->tpl->setVariable("VAL_NO_DISPLAY", "style=\"display:none\"");
237  }
238  $this->tpl->parseCurrentBlock();
239 // $this->setHeaderFooter();
240  return $this->tpl->get();
241  }

◆ assTextSubset()

ilQuestionExporter::assTextSubset ( )
private

Definition at line 324 of file class.ilQuestionExporter.php.

324  {
325  $this->tpl->setCurrentBlock("textsubset");
326  $this->tpl->setVariable("VAL_ID", $this->json_decoded->id);
327  $this->tpl->setVariable("TXT_SUBMIT_ANSWERS", $this->lng->txt("cont_submit_answers"));
328  $this->tpl->setVariable("VAL_MAXLENGTH", $maxlength);
329  if ($this->preview_mode) {
330  $this->tpl->setVariable("VAL_NO_DISPLAY", "style=\"display:none\"");
331  }
332  $this->tpl->parseCurrentBlock();
333 // $this->setHeaderFooter();
334  return $this->tpl->get();
335  }

◆ exportQuestion()

ilQuestionExporter::exportQuestion (   $a_ref_id,
  $a_image_path = null,
  $a_output_mode = "presentation" 
)

Definition at line 61 of file class.ilQuestionExporter.php.

References $json, $mobs, ilInternalLink\_extractInstOfTarget(), ilInternalLink\_extractObjIdOfTarget(), and assQuestionGUI\_getQuestionGUI().

61  {
62 
63  if ($a_ref_id != "")
64  {
66  if (!($inst_id > 0))
67  {
68  $q_id = ilInternalLink::_extractObjIdOfTarget($a_ref_id);
69  }
70  }
71 
72  $this->q_gui = assQuestionGUI::_getQuestionGUI("", $q_id);
73 
74  if (!is_object($this->q_gui->object))
75  {
76  return "Error: Question not found.";
77  }
78 
79  $type = $this->q_gui->object->getQuestionType();
80  if (method_exists($this,$type))
81  {
82  $this->q_gui->object->setExportImagePath($a_image_path);
83  $this->q_gui->object->feedbackOBJ->setPageObjectOutputMode($a_output_mode);
84  $this->json = $this->q_gui->object->toJSON();
85  $this->json_decoded = json_decode($this->json);
86  self::$exported[$this->json_decoded->id] = $this->json;
87  self::$mobs[$this->json_decoded->id] = $this->json_decoded->mobs;
88  return $this->$type();
89  } else {
90  return "Error: Question Type not implemented/Question editing not finished";
91  }
92  }
$mobs
& _getQuestionGUI($question_type, $question_id=-1)
Creates a question gui representation and returns the alias to the question gui note: please do not u...
+ Here is the call graph for this function:

◆ getFiles()

static ilQuestionExporter::getFiles ( )
static

Definition at line 110 of file class.ilQuestionExporter.php.

Referenced by ilSCORM2004Asset\exportHTMLPageObjects().

110  {
111  return self::$media_files;
112  }
+ Here is the caller graph for this function:

◆ getMobs()

static ilQuestionExporter::getMobs ( )
static

Definition at line 100 of file class.ilQuestionExporter.php.

References $mobs, and $mobs.

Referenced by ilSCORM2004Asset\exportHTMLPageObjects().

100  {
101  $allmobs = array();
102  foreach (self::$mobs as $key => $value) {
103  for ($i=0;$i<count($mobs[$key]);$i++) {
104  array_push($allmobs,$mobs[$key][$i]);
105  }
106  }
107  return $allmobs;
108  }
$mobs
+ Here is the caller graph for this function:

◆ ilQuestionExporter()

ilQuestionExporter::ilQuestionExporter (   $a_preview_mode = false)

Constructor public.

Definition at line 36 of file class.ilQuestionExporter.php.

References $ilDB, $ilias, and $lng.

37  {
38  global $ilDB, $ilias, $lng;
39 
40  $this->ref_id =& $a_ref_id;
41 
42  $this->db =& $ilDB;
43  $this->lng = $lng;
44 
45  $this->inst_id = IL_INST_ID;
46 
47  $this->preview_mode = $a_preview_mode;
48 
49  $this->tpl = new ilTemplate("tpl.question_export.html", true, true, "Modules/Scorm2004");
50 
51  // fix for bug 5386, alex 29.10.2009
52  if (!$a_preview_mode)
53  {
54  $this->tpl->setVariable("FORM_BEGIN", "<form onsubmit='return false;'>");
55  $this->tpl->setVariable("FORM_END", "</form>");
56  }
57 
58  }
special template class to simplify handling of ITX/PEAR
global $lng
Definition: privfeed.php:40
global $ilDB

◆ indicateNewSco()

static ilQuestionExporter::indicateNewSco ( )
static

Definition at line 94 of file class.ilQuestionExporter.php.

References $mobs.

Referenced by ilSCORM2004Asset\exportHTMLPageObjects().

94  {
95  self::$exported = array();
96  self::$mobs = array();
97  self::$media_files = array();
98  }
$mobs
+ Here is the caller graph for this function:

◆ questionsJS()

static ilQuestionExporter::questionsJS ( array  $a_qids = null)
static

Definition at line 114 of file class.ilQuestionExporter.php.

Referenced by ilSCORM2004Asset\exportHTMLPageObjects().

114  {
115  $exportstring = '';
116  if(!is_array($a_qids)) {
117  $exportstring ='var questions = new Array();';
118  }
119  foreach (self::$exported as $key => $value) {
120  if(!is_array($a_qids) || in_array($key, $a_qids)) {
121  $exportstring .= "questions[$key]= $value;";
122  }
123  }
124  return $exportstring;
125  }
+ Here is the caller graph for this function:

◆ setHeaderFooter()

ilQuestionExporter::setHeaderFooter ( )
private

Definition at line 127 of file class.ilQuestionExporter.php.

128  {
129  $this->tpl->setCurrentBlock("common");
130  $this->tpl->setVariable("VAL_ID", $this->json_decoded->id);
131  $this->tpl->setVariable("VAL_TYPE", $this->json_decoded->type);
132  $this->tpl->parseCurrentBlock();
133  }

Field Documentation

◆ $db

ilQuestionExporter::$db

Definition at line 22 of file class.ilQuestionExporter.php.

◆ $exported

ilQuestionExporter::$exported = array()
static

Definition at line 18 of file class.ilQuestionExporter.php.

◆ $ilias

ilQuestionExporter::$ilias

Definition at line 23 of file class.ilQuestionExporter.php.

Referenced by ilQuestionExporter().

◆ $inst_id

ilQuestionExporter::$inst_id

Definition at line 25 of file class.ilQuestionExporter.php.

◆ $json

ilQuestionExporter::$json

Definition at line 28 of file class.ilQuestionExporter.php.

Referenced by exportQuestion().

◆ $json_decoded

ilQuestionExporter::$json_decoded

Definition at line 29 of file class.ilQuestionExporter.php.

◆ $media_files

ilQuestionExporter::$media_files = array()
static

Definition at line 20 of file class.ilQuestionExporter.php.

◆ $mobs

ilQuestionExporter::$mobs = array()
static

Definition at line 19 of file class.ilQuestionExporter.php.

Referenced by getMobs().

◆ $preview_mode

ilQuestionExporter::$preview_mode

Definition at line 30 of file class.ilQuestionExporter.php.

◆ $q_gui

ilQuestionExporter::$q_gui

Definition at line 26 of file class.ilQuestionExporter.php.

◆ $ref_id

ilQuestionExporter::$ref_id

Definition at line 24 of file class.ilQuestionExporter.php.

◆ $tpl

ilQuestionExporter::$tpl

Definition at line 27 of file class.ilQuestionExporter.php.

Referenced by assKprimChoice(), and assMatchingQuestion().


The documentation for this class was generated from the following file: