63 $this->spl_id = $a_spl_id;
64 $this->has_error =
false;
65 $this->characterbuffer =
"";
66 $this->survey_status = 0;
67 $this->activetag =
"";
68 $this->material = array();
69 $this->depth = array();
70 $this->path = array();
71 $this->metadata = array();
72 $this->responses = array();
73 $this->variables = array();
74 $this->response_id =
"";
75 $this->matrix = array();
76 $this->is_matrix =
false;
77 $this->adjectives = array();
80 $this->in_survey =
false;
81 $this->anonymisation = 0;
82 $this->surveyaccess =
"restricted";
83 $this->questions = array();
84 $this->original_question_id =
"";
85 $this->constraints = array();
86 $this->textblock =
"";
87 $this->textblocks = array();
88 $this->in_questionblock =
false;
89 $this->questionblocks = array();
90 $this->questionblock = array();
91 $this->showQuestiontext = 1;
92 $this->questionblocktitle =
"";
93 $this->mapping = $a_mapping;
102 $this->survey = $a_svy;
112 xml_set_object($a_xml_parser, $this);
113 xml_set_element_handler($a_xml_parser,
'handlerBeginTag',
'handlerEndTag');
114 xml_set_character_data_handler($a_xml_parser,
'handlerCharacterData');
122 parent::startParsing();
130 public function parse($a_xml_parser, $a_fp = null)
135 while (
$data = fread($a_fp, 4096)) {
136 $parseOk = xml_parse($a_xml_parser,
$data, feof($a_fp));
145 && (xml_get_error_code($a_xml_parser) != XML_ERROR_NONE)) {
146 $this->error_code = xml_get_error_code($a_xml_parser);
147 $this->error_line = xml_get_current_line_number($a_xml_parser);
148 $this->error_col = xml_get_current_column_number($a_xml_parser);
149 $this->error_msg = xml_error_string($a_xml_parser);
150 $this->has_error =
true;
158 if ($this->depth[$a_xml_parser] > 0) {
159 return $this->path[$this->depth[$a_xml_parser] - 1];
170 $this->depth[$a_xml_parser]++;
171 $this->path[$this->depth[$a_xml_parser]] = strtolower($a_name);
172 $this->characterbuffer =
"";
173 $this->activetag = $a_name;
175 $this->attributes += count($a_attribs);
177 case "questionblock":
178 $this->in_questionblock =
true;
179 $this->questionblock = array();
180 $this->questionblocktitle =
"";
181 $this->showQuestiontext = 1;
182 foreach ($a_attribs as
$attrib => $value) {
184 case "showQuestiontext":
185 $this->showQuestiontext = $value;
190 case "surveyquestions":
191 foreach ($a_attribs as
$attrib => $value) {
194 if ($this->spl_id > 0) {
196 $spl->setOnline($value);
204 $this->in_survey =
true;
205 foreach ($a_attribs as
$attrib => $value) {
208 if (is_object($this->survey)) {
209 $this->survey->setTitle($value);
210 $this->survey->update(
true);
216 case "anonymisation":
217 foreach ($a_attribs as
$attrib => $value) {
220 $this->anonymisation = $value;
226 foreach ($a_attribs as
$attrib => $value) {
229 $this->surveyaccess = $value;
238 "sourceref" => $a_attribs[
"sourceref"],
239 "destref" => $a_attribs[
"destref"],
240 "relation" => $a_attribs[
"relation"],
241 "value" => $a_attribs[
"value"],
244 "conjunction" => (
int) $a_attribs[
"conjuction"]
250 $type = $a_attribs[
"type"];
253 case 'SurveyNominalQuestion':
254 $type =
'SurveyMultipleChoiceQuestion';
255 foreach ($a_attribs as $key => $value) {
259 $type =
'SurveySingleChoiceQuestion';
261 $type =
'SurveyMultipleChoiceQuestion';
267 case 'SurveyOrdinalQuestion':
268 $type =
'SurveySingleChoiceQuestion';
273 $this->activequestion =
new $type();
276 $q_obj_id = $this->spl_id;
277 if ($this->spl_id < 0) {
278 $q_obj_id = $this->survey->getId();
281 $this->activequestion->setObjId($q_obj_id);
284 $this->activequestion = null;
286 $this->original_question_id = $a_attribs[
"id"];
287 if ($this->in_questionblock) {
288 array_push($this->questionblock, $this->original_question_id);
290 if (is_object($this->activequestion)) {
291 foreach ($a_attribs as $key => $value) {
294 $this->activequestion->setTitle($value);
297 $this->activequestion->setSubtype($value);
300 $this->activequestion->setObligatory($value);
307 switch ($this->
getParent($a_xml_parser)) {
310 $this->material = array();
313 array_push($this->material, array(
"text" =>
"",
"image" =>
"",
"label" => $a_attribs[
"label"]));
317 if (array_key_exists(
"label", $a_attribs)) {
318 if (preg_match(
"/(il_([0-9]+)_mob_([0-9]+))/", $a_attribs[
"label"], $matches)) {
320 if (!is_array(
$_SESSION[
"import_mob_xhtml"])) {
323 array_push(
$_SESSION[
"import_mob_xhtml"], array(
"mob" => $a_attribs[
"label"],
"uri" => $a_attribs[
"uri"],
"type" => $a_attribs[
"type"],
"id" => $a_attribs[
"id"]));
328 $this->metadata = array();
330 case "metadatafield":
331 array_push($this->metadata, array(
"label" =>
"",
"entry" =>
""));
334 $this->is_matrix =
true;
335 $this->matrix = array();
338 $this->material = array();
339 array_push($this->matrix,
"");
340 $this->matrixrowattribs = array(
"id" => $a_attribs[
"id"],
"label" => $a_attribs[
"label"],
"other" => $a_attribs[
"other"]);
343 $this->material = array();
344 $this->responses = array();
347 $this->variables = array();
349 case "response_single":
350 $this->material = array();
351 $this->responses[$a_attribs[
"id"]] = array(
"type" =>
"single",
"id" => $a_attribs[
"id"],
"label" => $a_attribs[
"label"],
"other" => $a_attribs[
"other"],
"neutral" => $a_attribs[
"neutral"],
"scale" => $a_attribs[
"scale"]);
352 $this->response_id = $a_attribs[
"id"];
354 case "response_multiple":
355 $this->material = array();
356 $this->responses[$a_attribs[
"id"]] = array(
"type" =>
"multiple",
"id" => $a_attribs[
"id"],
"label" => $a_attribs[
"label"],
"other" => $a_attribs[
"other"],
"neutral" => $a_attribs[
"neutral"],
"scale" => $a_attribs[
"scale"]);
357 $this->response_id = $a_attribs[
"id"];
359 case "response_text":
360 $this->material = array();
361 $this->responses[$a_attribs[
"id"]] = array(
"type" =>
"text",
"id" => $a_attribs[
"id"],
"columns" => $a_attribs[
"columns"],
"maxlength" => $a_attribs[
"maxlength"],
"rows" => $a_attribs[
"rows"],
"label" => $a_attribs[
"label"]);
362 $this->response_id = $a_attribs[
"id"];
365 $this->material = array();
366 $this->responses[$a_attribs[
"id"]] = array(
"type" =>
"num",
"id" => $a_attribs[
"id"],
"format" => $a_attribs[
"format"],
"max" => $a_attribs[
"max"],
"min" => $a_attribs[
"min"],
"size" => $a_attribs[
"size"],
"label" => $a_attribs[
"label"]);
367 $this->response_id = $a_attribs[
"id"];
369 case "response_time":
370 $this->material = array();
371 $this->responses[$a_attribs[
"id"]] = array(
"type" =>
"time",
"id" => $a_attribs[
"id"],
"format" => $a_attribs[
"format"],
"max" => $a_attribs[
"max"],
"min" => $a_attribs[
"min"],
"label" => $a_attribs[
"label"]);
372 $this->response_id = $a_attribs[
"id"];
374 case "bipolar_adjectives":
375 $this->adjectives = array();
378 array_push($this->adjectives, array(
"label" => $a_attribs[
"label"],
"text" =>
""));
389 $this->text_size += strlen($a_data);
390 $this->characterbuffer .= $a_data;
401 if (is_object($this->survey)) {
402 $this->survey->setOfflineStatus(!$this->survey_status);
403 $this->survey->saveToDb();
406 if (count($this->questionblocks)) {
407 foreach ($this->questionblocks as
$data) {
409 $title = $data[
"title"];
412 array_push($qblock, $this->questions[$question_id]);
414 $this->survey->createQuestionblock($title, $this->showQuestiontext,
false, $qblock);
419 if (count($this->constraints)) {
420 $relations = $this->survey->getAllRelations(
true);
421 foreach ($this->constraints as $constraint) {
422 $constraint_id = $this->survey->addConstraint($this->questions[$constraint[
"destref"]], $relations[$constraint[
"relation"]][
"id"], $constraint[
"value"], $constraint[
"conjunction"]);
423 $this->survey->addConstraintToQuestion($this->questions[$constraint[
"sourceref"]], $constraint_id);
428 if (count($this->textblocks)) {
429 foreach ($this->textblocks as $original_id =>
$textblock) {
430 $this->survey->saveHeading(
$textblock, $this->questions[$original_id]);
436 $this->in_survey =
false;
437 if (is_object($this->survey)) {
438 if (strcmp($this->surveyaccess,
"free") == 0) {
439 $this->survey->setAnonymize(2);
441 if ($this->anonymisation == 0) {
442 $this->survey->setAnonymize(0);
444 $this->survey->setAnonymize(1);
450 if (preg_match(
"/(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2}).*/", $this->characterbuffer, $matches)) {
451 if (is_object($this->survey)) {
452 $this->survey->setStartDate(sprintf(
"%04d%02d%02d%02d%02d%02d", $matches[1], $matches[2], $matches[3], $matches[4], $matches[5], $matches[6]));
457 if (preg_match(
"/(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2}).*/", $this->characterbuffer, $matches)) {
458 if (is_object($this->survey)) {
459 $this->survey->setEndDate(sprintf(
"%04d%02d%02d%02d%02d%02d", $matches[1], $matches[2], $matches[3], $matches[4], $matches[5], $matches[6]));
464 if ($this->in_survey) {
465 if (is_object($this->survey)) {
466 $this->survey->setDescription($this->characterbuffer);
467 $this->survey->update(
true);
470 if (is_object($this->activequestion)) {
471 $this->activequestion->setDescription($this->characterbuffer);
476 if (is_object($this->activequestion)) {
477 if (strlen($this->textblock)) {
480 $this->activequestion->saveToDb();
482 if (is_object($this->survey) &&
484 $question_id = $this->activequestion->duplicate(
true,
"",
"",
"", $this->survey->getId());
486 $question_id = $this->activequestion->getId();
488 if (is_object($this->survey)) {
489 $this->survey->addQuestion($question_id);
492 if ($this->mapping) {
493 $this->mapping->addMapping(
"Modules/Survey",
"svy_q", $this->original_question_id, $question_id);
495 $this->activequestion = null;
497 $this->textblock =
"";
500 if ($this->in_survey) {
501 if (is_object($this->survey)) {
502 $this->survey->setAuthor($this->characterbuffer);
505 if (is_object($this->activequestion)) {
506 $this->activequestion->setAuthor($this->characterbuffer);
517 if ($this->in_survey) {
518 if (strcmp($this->
getParent($a_xml_parser),
"objectives") == 0) {
519 if (strcmp($this->material[0][
"label"],
"introduction") == 0) {
520 if (is_object($this->survey)) {
521 $this->survey->setIntroduction($this->material[0][
"text"]);
524 if (strcmp($this->material[0][
"label"],
"outro") == 0) {
525 if (is_object($this->survey)) {
526 $this->survey->setOutro($this->material[0][
"text"]);
529 $this->material = array();
532 if (strcmp($this->
getParent($a_xml_parser),
"question") == 0) {
533 $this->activequestion->setMaterial($this->material[0][
"text"],
true, $this->material[0][
"label"]);
538 if (is_object($this->activequestion)) {
540 foreach ($this->material as $matarray) {
541 $questiontext .= $matarray[
"text"];
543 $this->activequestion->setQuestiontext($questiontext);
545 $this->material = array();
554 if (strcmp($this->
getParent($a_xml_parser),
"question") == 0) {
555 if (is_object($this->activequestion)) {
556 $this->activequestion->importAdditionalMetadata($this->metadata);
559 if (strcmp($this->
getParent($a_xml_parser),
"survey") == 0) {
560 foreach ($this->metadata as $key => $value) {
561 switch ($value[
"label"]) {
563 if (strlen($value[
"entry"])) {
564 if (is_object($this->survey)) {
566 $md_sax_parser->setXMLContent($value[
"entry"]);
567 $md_sax_parser->setMDObject($tmp =
new ilMD($this->survey->getId(), 0,
"svy"));
568 $md_sax_parser->enableMDParsing(
true);
569 $md_sax_parser->startParsing();
570 $this->survey->MDUpdateListener(
"General");
574 case "display_question_titles":
575 if ($value[
"entry"] == 1) {
576 $this->survey->showQuestionTitles();
578 $this->survey->hideQuestionTitles();
582 $this->survey_status = $value[
"entry"];
584 case "evaluation_access":
585 $this->survey->setEvaluationAccess($value[
"entry"]);
588 $this->survey->setPoolUsage($value[
"entry"]);
590 case "own_results_view":
591 $this->survey->setViewOwnResults($value[
"entry"]);
593 case "own_results_mail":
594 $this->survey->setMailOwnResults($value[
"entry"]);
596 case "confirmation_mail":
597 $this->survey->setMailConfirmation($value[
"entry"]);
599 case "anon_user_list":
600 $this->survey->setAnonymousUserList($value[
"entry"]);
603 $this->survey->setMode($value[
"entry"]);
605 case "mode_360_self_eval":
606 $this->survey->set360SelfEvaluation($value[
"entry"]);
608 case "mode_360_self_rate":
609 $this->survey->set360SelfRaters($value[
"entry"]);
611 case "mode_360_self_appr":
612 $this->survey->set360SelfAppraisee($value[
"entry"]);
614 case "mode_360_results":
615 $this->survey->set360Results($value[
"entry"]);
617 case "mode_self_eval_results":
618 $this->survey->setSelfEvaluationResults($value[
"entry"]);
620 case "mode_skill_service":
621 $this->survey->setSkillService($value[
"entry"]);
626 if (!$this->spl_exists) {
627 if (strcmp($this->
getParent($a_xml_parser),
"surveyquestions") == 0) {
628 foreach ($this->metadata as $key => $value) {
629 if (strcmp($value[
"label"],
"SCORM") == 0) {
630 if (strlen($value[
"entry"])) {
631 if ($this->spl_id > 0) {
633 $md_sax_parser->setXMLContent($value[
"entry"]);
634 $md_sax_parser->setMDObject($tmp =
new ilMD($this->spl_id, 0,
"spl"));
635 $md_sax_parser->enableMDParsing(
true);
636 $md_sax_parser->startParsing();
638 $spl->MDUpdateListener(
"General");
647 if (is_object($this->activequestion)) {
648 $this->activequestion->importResponses($this->responses);
650 $this->is_matrix =
false;
653 array_push($this->variables, $this->characterbuffer);
656 if (is_object($this->activequestion)) {
657 $this->activequestion->importVariables($this->variables);
660 case "response_single":
661 case "response_multiple":
662 case "response_text":
664 case "response_time":
670 case "bipolar_adjectives":
671 if (is_object($this->activequestion)) {
672 $this->activequestion->importAdjectives($this->adjectives);
678 $row .= $material[
"text"];
680 $this->matrix[count($this->matrix) - 1] = array(
'title' => $row,
'id' => $this->matrixrowattribs[
'id'],
'label' => $this->matrixrowattribs[
'label'],
'other' => $this->matrixrowattribs[
'other']);
683 if (is_object($this->activequestion)) {
684 $this->activequestion->importMatrix($this->matrix);
690 case "questionblocktitle":
693 case "questionblock":
694 $this->in_questionblock =
false;
695 array_push($this->questionblocks, array(
"title" => $this->questionblocktitle,
"questions" => $this->questionblock));
698 $this->depth[$a_xml_parser]--;
723 return "Error: " . $this->error_msg .
" at line:" . $this->error_line .
" column:" .
$this->error_col;
parse($a_xml_parser, $a_fp=null)
parse xml file
Class ilObjSurveyQuestionPool.
handlerEndTag($a_xml_parser, $a_name)
handler for end of element
handlerBeginTag($a_xml_parser, $a_name, $a_attribs)
handler for begin of element
static _includeClass($question_type, $gui=0)
Include the php class file for a given question type.
setSurveyObject($a_svy)
Sets a reference to a survey object public.
Survey Question Import Parser.
Base class for sax-based expat parsing extended classes need to overwrite the method setHandlers and ...
startParsing()
start the parser
__construct($a_spl_id, $a_xml_file='', $spl_exists=false, $a_mapping=null)
Constructor.
handlerCharacterData($a_xml_parser, $a_data)
handler for character data
__construct(Container $dic, ilPlugin $plugin)
setHandlers($a_xml_parser)
set event handler should be overwritten by inherited class private
$attrib
Regular expression to match HTML/XML attribute pairs within a tag.