178 $this->cumulated = array();
181 $this->author = $this->
ilias->account->fullname;
184 if ($this->owner == -1)
186 $this->owner = $this->
ilias->account->id;
189 $this->survey_id = -1;
190 $this->obligatory = 1;
191 $this->orientation = 0;
192 $this->materials = array();
193 $this->material = array();
194 $this->arrData = array();
195 register_shutdown_function(array(&$this,
'_SurveyQuestion'));
210 $this->complete = ($a_complete) ? 1 : 0;
237 if (strcmp($questionpool_object,
"") != 0)
239 $refwhere = sprintf(
" AND obj_fi = %s",
240 $ilDB->quote($questionpool_object,
'integer')
243 $result = $ilDB->queryF(
"SELECT question_id FROM svy_question WHERE title = %s$refwhere",
247 return ($result->numRows() > 0) ?
true :
false;
307 $this->survey_id =
$id;
333 if (empty($materials_name))
335 $materials_name = $materials_file;
337 if ((!empty($materials_name))&&(!array_key_exists($materials_name, $this->materials)))
339 $this->materials[$materials_name] = $materials_file;
350 function setMaterialsfile($materials_filename, $materials_tempfilename=
"", $materials_name=
"")
352 if (!empty($materials_filename))
354 include_once
"./Services/Utilities/classes/class.ilUtil.php";
356 if (!file_exists($materialspath))
362 $materialspath.$materials_filename))
364 print
"image not uploaded!!!! ";
368 $this->
addMaterials($materials_filename, $materials_name);
382 foreach ($this->materials as $key => $value)
384 if (strcmp($key, $materials_name)==0)
390 unset($this->materials[$key]);
403 $this->materials = array();
417 $author = $this->
ilias->account->fullname;
482 $result = $ilDB->queryF(
"SELECT * FROM svy_qst_oblig WHERE survey_fi = %s AND question_fi = %s",
483 array(
'integer',
'integer'),
484 array($survey_id, $this->
getId())
489 return (
$row[
"obligatory"]) ? 1 : 0;
493 return ($this->obligatory) ? 1 : 0;
498 return ($this->obligatory) ? 1 : 0;
523 switch ($this->orientation)
530 $this->orientation = 0;
546 return (strlen($this->description)) ? $this->description : NULL;
558 return (strlen($this->author)) ? $this->author : NULL;
582 return (strlen($this->questiontext)) ? $this->questiontext : NULL;
613 function duplicate($for_survey =
true, $title =
"", $author =
"", $owner =
"")
615 if ($this->
getId() <= 0)
622 $original_id = $this->
getId();
626 $clone->setTitle($title);
630 $clone->setAuthor($author);
634 $clone->setOwner($owner);
638 $clone->saveToDb($original_id);
645 $clone->duplicateMaterials($original_id);
647 $clone->copyXHTMLMediaObjectsOfQuestion($original_id);
648 return $clone->getId();
658 if ($this->
getId() <= 0)
666 $source_questionpool = $this->
getObjId();
667 $clone->setObjId($target_questionpool);
670 $clone->setTitle($title);
676 $clone->duplicateMaterials($original_id);
678 $clone->copyXHTMLMediaObjectsOfQuestion($original_id);
679 return $clone->getId();
690 include_once(
"./Services/MediaObjects/classes/class.ilObjMediaObject.php");
692 foreach (
$mobs as $mob)
708 $result = $ilDB->queryF(
"SELECT * FROM svy_material WHERE question_fi = %s",
710 array($this->
getId())
712 $this->material = array();
715 include_once
"./Modules/SurveyQuestionPool/classes/class.ilSurveyMaterial.php";
719 $mat->type =
$row[
'material_type'];
720 $mat->internal_link =
$row[
'internal_link'];
721 $mat->title =
$row[
'material_title'];
722 $mat->import_id =
$row[
'import_id'];
723 $mat->text_material =
$row[
'text_material'];
724 $mat->external_link =
$row[
'external_link'];
725 $mat->file_material =
$row[
'file_material'];
726 array_push($this->material, $mat);
741 $result = $ilDB->queryF(
"SELECT complete FROM svy_question WHERE question_id = %s",
748 if (
$row[
"complete"] == 1)
765 $question_id = $this->
getId();
766 if (strlen($original_id))
768 $question_id = $original_id;
771 if ($this->
getId() > 0)
774 $affectedRows = $ilDB->manipulateF(
"UPDATE svy_question SET complete = %s, tstamp = %s WHERE question_id = %s",
775 array(
'text',
'integer',
'integer'),
776 array($this->
isComplete(), time(), $question_id)
792 include_once(
"./Services/RTE/classes/class.ilRTE.php");
795 if ($this->
getId() == -1)
798 $next_id = $ilDB->nextId(
'svy_question');
799 $affectedRows = $ilDB->insert(
"svy_question", array(
800 "question_id" => array(
"integer", $next_id),
802 "obj_fi" => array(
"integer", $this->
getObjId()),
803 "owner_fi" => array(
"integer", $this->
getOwner()),
804 "title" => array(
"text", $this->
getTitle()),
805 "label" => array(
"text", (strlen($this->label)) ? $this->label : null),
807 "author" => array(
"text", $this->
getAuthor()),
810 "complete" => array(
"text", $this->
isComplete()),
811 "created" => array(
"integer", time()),
812 "original_id" => array(
"integer", ($original_id) ? $original_id : NULL),
813 "tstamp" => array(
"integer", time())
815 $this->
setId($next_id);
820 $affectedRows = $ilDB->update(
"svy_question", array(
821 "title" => array(
"text", $this->
getTitle()),
822 "label" => array(
"text", (strlen($this->label)) ? $this->label : null),
824 "author" => array(
"text", $this->
getAuthor()),
827 "complete" => array(
"text", $this->
isComplete()),
828 "tstamp" => array(
"integer", time())
830 "question_id" => array(
"integer", $this->
getId())
835 $set = $ilDB->query(
"SELECT survey_id FROM svy_svy".
836 " WHERE obj_fi = ".$ilDB->quote($this->getObjId(),
"integer"));
837 $survey_fi = $ilDB->fetchAssoc($set);
838 $survey_fi = $survey_fi[
"survey_id"];
843 $set = $ilDB->query(
"SELECT obligatory FROM svy_qst_oblig".
844 " WHERE survey_fi = ".$ilDB->quote($survey_fi,
"integer").
845 " AND question_fi = ".$ilDB->quote($this->
getId(),
"integer"));
846 $has_obligatory_states_entry = (bool)$ilDB->numRows($set);
847 $is_obligatory = $ilDB->fetchAssoc($set);
848 $is_obligatory = (bool)$is_obligatory[
"obligatory"];
852 if($has_obligatory_states_entry)
854 $ilDB->manipulate(
"DELETE FROM svy_qst_oblig".
855 " WHERE survey_fi = ".$ilDB->quote($survey_fi,
"integer").
856 " AND question_fi = ".$ilDB->quote($this->
getId(),
"integer"));
861 if(!$has_obligatory_states_entry)
864 $next_id = $ilDB->nextId(
'svy_qst_oblig');
865 $affectedRows = $ilDB->manipulateF(
"INSERT INTO svy_qst_oblig (question_obligatory_id, survey_fi, question_fi, " .
866 "obligatory, tstamp) VALUES (%s, %s, %s, %s, %s)",
867 array(
'integer',
'integer',
'integer',
'text',
'integer'),
868 array($next_id, $survey_fi, $this->
getId(), 1, time())
871 else if(!$is_obligatory)
873 $ilDB->manipulate(
"UPDATE svy_qst_oblig".
874 " SET obligatory = ".$ilDB->quote(1,
"integer").
875 " WHERE survey_fi = ".$ilDB->quote($survey_fi,
"integer").
876 " AND question_fi = ".$ilDB->quote($this->
getId(),
"integer"));
881 return $affectedRows;
891 include_once
"./Services/Link/classes/class.ilInternalLink.php";
892 $affectedRows = $ilDB->manipulateF(
"DELETE FROM svy_material WHERE question_fi = %s",
894 array($this->
getId())
898 foreach ($this->material as $material)
900 $next_id = $ilDB->nextId(
'svy_material');
901 $affectedRows = $ilDB->manipulateF(
"INSERT INTO svy_material " .
902 "(material_id, question_fi, internal_link, import_id, material_title, tstamp," .
903 "text_material, external_link, file_material, material_type) ".
904 "VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
905 array(
'integer',
'integer',
'text',
'text',
'text',
'integer',
'text',
'text',
'text',
'integer'),
907 $next_id, $this->
getId(), $material->internal_link, $material->import_id,
908 $material->title, time(), $material->text_material, $material->external_link,
909 $material->file_material, $material->type)
911 if (preg_match(
"/il_(\d*?)_(\w+)_(\d+)/", $material->internal_link, $matches))
931 $next_id = $ilDB->nextId(
'svy_question');
932 $affectedRows = $ilDB->manipulateF(
"INSERT INTO svy_question (question_id, questiontype_fi, " .
933 "obj_fi, owner_fi, title, description, author, questiontext, obligatory, complete, " .
934 "created, original_id, tstamp) VALUES " .
935 "(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
936 array(
'integer',
'integer',
'integer',
'integer',
'text',
'text',
'text',
'text',
937 'text',
'text',
'integer',
'integer',
'integer'),
954 $this->
setId($next_id);
956 return $this->
getId();
977 return CLIENT_WEB_DIR .
"/survey/$this->obj_id/$this->id/images/";
988 return CLIENT_WEB_DIR .
"/survey/$this->obj_id/$this->id/materials/";
999 include_once
"./Services/Utilities/classes/class.ilUtil.php";
1012 include_once
"./Services/Utilities/classes/class.ilUtil.php";
1029 $result = $ilDB->queryF(
"SELECT title, category_id FROM svy_category WHERE title = %s AND neutral = %s AND owner_fi = %s",
1030 array(
'text',
'text',
'integer'),
1031 array($categorytext, $neutral, $ilUser->getId())
1040 if (strcmp(
$row[
"title"], $categorytext) == 0)
1042 $returnvalue =
$row[
"category_id"];
1053 $next_id = $ilDB->nextId(
'svy_category');
1054 $affectedRows = $ilDB->manipulateF(
"INSERT INTO svy_category (category_id, title, neutral, owner_fi, tstamp) VALUES (%s, %s, %s, %s, %s)",
1055 array(
'integer',
'text',
'text',
'integer',
'integer'),
1056 array($next_id, $categorytext, $neutral, $ilUser->getId(), time())
1058 $returnvalue = $next_id;
1060 return $returnvalue;
1072 $affectedRows = $ilDB->manipulateF(
"DELETE FROM " . $this->getAdditionalTableName() .
" WHERE question_fi = %s",
1084 function delete($question_id)
1088 if ($question_id < 1)
return;
1090 $result = $ilDB->queryF(
"SELECT obj_fi FROM svy_question WHERE question_id = %s",
1097 $obj_id =
$row[
"obj_fi"];
1104 $affectedRows = $ilDB->manipulateF(
"DELETE FROM svy_answer WHERE question_fi = %s",
1109 $affectedRows = $ilDB->manipulateF(
"DELETE FROM svy_constraint WHERE question_fi = %s",
1114 $result = $ilDB->queryF(
"SELECT constraint_fi FROM svy_qst_constraint WHERE question_fi = %s",
1120 $affectedRows = $ilDB->manipulateF(
"DELETE FROM svy_constraint WHERE constraint_id = %s",
1122 array(
$row->constraint_fi)
1126 $affectedRows = $ilDB->manipulateF(
"DELETE FROM svy_qst_constraint WHERE question_fi = %s",
1131 $affectedRows = $ilDB->manipulateF(
"DELETE FROM svy_qblk_qst WHERE question_fi = %s",
1135 $affectedRows = $ilDB->manipulateF(
"DELETE FROM svy_qst_oblig WHERE question_fi = %s",
1139 $affectedRows = $ilDB->manipulateF(
"DELETE FROM svy_svy_qst WHERE question_fi = %s",
1143 $affectedRows = $ilDB->manipulateF(
"DELETE FROM svy_variable WHERE question_fi = %s",
1147 $affectedRows = $ilDB->manipulateF(
"DELETE FROM svy_question WHERE question_id = %s",
1154 $affectedRows = $ilDB->manipulateF(
"DELETE FROM svy_material WHERE question_fi = %s",
1158 include_once
"./Services/Link/classes/class.ilInternalLink.php";
1161 $directory = CLIENT_WEB_DIR .
"/survey/" . $obj_id .
"/$question_id";
1162 if (preg_match(
"/\d+/", $obj_id) and preg_match(
"/\d+/", $question_id) and is_dir($directory))
1164 include_once
"./Services/Utilities/classes/class.ilUtil.php";
1168 include_once(
"./Services/MediaObjects/classes/class.ilObjMediaObject.php");
1174 foreach(
$mobs as $mob)
1181 include_once(
"./Modules/Survey/classes/class.ilSurveySkill.php");
1185 $ilDB->manipulate(
"UPDATE svy_question".
1186 " SET original_id = NULL".
1187 " WHERE original_id = ".$ilDB->quote($question_id,
"integer"));
1201 if ($question_id < 1)
return "";
1203 $result = $ilDB->queryF(
"SELECT type_tag FROM svy_question, svy_qtype WHERE svy_question.question_id = %s AND svy_question.questiontype_fi = svy_qtype.questiontype_id",
1210 return $data[
"type_tag"];
1229 if ($question_id < 1)
return "";
1231 $result = $ilDB->queryF(
"SELECT title FROM svy_question WHERE svy_question.question_id = %s",
1238 return $data[
"title"];
1256 $result = $ilDB->queryF(
"SELECT * FROM svy_question WHERE question_id = %s",
1263 if (
$row[
"original_id"] > 0)
1265 return $row[
"original_id"];
1267 else if((
bool)$a_return_question_id_if_no_original)
1269 return $row[
"question_id"];
1284 $id = $this->
getId();
1294 include_once
"./Services/Link/classes/class.ilInternalLink.php";
1295 $affectedRows = $ilDB->manipulateF(
"DELETE FROM svy_material WHERE question_fi = %s",
1300 if (strlen($this->material[
"internal_link"]))
1302 $next_id = $ilDB->nextId(
'svy_material');
1303 $affectedRows = $ilDB->manipulateF(
"INSERT INTO svy_material (material_id, question_fi, internal_link, import_id, material_title, tstamp) VALUES (%s, %s, %s, %s, %s, %s)",
1304 array(
'integer',
'integer',
'text',
'text',
'text',
'integer'),
1305 array($next_id, $this->
getOriginalId(), $this->material[
"internal_link"], $this->material[
"import_id"], $this->material[
"title"], time())
1307 if (preg_match(
"/il_(\d*?)_(\w+)_(\d+)/", $this->material[
"internal_link"], $matches))
1325 $result = $ilDB->queryF(
"SELECT title FROM svy_phrase WHERE phrase_id = %s",
1331 return $row[
"title"];
1347 $result = $ilDB->queryF(
"SELECT phrase_id FROM svy_phrase WHERE title = %s AND owner_fi = %s",
1348 array(
'text',
'integer'),
1349 array($title, $ilUser->getId())
1351 return (
$result->numRows() == 0) ?
false :
true;
1365 if ($question_id < 1)
1370 $result = $ilDB->queryF(
"SELECT question_id FROM svy_question WHERE question_id = %s",
1374 return (
$result->numRows() == 1) ?
true :
false;
1379 if (strlen($material_id))
1381 if (strcmp($material_title,
"") == 0)
1383 if (preg_match(
"/il__(\w+)_(\d+)/", $material_id, $matches))
1385 $type = $matches[1];
1387 $material_title = $this->lng->txt(
"obj_$type") .
": ";
1391 include_once(
"./Modules/LearningModule/classes/class.ilObjContentObjectGUI.php");
1393 $cont_obj = $cont_obj_gui->object;
1394 $material_title .= $cont_obj->getTitle();
1397 include_once(
"./Modules/LearningModule/classes/class.ilLMPageObject.php");
1398 include_once(
"./Modules/LearningModule/classes/class.ilLMObject.php");
1400 include_once(
"./Modules/LearningModule/classes/class.ilObjContentObjectGUI.php");
1402 $cont_obj = $cont_obj_gui->object;
1404 $material_title .= $pg_obj->getTitle();
1407 include_once(
"./Modules/LearningModule/classes/class.ilStructureObject.php");
1408 include_once(
"./Modules/LearningModule/classes/class.ilLMObject.php");
1410 include_once(
"./Modules/LearningModule/classes/class.ilObjContentObjectGUI.php");
1412 $cont_obj = $cont_obj_gui->object;
1414 $material_title .= $st_obj->getTitle();
1417 include_once
"./Modules/Glossary/classes/class.ilGlossaryTerm.php";
1425 include_once
"./Modules/SurveyQuestionPool/classes/class.ilSurveyMaterial.php";
1428 $mat->internal_link = $material_id;
1429 $mat->title = $material_title;
1442 foreach ($a_array as $idx)
1444 unset($this->material[$idx]);
1446 $this->material = array_values($this->material);
1461 $materialspath_original = preg_replace(
"/([^\d])$this->id([^\d])/",
"\${1}$question_id\${2}", $materialspath);
1462 if (!file_exists($materialspath))
1464 include_once
"./Services/Utilities/classes/class.ilUtil.php";
1467 if (!copy($materialspath_original . $filename, $materialspath . $filename))
1469 print
"material could not be duplicated!!!! ";
1476 array_push($this->material, $obj_material);
1486 function setMaterial($material_id =
"", $is_import =
false, $material_title =
"")
1488 if (strcmp($material_id,
"") != 0)
1493 $import_id = $material_id;
1496 if (strcmp($material_title,
"") == 0)
1498 if (preg_match(
"/il__(\w+)_(\d+)/", $material_id, $matches))
1500 $type = $matches[1];
1502 $material_title = $this->lng->txt(
"obj_$type") .
": ";
1506 include_once(
"./Modules/LearningModule/classes/class.ilObjContentObjectGUI.php");
1508 $cont_obj = $cont_obj_gui->object;
1509 $material_title .= $cont_obj->getTitle();
1512 include_once(
"./Modules/LearningModule/classes/class.ilLMPageObject.php");
1513 include_once(
"./Modules/LearningModule/classes/class.ilLMObject.php");
1515 include_once(
"./Modules/LearningModule/classes/class.ilObjContentObjectGUI.php");
1517 $cont_obj = $cont_obj_gui->object;
1519 $material_title .= $pg_obj->getTitle();
1522 include_once(
"./Modules/LearningModule/classes/class.ilStructureObject.php");
1523 include_once(
"./Modules/LearningModule/classes/class.ilLMObject.php");
1525 include_once(
"./Modules/LearningModule/classes/class.ilObjContentObjectGUI.php");
1527 $cont_obj = $cont_obj_gui->object;
1529 $material_title .= $st_obj->getTitle();
1532 include_once
"./Modules/Glossary/classes/class.ilGlossaryTerm.php";
1540 $this->material = array(
1541 "internal_link" => $material_id,
1542 "import_id" => $import_id,
1543 "title" => $material_title
1551 if (preg_match(
"/il_(\d+)_(\w+)_(\d+)/", $internal_link, $matches))
1553 include_once
"./Services/Link/classes/class.ilInternalLink.php";
1554 include_once
"./Modules/LearningModule/classes/class.ilLMObject.php";
1555 include_once
"./Modules/Glossary/classes/class.ilGlossaryTerm.php";
1556 switch ($matches[2])
1574 if (strcmp($resolved_link,
"") == 0)
1576 $resolved_link = $internal_link;
1581 $resolved_link = $internal_link;
1583 return $resolved_link;
1590 $result = $ilDB->queryF(
"SELECT * FROM svy_material WHERE question_fi = %s",
1598 $internal_link =
$row[
"internal_link"];
1599 include_once
"./Modules/SurveyQuestionPool/classes/class.SurveyQuestion.php";
1601 if (strcmp($internal_link, $resolved_link) != 0)
1604 $affectedRows = $ilDB->manipulateF(
"UPDATE svy_material SET internal_link = %s, tstamp = %s WHERE material_id = %s",
1605 array(
'text',
'integer',
'integer'),
1606 array($resolved_link, time(),
$row[
"material_id"])
1617 include_once
"./Services/Link/classes/class.ilInternalLink.php";
1620 $result = $ilDB->queryF(
"SELECT * FROM svy_material WHERE question_fi = %s",
1628 if (preg_match(
"/il_(\d*?)_(\w+)_(\d+)/",
$row[
"internal_link"], $matches))
1641 "lm" =>
"LearningModule",
1642 "pg" =>
"PageObject",
1643 "st" =>
"StructureObject",
1644 "git" =>
"GlossaryItem",
1645 "mob" =>
"MediaObject" 1648 if (preg_match(
"/il__(\w+)_(\d+)/", $target, $matches))
1650 $type = $matches[1];
1652 include_once
"./Services/Utilities/classes/class.ilUtil.php";
1653 switch($linktypes[$matches[1]])
1655 case "LearningModule":
1659 case "StructureObject":
1662 case "GlossaryItem":
1685 if (($question_id < 1) || ($user_id < 1))
1690 $result = $ilDB->queryF(
"SELECT obj_fi FROM svy_question WHERE question_id = %s",
1697 $qpl_object_id =
$row[
"obj_fi"];
1698 include_once
"./Modules/SurveyQuestionPool/classes/class.ilObjSurveyQuestionPool.php";
1716 $result = $ilDB->queryF(
"SELECT questiontype_id FROM svy_qtype WHERE type_tag = %s",
1723 return $row[
"questiontype_id"];
1751 $type = $question_type;
1752 if ($gui) $type .=
"GUI";
1753 if (file_exists(
"./Modules/SurveyQuestionPool/classes/class.".$type.
".php"))
1755 include_once
"./Modules/SurveyQuestionPool/classes/class.".$type.
".php";
1760 global $ilPluginAdmin;
1761 $pl_names = $ilPluginAdmin->getActivePluginsForSlot(
IL_COMP_MODULE,
"SurveyQuestionPool",
"svyq");
1762 foreach ($pl_names as $pl_name)
1765 if (strcmp($pl->getQuestionType(), $question_type) == 0)
1767 $pl->includeClass(
"class.".$type.
".php");
1783 if (file_exists(
"./Modules/SurveyQuestionPool/classes/class.".$type_tag.
".php"))
1786 return $lng->txt($type_tag);
1790 global $ilPluginAdmin;
1791 $pl_names = $ilPluginAdmin->getActivePluginsForSlot(
IL_COMP_MODULE,
"SurveyQuestionPool",
"svyq");
1792 foreach ($pl_names as $pl_name)
1795 if (strcmp($pl->getQuestionType(), $type_tag) == 0)
1797 return $pl->getQuestionTypeTranslation();
1818 $question =
new $question_type();
1819 $question->loadFromDb($question_id);
1837 $guitype = $question_type .
"GUI";
1838 $question =
new $guitype($question_id);
1853 if (preg_match(
"/<[^>]*?>/", $a_text))
1873 for ($i = 0; $i < $a_material->getMaterialCount(); $i++)
1875 $material = $a_material->getMaterial($i);
1876 if (strcmp($material[
"type"],
"mattext") == 0)
1878 $result .= $material[
"material"]->getContent();
1880 if (strcmp($material[
"type"],
"matimage") == 0)
1882 $matimage = $material[
"material"];
1883 if (preg_match(
"/(il_([0-9]+)_mob_([0-9]+))/", $matimage->getLabel(), $matches))
1886 if (!is_array(
$_SESSION[
"import_mob_xhtml"]))
$_SESSION[
"import_mob_xhtml"] = array();
1887 array_push(
$_SESSION[
"import_mob_xhtml"], array(
"mob" => $matimage->getLabel(),
"uri" => $matimage->getUri()));
1902 function addMaterialTag(&$a_xml_writer, $a_material, $close_material_tag = TRUE, $add_mobs = TRUE, $a_attrs = null)
1904 include_once
"./Services/RTE/classes/class.ilRTE.php";
1905 include_once(
"./Services/MediaObjects/classes/class.ilObjMediaObject.php");
1907 $a_xml_writer->xmlStartTag(
"material");
1909 "type" =>
"text/plain" 1911 if ($this->
isHTML($a_material))
1913 $attrs[
"type"] =
"text/xhtml";
1915 if (is_array($a_attrs))
1917 $attrs = array_merge($attrs, $a_attrs);
1924 foreach (
$mobs as $mob)
1928 "label" =>
"il_" . IL_INST_ID .
"_mob_" . $mob,
1929 "uri" =>
"objects/" .
"il_" . IL_INST_ID .
"_mob_" . $mob .
"/" . $mob_obj->getTitle(),
1930 "type" =>
"spl:html",
1931 "id" => $this->
getId()
1933 $a_xml_writer->xmlElement(
"matimage", $imgattrs, NULL);
1936 if ($close_material_tag) $a_xml_writer->xmlEndTag(
"material");
1947 include_once
"./Services/Utilities/classes/class.ilUtil.php";
1983 $title = $this->label;
1987 array_push($a_array, $title);
2088 include_once (
"./Services/Excel/classes/class.ilExcelUtils.php");
2090 switch ($export_label)
2109 $worksheet->write(
$row, $column, $eval_data[
"USERS_ANSWERED"]);
2111 $worksheet->write(
$row, $column, $eval_data[
"USERS_SKIPPED"]);
2117 $worksheet->write(
$row, $column, $eval_data[
"MODE_NR_OF_SELECTIONS"]);
2121 $worksheet->write(
$row, $column, $eval_data[
"ARITHMETIC_MEAN"]);
2139 switch ($export_label)
2142 array_push($csvrow, $this->label);
2145 array_push($csvrow, $this->
getTitle());
2148 array_push($csvrow, $this->
getTitle());
2149 array_push($csvrow, $this->label);
2153 array_push($csvrow, $this->lng->txt($eval_data[
"QUESTION_TYPE"]));
2154 array_push($csvrow, $eval_data[
"USERS_ANSWERED"]);
2155 array_push($csvrow, $eval_data[
"USERS_SKIPPED"]);
2156 array_push($csvrow, $eval_data[
"MODE"]);
2157 array_push($csvrow, $eval_data[
"MODE_NR_OF_SELECTIONS"]);
2158 array_push($csvrow, $eval_data[
"MEDIAN"]);
2159 array_push($csvrow, $eval_data[
"ARITHMETIC_MEAN"]);
2253 $this->original_id = $original_id;
2258 return $this->original_id;
2289 if (count($this->cumulated) == 0)
2293 include_once
"./Modules/Survey/classes/class.ilObjSurvey.php";
2298 $nr_of_users =
sizeof($finished_ids);
2302 $this->cumulated =& $this->getCumulatedResults($survey_id, $nr_of_users, $finished_ids);
2316 $questiontext = preg_replace(
"/<[^>]+?>/ims",
"", $this->
getQuestiontext());
2319 include_once
"./Services/Utilities/classes/class.ilStr.php";
2320 if (ilStr::strlen($questiontext) > $maxlen + 3)
2322 $questiontext = ilStr::substr($questiontext, 0, $maxlen) .
"...";
2326 'counter' => $counter,
2327 'title' => $counter.
'. '.$this->getTitle(),
2329 'users_answered' =>
$cumulated[
'USERS_ANSWERED'],
2330 'users_skipped' =>
$cumulated[
'USERS_SKIPPED'],
2331 'question_type' => $this->lng->txt(
$cumulated[
"QUESTION_TYPE"]),
2333 'mode_nr_of_selections' =>
$cumulated[
"MODE_NR_OF_SELECTIONS"],
2335 'arithmetic_mean' =>
$cumulated[
"ARITHMETIC_MEAN"]
2348 if (array_key_exists($value, $this->arrData))
2350 return $this->arrData[$value];
2368 $this->arrData[$key] = $value;
2384 $ilDB->manipulate(
"UPDATE svy_question".
2385 " SET original_id = ".$ilDB->quote($a_original_id,
"integer").
",".
2386 " obj_fi = ".$ilDB->quote($a_object_id,
"integer").
2387 " WHERE question_id = ".$ilDB->quote($a_question_id,
"integer"));
2394 $set = $ilDB->query(
"SELECT q.question_id,s.obj_fi".
2395 " FROM svy_question q".
2396 " JOIN svy_svy_qst sq ON (sq.question_fi = q.question_id)".
2397 " JOIN svy_svy s ON (s.survey_id = sq.survey_fi)".
2398 " WHERE original_id = ".$ilDB->quote($this->getId(),
"integer"));
2400 while(
$row = $ilDB->fetchAssoc($set))
2402 if(!$a_group_by_survey)
2408 $res[
$row[
"obj_fi"]][] = $row[
"question_id"];
2421 include_once
"Modules/Survey/classes/class.ilObjSurvey.php";
2429 $set = $ilDB->query(
"SELECT svy_svy.obj_fi FROM svy_svy_qst".
2430 " JOIN svy_svy ON (svy_svy.survey_id = svy_svy_qst.survey_fi)".
2431 " WHERE svy_svy_qst.question_fi = ".$ilDB->quote($a_question_id,
"integer"));
2432 $row = $ilDB->fetchAssoc($set);
2433 if($ilDB->numRows($set))
2435 return $row[
"obj_fi"];
2449 $set = $ilDB->query(
"SELECT obj_fi FROM svy_question ".
2450 " WHERE question_id = ".$ilDB->quote($a_qid,
"integer")
2452 $rec = $ilDB->fetchAssoc($set);
2453 return $rec[
"obj_fi"];
static getPluginObject($a_ctype, $a_cname, $a_slot_id, $a_pname)
Get plugin object.
static makeDirParents($a_dir)
Create a new directory and all parent directories.
_isWriteable($object_id, $user_id)
Returns true, if the question pool is writeable by a given user.
saveCategoryToDb($categorytext, $neutral=0)
Saves a category to the database.
addMaterials($materials_file, $materials_name="")
Sets the materials uri.
saveCompletionStatus($original_id="")
Saves the complete flag to the database.
_questionExists($question_id)
Returns true if the question already exists in the database.
getAuthor()
Gets the authors name of the SurveyQuestion object.
$cumulated
An array containing the cumulated results of the question for a given survey.
getTitle()
Gets the title string of the SurveyQuestion object.
static prepareTextareaOutput($txt_output, $prepare_for_latex_output=FALSE, $omitNl2BrWhenTextArea=false)
Prepares a string for a text area output where latex code may be in it If the text is HTML-free...
_deleteAllLinksOfSource($a_source_type, $a_source_id, $a_lang="-")
Delete all links of a given source.
phraseExists($title)
Returns true if the phrase title already exists for the current user.
saveToDb($original_id="")
Saves a SurveyQuestion object to a database.
static handleQuestionDeletion($a_question_id, $a_obj_id)
Remove question skill assignment.
outChart($survey_id, $type="")
Creates an image visualising the results of the question.
getObligatory($survey_id="")
Gets the obligatory state of the question.
QTIMaterialToString($a_material)
Reads an QTI material tag an creates a text string.
static _lookupSurveyObjId($a_question_id)
_getTitle($question_id)
Returns the question title of a question with a given id.
setObligatory($obligatory=1)
Sets the obligatory state of the question.
getMaterialsPath()
Returns the materials path for web accessable materials of a question.
static getSurveySkippedValue()
setOrientation($orientation=0)
Sets the orientation of the question output.
__set($key, $value)
Object setter.
copyXHTMLMediaObjectsOfQuestion($a_q_id)
Increases the media object usage counter when a question is duplicated.
importResponses($a_data)
Import response data from the question import file.
_convert_text($a_text, $a_target="has been removed")
_resolveInternalLink($internal_link)
importMatrix($a_data)
Import matrix rows from the question import file.
_saveLink($a_source_type, $a_source_id, $a_target_type, $a_target_id, $a_target_inst=0, $a_source_lang="-")
save internal link information
deleteMaterial($materials_name="")
Deletes a materials uri with a given name.
_getQuestionDataArray($id)
Returns the question data fields from the database.
importAdjectives($a_data)
Import bipolar adjectives from the question import file.
getMaterialsPathWeb()
Returns the web image path for web accessable images of a question.
setId($id=-1)
Sets the id of the SurveyQuestion object.
flushMaterials()
Deletes all materials uris.
duplicate($for_survey=true, $title="", $author="", $owner="")
Duplicates a survey question.
static _changeOriginalId($a_question_id, $a_original_id, $a_object_id)
Change original id of existing question in db.
static _includeClass($question_type, $gui=0)
Include the php class file for a given question type.
usableForPrecondition()
Returns if the question is usable for preconditions.
getQuestiontext()
Gets the questiontext of the SurveyQuestion object.
getOrientation()
Gets the orientation of the question output.
setExportDetailsXLS(&$workbook, &$format_title, &$format_bold, &$eval_data, $export_label)
Creates an Excel worksheet for the detailed cumulated results of this question.
static lookupObjFi($a_qid)
Lookip obj fi.
static _getQuestionTypeName($type_tag)
Return the translation for a given question type tag.
_cleanupMediaObjectUsage($a_text, $a_usage_type, $a_usage_id)
synchronises appearances of media objects in $a_text with media object usage table ...
_getIdForImportId($a_type, $a_target)
Get current id for an import id.
loadFromDb($question_id)
Loads a SurveyQuestion object from the database.
static _replaceMediaObjectImageSrc($a_text, $a_direction=0, $nic=IL_INST_ID)
replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
setOwner($owner="")
Sets the creator/owner ID of the SurveyQuestion object.
setComplete($a_complete)
Sets the complete state of the question.
getPreconditionOptions()
Returns the options for preconditions.
setMaterial($material_id="", $is_import=false, $material_title="")
Sets a material link for the question.
getQuestionTypeID()
Returns the question type ID of the question.
addMaterial($obj_material)
& getUserAnswers($survey_id)
Returns an array containing all answers to this question in a given survey.
setOriginalId($original_id)
getOwner()
Gets the creator/owner ID of the SurveyQuestion object.
SurveyQuestion( $title="", $description="", $author="", $questiontext="", $owner=-1)
SurveyQuestion constructor The constructor takes possible arguments an creates an instance of the Sur...
setQuestiontext($questiontext="")
Sets the questiontext of the SurveyQuestion object.
& _instanciateQuestionGUI($question_id)
Creates an instance of a question GUI with a given question id.
saveRandomData($active_id)
Saves random answers for a given active user in the database.
_resolveIntLinks($question_id)
& calculateCumulatedResults($survey_id, $finished_ids)
getId()
Gets the id of the SurveyQuestion object.
getImagePathWeb()
Returns the web image path for web accessable images of a question.
addUserSpecificResultsData(&$a_array, &$resultset)
Adds the values for the user specific results export for a given user.
const ILIAS_ABSOLUTE_PATH
getPhrase($phrase_id)
Returns a phrase for a given database id.
static moveUploadedFile($a_file, $a_name, $a_target, $a_raise_errors=true, $a_mode="move_uploaded")
move uploaded file
Basic class for all survey question types.
saveMaterial()
save material to db
_lookupContObjID($a_id)
get learning module / digibook id for lm object
getCumulatedResultData($survey_id, $counter, $finished_ids)
Creates a the cumulated results data for the question.
redirection script todo: (a better solution should control the processing via a xml file) ...
getAvailableRelations()
Returns the available relations for the question.
& getWorkingDataFromUserInput($post_data)
Creates the user data of the svy_answer table from the POST data.
static removeTrailingPathSeparators($path)
setSurveyId($id=-1)
Sets the survey id of the SurveyQuestion object.
addInternalLink($material_id, $title="")
isComplete()
Returns 1, if a question is complete for use.
_getIdForImportId($a_import_id)
get current object id for import id (static)
saveWorkingData($limit_to=LIMIT_NO_LIMIT)
Saves the learners input of the question to the database.
_getOriginalId($question_id, $a_return_question_id_if_no_original=true)
Returns the original id of a question.
getImagePath()
Returns the image path for web accessable images of a question.
setExportCumulatedXLS(&$worksheet, &$format_title, &$format_bold, &$eval_data, $row, $export_label)
Creates the Excel output for the cumulated results of this question.
setAuthor($author="")
Sets the authors name of the SurveyQuestion object.
const LIMIT_NO_LIMIT
Assessment constants.
deleteMaterials($a_array)
Deletes materials.
_getQuestionType($question_id)
Returns the question type of a question with a given id.
addMaterialTag(&$a_xml_writer, $a_material, $close_material_tag=TRUE, $add_mobs=TRUE, $a_attrs=null)
Creates an XML material tag from a plain text or xhtml text.
setDescription($description="")
Sets the description string of the SurveyQuestion object.
setMaterialsfile($materials_filename, $materials_tempfilename="", $materials_name="")
Sets and uploads the materials uri.
Class ilObjContentObjectGUI.
_isWriteable($question_id, $user_id)
Returns true if the question is writeable by a certain user.
copyObject($target_questionpool, $title="")
Copies an assOrderingQuestion object.
importAdditionalMetadata($a_meta)
Import additional meta data from the question import file.
_getInternalLinkHref($target="", $a_parent_ref_id=null)
getDescription()
Gets the description string of the SurveyQuestion object.
getObjId()
Get the reference id of the container object.
getPreconditionSelectValue($default="", $title, $variable)
Creates a form property for the precondition value.
duplicateMaterials($question_id)
Duplicates the materials of a question.
setObjId($obj_id=0)
Set the reference id of the container object.
_getNrOfParticipants($survey_id)
Returns the number of participants for a survey.
isHTML($a_text)
Checks if a given string contains HTML or not.
__get($value)
Object getter.
& _instanciateQuestion($question_id)
Creates an instance of a question with a given question id.
_isComplete($question_id)
Checks whether the question is complete or not.
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
$arrData
data array containing the question data
static _lookGlossaryTerm($term_id)
get glossary term
getQuestionType()
Returns the question type of the question.
getPreconditionValueOutput($value)
Returns the output for a precondition value.
createNewQuestion()
Creates a new question with a 0 timestamp when a new question is created This assures that an ID is g...
& setExportCumulatedCVS(&$eval_data, $export_label)
Creates the CSV output for the cumulated results of this question.
getCopyIds($a_group_by_survey=false)
deleteAdditionalTableData($question_id)
Deletes datasets from the additional question table in the database.
prepareTextareaOutput($txt_output, $prepare_for_latex_output=FALSE)
Prepares a string for a text area output in surveys.
getSurveyId()
Gets the survey id of the SurveyQuestion object.
addUserSpecificResultsExportTitles(&$a_array, $a_use_label=false, $a_substitute=true)
Adds the entries for the title row of the user specific results.
setTitle($title="")
Sets the title string of the SurveyQuestion object.
questionTitleExists($title, $questionpool_object="")
Returns TRUE if the question title exists in the database.