19 include_once
"./Modules/Test/classes/inc.AssessmentConstants.php";
74 public function __construct($a_id = 0, $a_call_by_reference =
true)
80 $this->skillServiceEnabled =
false;
88 $id = parent::create();
106 $result = parent::createReference();
120 if (!parent::update()) {
133 include_once
"./Services/MetaData/classes/class.ilMD.php";
135 $md_gen = $md->getGeneral();
136 if ($md_gen ==
false) {
137 include_once
"./Services/MetaData/classes/class.ilMDCreator.php";
139 $md_creator->setTitle($this->
getTitle());
140 $md_creator->setTitleLanguage(
$ilUser->getPref(
'language'));
141 $md_creator->create();
151 public function read($a_force_db =
false): void
153 parent::read($a_force_db);
164 public function delete():
bool 167 if (!parent::delete()) {
177 require_once
'Modules/TestQuestionPool/classes/questions/class.ilAssQuestionSkillAssignmentImportFails.php';
179 $qsaImportFails->deleteRegisteredImportFails();
188 if (count($questions)) {
189 foreach ($questions as $question_id) {
195 include_once
"./Services/Utilities/classes/class.ilUtil.php";
197 $directory = $qpl_data_dir .
"/qpl_" . $this->
getId();
198 if (is_dir($directory)) {
199 include_once
"./Services/Utilities/classes/class.ilUtil.php";
212 include_once
"./Modules/Test/classes/class.ilObjTest.php";
213 include_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
216 $question->delete($question_id);
227 $ilDB = $DIC[
'ilDB'];
229 $result =
$ilDB->queryF(
230 "SELECT * FROM qpl_questionpool WHERE obj_fi = %s",
232 array($this->
getId())
234 if ($result->numRows() == 1) {
235 $row =
$ilDB->fetchAssoc($result);
251 $ilDB = $DIC[
'ilDB'];
253 $result =
$ilDB->queryF(
254 "SELECT id_questionpool FROM qpl_questionpool WHERE obj_fi = %s",
256 array($this->
getId())
259 if ($result->numRows() == 1) {
260 $result =
$ilDB->update(
263 'isonline' => array(
'text', $this->
getOnline()),
267 'tstamp' => array(
'integer', time())
270 'obj_fi' => array(
'integer', $this->
getId())
274 $next_id =
$ilDB->nextId(
'qpl_questionpool');
276 $result =
$ilDB->insert(
'qpl_questionpool', array(
277 'id_questionpool' => array(
'integer', $next_id),
278 'isonline' => array(
'text', $this->
getOnline()),
282 'tstamp' => array(
'integer', time()),
283 'obj_fi' => array(
'integer', $this->
getId())
291 $ilDB = $DIC[
'ilDB'];
293 if ($question_id < 1) {
297 $result =
$ilDB->queryF(
298 "SELECT qpl_qst_type.type_tag FROM qpl_questions, qpl_qst_type WHERE qpl_questions.question_type_fi = qpl_qst_type.question_type_id AND qpl_questions.question_id = %s",
303 if ($result->numRows() == 1) {
305 return $data[
"type_tag"];
320 $ilDB = $DIC[
'ilDB'];
322 $result =
$ilDB->queryF(
323 "SELECT COUNT(solution_id) solution_count FROM tst_solutions WHERE question_fi = %s",
327 $row =
$ilDB->fetchAssoc($result);
328 return $row[
"solution_count"];
333 include_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
334 if ($question_id > 0) {
338 $question_type_gui = $question_type .
"GUI";
339 $question_gui =
new $question_type_gui();
340 return $question_gui;
352 $newtitle = $question->object->getTitle();
353 if ($question->object->questionTitleExists($this->getId(), $question->object->getTitle())) {
355 while ($question->object->questionTitleExists($this->getId(), $question->object->getTitle() .
" ($counter)")) {
358 $newtitle = $question->object->getTitle() .
" ($counter)";
360 $new_id = $question->object->duplicate(
false, $newtitle);
376 if ($question_gui->object->getObjId() == $questionpool_to) {
381 $newtitle = $question_gui->object->getTitle();
382 if ($question_gui->object->questionTitleExists($this->getId(), $question_gui->object->getTitle())) {
384 while ($question_gui->object->questionTitleExists($this->getId(), $question_gui->object->getTitle() .
" ($counter)")) {
387 $newtitle = $question_gui->object->getTitle() .
" ($counter)";
389 return $question_gui->object->copyObject($this->
getId(), $newtitle);
401 $ilDB = $DIC[
'ilDB'];
403 $query_result =
$ilDB->queryF(
404 "SELECT qpl_questions.*, qpl_qst_type.type_tag, qpl_qst_type.plugin, qpl_questions.tstamp updated FROM qpl_questions, qpl_qst_type WHERE qpl_questions.original_id IS NULL AND qpl_questions.tstamp > 0 AND qpl_questions.question_type_fi = qpl_qst_type.question_type_id AND qpl_questions.obj_fi = %s",
406 array($this->
getId())
410 if ($query_result->numRows()) {
411 while ($row =
$ilDB->fetchAssoc($query_result)) {
412 $row[
'ttype'] = $types[$row[
'type_tag']];
413 if ($row[
"plugin"]) {
414 if ($this->isPluginActive($row[
"type_tag"])) {
415 array_push(
$rows, $row);
418 array_push(
$rows, $row);
430 $xmlWriter->xmlStartTag(
'Settings');
432 $xmlWriter->xmlElement(
'ShowTaxonomies', null, (
int) $this->
getShowTaxonomies());
433 $xmlWriter->xmlElement(
'NavTaxonomy', null, (
int) $this->
getNavTaxonomyId());
436 $xmlWriter->xmlEndTag(
'Settings');
448 $ilBench = $DIC[
'ilBench'];
450 $this->mob_ids = array();
451 $this->file_ids = array();
454 $attrs[
"Type"] =
"Questionpool_Test";
455 $a_xml_writer->
xmlStartTag(
"ContentObject", $attrs);
464 $expLog->write(date(
"[y-m-d H:i:s] ") .
"Start Export Page Objects");
465 $ilBench->start(
"ContentObjectExport",
"exportPageObjects");
467 $ilBench->stop(
"ContentObjectExport",
"exportPageObjects");
468 $expLog->write(date(
"[y-m-d H:i:s] ") .
"Finished Export Page Objects");
471 $expLog->write(date(
"[y-m-d H:i:s] ") .
"Start Export Media Objects");
472 $ilBench->start(
"ContentObjectExport",
"exportMediaObjects");
474 $ilBench->stop(
"ContentObjectExport",
"exportMediaObjects");
475 $expLog->write(date(
"[y-m-d H:i:s] ") .
"Finished Export Media Objects");
478 $expLog->write(date(
"[y-m-d H:i:s] ") .
"Start Export File Items");
479 $ilBench->start(
"ContentObjectExport",
"exportFileItems");
481 $ilBench->stop(
"ContentObjectExport",
"exportFileItems");
482 $expLog->write(date(
"[y-m-d H:i:s] ") .
"Finished Export File Items");
487 $a_xml_writer->
xmlEndTag(
"ContentObject");
497 $ilDB = $DIC[
'ilDB'];
499 require_once
'Modules/TestQuestionPool/classes/class.ilAssQuestionSkillAssignmentList.php';
501 $assignmentList->setParentObjId($this->
getId());
502 $assignmentList->loadFromDb();
503 $assignmentList->loadAdditionalSkillData();
505 require_once
'Modules/TestQuestionPool/classes/questions/class.ilAssQuestionSkillAssignmentExporter.php';
507 $skillQuestionAssignmentExporter->setXmlWriter($a_xml_writer);
508 $skillQuestionAssignmentExporter->setQuestionIds($questions);
509 $skillQuestionAssignmentExporter->setAssignmentList($assignmentList);
510 $skillQuestionAssignmentExporter->export();
521 include_once(
"Services/MetaData/classes/class.ilMD2XML.php");
523 $md2xml->setExportMode(
true);
524 $md2xml->startExport();
525 $a_xml_writer->appendXML($md2xml->getXML());
530 if ($a_tag ==
"Identifier" && $a_param ==
"Entry") {
531 include_once
"./Services/Utilities/classes/class.ilUtil.php";
548 $ilBench = $DIC[
'ilBench'];
550 include_once
"./Modules/LearningModule/classes/class.ilLMPageObject.php";
552 foreach ($questions as $question_id) {
553 $ilBench->start(
"ContentObjectExport",
"exportPageObject");
554 $expLog->write(date(
"[y-m-d H:i:s] ") .
"Page Object " . $question_id);
557 $a_xml_writer->xmlStartTag(
"PageObject", $attrs);
561 $ilBench->start(
"ContentObjectExport",
"exportPageObject_XML");
562 include_once(
"./Modules/TestQuestionPool/classes/class.ilAssQuestionPage.php");
564 $page_object->buildDom();
565 $page_object->insertInstIntoIDs($a_inst);
566 $mob_ids = $page_object->collectMediaObjects(
false);
567 require_once
'Services/COPage/classes/class.ilPCFileList.php';
569 $xml = $page_object->getXMLFromDom(
false,
false,
false,
"",
true);
570 $xml = str_replace(
"&",
"&", $xml);
571 $a_xml_writer->appendXML($xml);
572 $page_object->freeDom();
575 $ilBench->stop(
"ContentObjectExport",
"exportPageObject_XML");
578 $ilBench->start(
"ContentObjectExport",
"exportPageObject_CollectMedia");
579 foreach ($mob_ids as $mob_id) {
580 $this->mob_ids[$mob_id] = $mob_id;
582 $ilBench->stop(
"ContentObjectExport",
"exportPageObject_CollectMedia");
585 $ilBench->start(
"ContentObjectExport",
"exportPageObject_CollectFileItems");
587 foreach ($file_ids as $file_id) {
588 $this->file_ids[$file_id] = $file_id;
590 $ilBench->stop(
"ContentObjectExport",
"exportPageObject_CollectFileItems");
592 $a_xml_writer->xmlEndTag(
"PageObject");
594 $ilBench->stop(
"ContentObjectExport",
"exportPageObject");
600 include_once(
"./Services/MediaObjects/classes/class.ilObjMediaObject.php");
602 foreach ($this->mob_ids as $mob_id) {
603 $expLog->write(date(
"[y-m-d H:i:s] ") .
"Media Object " . $mob_id);
606 $media_obj->exportXML($a_xml_writer, $a_inst);
607 $media_obj->exportFiles($a_target_dir);
619 include_once(
"./Modules/File/classes/class.ilObjFile.php");
621 foreach ($this->file_ids as $file_id) {
622 $expLog->write(date(
"[y-m-d H:i:s] ") .
"File Item " . $file_id);
623 $file_dir = $target_dir .
'/objects/il_' .
IL_INST_ID .
'_file_' . $file_id;
625 $file_obj =
new ilObjFile($file_id,
false);
626 $source_file = $file_obj->getFile($file_obj->getVersion());
627 if (!is_file($source_file)) {
628 $source_file = $file_obj->getFile();
630 if (is_file($source_file)) {
631 copy($source_file, $file_dir .
'/' . $file_obj->getFileName());
644 include_once
"./Services/Utilities/classes/class.ilUtil.php";
647 if (!is_writable($qpl_data_dir)) {
648 $this->
ilias->raiseError(
"Questionpool Data Directory (" . $qpl_data_dir
649 .
") not writeable.", $this->
ilias->error_obj->FATAL);
653 $qpl_dir = $qpl_data_dir .
"/qpl_" . $this->
getId();
655 if (!@is_dir($qpl_dir)) {
656 $this->
ilias->raiseError(
"Creation of Questionpool Directory failed.", $this->
ilias->error_obj->FATAL);
661 $this->
ilias->raiseError(
"Creation of Export Directory failed.", $this->
ilias->error_obj->FATAL);
665 $this->
ilias->raiseError(
"Creation of Export Directory failed.", $this->
ilias->error_obj->FATAL);
674 include_once
"./Services/Utilities/classes/class.ilUtil.php";
677 include_once(
"./Services/Export/classes/class.ilExport.php");
701 include_once
"./Services/Utilities/classes/class.ilUtil.php";
705 if (!is_writable($qpl_data_dir)) {
707 .
") not writeable.",
$ilias->error_obj->FATAL);
711 $qpl_dir = $qpl_data_dir .
"/qpl_import";
713 if (!@is_dir($qpl_dir)) {
724 if (strlen($a_import_dir)) {
752 $ilDB = $DIC[
'ilDB'];
754 $result =
$ilDB->queryF(
755 "SELECT question_id FROM qpl_questions WHERE obj_fi = %s AND qpl_questions.tstamp > 0 AND original_id IS NULL",
757 array($this->
getId())
759 $questions = array();
760 while ($row =
$ilDB->fetchAssoc($result)) {
761 array_push($questions, $row[
"question_id"]);
769 $ilDB = $DIC[
'ilDB'];
771 $query_result =
$ilDB->queryF(
772 "SELECT question_id, qpl_qst_type.type_tag, qpl_qst_type.plugin FROM qpl_questions, qpl_qst_type WHERE original_id IS NULL AND qpl_questions.tstamp > 0 AND obj_fi = %s AND complete = %s AND qpl_questions.question_type_fi = qpl_qst_type.question_type_id",
773 array(
'integer',
'text'),
774 array($this->
getId(), 1)
776 $questions = array();
777 if ($query_result->numRows()) {
778 while ($row =
$ilDB->fetchAssoc($query_result)) {
779 if ($row[
"plugin"]) {
780 if ($this->isPluginActive($row[
"type_tag"])) {
781 array_push($questions, $row[
"question_id"]);
784 array_push($questions, $row[
"question_id"]);
795 $row = $DIC->database()->fetchAssoc($DIC->database()->queryF(
796 "SELECT COUNT(question_id) cnt FROM qpl_questions WHERE question_id = %s AND obj_fi = %s",
797 array(
'integer',
'integer'),
798 array($questionId, $this->
getId())
801 return (
bool) $row[
'cnt'];
824 if (count($questions) > 0) {
825 foreach ($questions as
$key => $value) {
827 $xml .= $question->object->toXML();
829 if (count($questions) > 1) {
830 $xml = preg_replace(
"/<\/questestinterop>\s*<.xml.*?>\s*<questestinterop>/",
"",
$xml);
833 $xml = preg_replace(
"/(<\?xml[^>]*?>)/",
"\\1" .
"<!DOCTYPE questestinterop SYSTEM \"ims_qtiasiv1p2p1.dtd\">",
$xml);
848 $ilDB = $DIC[
'ilDB'];
849 if ($complete_questions_only) {
850 $result =
$ilDB->queryF(
851 "SELECT COUNT(question_id) question_count FROM qpl_questions WHERE obj_fi = %s AND qpl_questions.tstamp > 0 AND original_id IS NULL AND complete = %s",
852 array(
'integer',
'text'),
853 array($questionpool_id, 1)
856 $result =
$ilDB->queryF(
857 "SELECT COUNT(question_id) question_count FROM qpl_questions WHERE obj_fi = %s AND qpl_questions.tstamp > 0 AND original_id IS NULL",
859 array($questionpool_id)
862 $row =
$ilDB->fetchAssoc($result);
863 return $row[
"question_count"];
875 switch ($a_online_status) {
878 $this->online = $a_online_status;
888 if (strcmp($this->online,
"") == 0) {
922 $ilDB = $DIC[
'ilDB'];
925 $result =
$ilDB->queryF(
926 "SELECT qpl_questionpool.isonline FROM qpl_questionpool,object_reference WHERE object_reference.ref_id = %s AND object_reference.obj_id = qpl_questionpool.obj_fi",
931 $result =
$ilDB->queryF(
932 "SELECT isonline FROM qpl_questionpool WHERE obj_fi = %s",
937 if ($result->numRows() == 1) {
938 $row =
$ilDB->fetchAssoc($result);
939 return $row[
"isonline"];
953 $ilDB = $DIC[
'ilDB'];
956 $result =
$ilDB->queryF(
957 "SELECT count(DISTINCT qpl_questions.points) equal_points FROM qpl_questions, object_reference WHERE object_reference.ref_id = %s AND qpl_questions.tstamp > 0 AND object_reference.obj_id = qpl_questions.obj_fi AND qpl_questions.original_id IS NULL",
962 $result =
$ilDB->queryF(
963 "SELECT count(DISTINCT points) equal_points FROM qpl_questions WHERE obj_fi = %s AND qpl_questions.tstamp > 0 AND qpl_questions.original_id IS NULL",
968 if ($result->numRows() == 1) {
969 $row =
$ilDB->fetchAssoc($result);
970 if ($row[
"equal_points"] == 1) {
987 $ilDB = $DIC[
'ilDB'];
993 if (strcmp($question_object[
"action"],
"move") == 0) {
994 $result =
$ilDB->queryF(
995 "SELECT obj_fi FROM qpl_questions WHERE question_id = %s",
997 array($question_object[
"question_id"])
999 if ($result->numRows() == 1) {
1000 $row =
$ilDB->fetchAssoc($result);
1001 $source_questionpool = $row[
"obj_fi"];
1003 $affectedRows =
$ilDB->manipulateF(
1004 "UPDATE qpl_questions SET obj_fi = %s WHERE question_id = %s",
1005 array(
'integer',
'integer'),
1006 array($this->
getId(), $question_object[
"question_id"])
1008 if (!$affectedRows) {
1013 $source_path =
CLIENT_WEB_DIR .
"/assessment/" . $source_questionpool .
"/" . $question_object[
"question_id"] .
"/";
1014 if (@is_dir($source_path)) {
1016 if (!@is_dir($target_path)) {
1017 include_once
"./Services/Utilities/classes/class.ilUtil.php";
1020 rename($source_path, $target_path . $question_object[
"question_id"]);
1026 $new_question_id = $this->
copyQuestion($question_object[
"question_id"], $this->
getId());
1027 if (!$new_question_id) {
1052 $clip[$question_id] = array(
"question_id" => $question_id,
"action" =>
"copy");
1069 $clip[$question_id] = array(
"question_id" => $question_id,
"action" =>
"move");
1081 if (!isset($clip[$deletedQuestionId])) {
1085 unset($clip[$deletedQuestionId]);
1087 if (!count($clip)) {
1104 $rbacsystem = $DIC[
'rbacsystem'];
1106 include_once
"./Services/Object/classes/class.ilObject.php";
1128 $ilDB = $DIC[
'ilDB'];
1131 $query_result =
$ilDB->query(
"SELECT qpl_questions.*, qpl_qst_type.type_tag FROM qpl_questions, qpl_qst_type WHERE qpl_questions.question_type_fi = qpl_qst_type.question_type_id AND " .
$ilDB->in(
'qpl_questions.question_id', $question_ids,
false,
'integer') .
" ORDER BY qpl_questions.title");
1132 if ($query_result->numRows()) {
1133 while ($row =
$ilDB->fetchAssoc($query_result)) {
1134 array_push($result, $row);
1151 $ilDB = $DIC[
'ilDB'];
1152 $ilLog = $DIC[
'ilLog'];
1155 $query_result =
$ilDB->query(
"SELECT qpl_questions.*, qpl_qst_type.type_tag FROM qpl_questions, qpl_qst_type WHERE qpl_questions.question_type_fi = qpl_qst_type.question_type_id AND " .
$ilDB->in(
'qpl_questions.question_id', $question_ids,
false,
'integer') .
" ORDER BY qpl_questions.title");
1156 if ($query_result->numRows()) {
1157 include_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
1158 while ($row =
$ilDB->fetchAssoc($query_result)) {
1160 array_push($result, $row);
1169 $duplicate_id = $question->object->duplicate(
true);
1170 if ($duplicate_id > 0) {
1172 $affectedRows =
$ilDB->manipulateF(
1173 "UPDATE tst_solutions SET question_fi = %s WHERE question_fi = %s",
1174 array(
'integer',
'integer'),
1175 array($duplicate_id, $row[
"question_id"])
1179 $affectedRows =
$ilDB->manipulateF(
1180 "UPDATE tst_test_rnd_qst SET question_fi = %s WHERE question_fi = %s",
1181 array(
'integer',
'integer'),
1182 array($duplicate_id, $row[
"question_id"])
1186 $affectedRows =
$ilDB->manipulateF(
1187 "UPDATE tst_test_result SET question_fi = %s WHERE question_fi = %s",
1188 array(
'integer',
'integer'),
1189 array($duplicate_id, $row[
"question_id"])
1193 $affectedRows =
$ilDB->manipulateF(
1194 "UPDATE ass_log SET question_fi = %s WHERE question_fi = %s",
1195 array(
'integer',
'integer'),
1196 array($duplicate_id, $row[
"question_id"])
1200 array_push($result, $row);
1217 $tree = $DIC[
'tree'];
1221 foreach (
$path as $item) {
1222 if (($counter > 0) && ($counter < count(
$path) - 1)) {
1223 array_push($items, $item[
"title"]);
1227 $fullpath = join(
" > ", $items);
1228 include_once
"./Services/Utilities/classes/class.ilStr.php";
1229 if (strlen($fullpath) > 60) {
1241 public static function _getAvailableQuestionpools($use_object_id =
false, $equal_points =
false, $could_be_offline =
false, $showPath =
false, $with_questioncount =
false, $permission =
"read", $usr_id =
""): array
1245 $ilDB = $DIC[
'ilDB'];
1248 $result_array = array();
1249 $permission = (strlen($permission) == 0) ?
"read" : $permission;
1257 if (count($obj_ids)) {
1258 $in =
$ilDB->in(
'object_data.obj_id', $obj_ids,
false,
'integer');
1259 if ($could_be_offline) {
1260 $result =
$ilDB->query(
"SELECT qpl_questionpool.*, object_data.title FROM qpl_questionpool, object_data WHERE " .
1261 "qpl_questionpool.obj_fi = object_data.obj_id AND $in ORDER BY object_data.title");
1263 $result =
$ilDB->queryF(
1264 "SELECT qpl_questionpool.*, object_data.title FROM qpl_questionpool, object_data WHERE " .
1265 "qpl_questionpool.obj_fi = object_data.obj_id AND $in AND qpl_questionpool.isonline = %s " .
1266 "ORDER BY object_data.title",
1271 while ($row =
$ilDB->fetchAssoc($result)) {
1273 if ($equal_points) {
1279 $ref_id = array_search($row[
"obj_fi"], $obj_ids);
1280 $title = (($showPath) ? $titles[$ref_id] : $row[
"title"]);
1281 if ($with_questioncount) {
1282 $title .=
" [" . $row[
"questioncount"] .
" " . ($row[
"questioncount"] == 1 ?
$lng->
txt(
"ass_question") :
$lng->
txt(
"assQuestions")) .
"]";
1285 if ($use_object_id) {
1286 $result_array[$row[
"obj_fi"]] = array(
1287 'qpl_id' => $row[
'obj_fi'],
1288 'qpl_title' => $row[
'title'],
1290 "count" => $row[
"questioncount"]
1293 $result_array[
$ref_id] = array(
1294 'qpl_id' => $row[
'obj_fi'],
1295 'qpl_title' => $row[
'title'],
1297 "count" => $row[
"questioncount"]
1303 return $result_array;
1309 $ilDB = $DIC[
'ilDB'];
1311 $questions = array();
1312 $result =
$ilDB->queryF(
1313 "SELECT qpl_questions.question_id FROM qpl_questions WHERE qpl_questions.original_id IS NULL AND qpl_questions.tstamp > 0 AND qpl_questions.obj_fi = %s",
1315 array($this->
getId())
1317 while ($row =
$ilDB->fetchAssoc($result)) {
1318 array_push($questions, $row[
"question_id"]);
1330 $newObj = parent::cloneObject($a_target_id, $a_copy_id, $a_omit_tree);
1334 if ($cp_options->isRootNode($this->getRefId())) {
1335 $newObj->setOnline(0);
1340 $newObj->saveToDb();
1344 $questionIdsMap = array();
1345 foreach ($questions as $question_id) {
1346 $newQuestionId = $newObj->copyQuestion($question_id, $newObj->getId());
1347 $questionIdsMap[$question_id] = $newQuestionId;
1351 include_once
"./Services/MetaData/classes/class.ilMD.php";
1353 $md->cloneMD($newObj->getId(), 0, $newObj->getType());
1356 $newObj->updateMetaData();
1358 require_once
'Modules/TestQuestionPool/classes/class.ilQuestionPoolTaxonomiesDuplicator.php';
1360 $duplicator->setSourceObjId($this->
getId());
1361 $duplicator->setSourceObjType($this->
getType());
1362 $duplicator->setTargetObjId($newObj->getId());
1363 $duplicator->setTargetObjType($newObj->getType());
1364 $duplicator->setQuestionIdMapping($questionIdsMap);
1365 $duplicator->duplicate($duplicator->getAllTaxonomiesForSourceObject());
1367 $duplicatedTaxKeyMap = $duplicator->getDuplicatedTaxonomiesKeysMap();
1368 $newObj->setNavTaxonomyId($duplicatedTaxKeyMap->getMappedTaxonomyId($this->getNavTaxonomyId()));
1369 $newObj->saveToDb();
1374 public function getQuestionTypes($all_tags =
false, $fixOrder =
false, $withDeprecatedTypes =
true): array
1376 return self::_getQuestionTypes($all_tags, $fixOrder, $withDeprecatedTypes);
1379 public static function _getQuestionTypes($all_tags =
false, $fixOrder =
false, $withDeprecatedTypes =
true): array
1382 $ilDB = $DIC[
'ilDB'];
1385 include_once
"./Modules/Test/classes/class.ilObjAssessmentFolder.php";
1388 $result =
$ilDB->query(
"SELECT * FROM qpl_qst_type");
1390 while ($row =
$ilDB->fetchAssoc($result)) {
1391 if ($all_tags || (!in_array($row[
"question_type_id"], $forbidden_types))) {
1392 $ilLog = $DIC[
'ilLog'];
1394 if ($row[
"plugin"] == 0) {
1395 $types[
$lng->
txt($row[
"type_tag"])] = $row;
1397 $component_factory = $DIC[
'component.factory'];
1399 foreach ($component_factory->getActivePluginsInSlot(
"qst") as $pl) {
1400 if (strcmp($pl->getQuestionType(), $row[
"type_tag"]) == 0) {
1401 $types[$pl->getQuestionTypeTranslation()] = $row;
1408 require_once
'Modules/TestQuestionPool/classes/class.ilAssQuestionTypeOrderer.php';
1411 $types = $orderer->getOrderedTypes($withDeprecatedTypes);
1419 $ilDB = $DIC[
'ilDB'];
1421 $query =
"SELECT type_tag FROM qpl_qst_type WHERE question_type_id = %s";
1422 $types = array(
'integer');
1423 $values = array($type_id);
1426 if ($row =
$ilDB->fetchAssoc($result)) {
1427 return $row[
'type_tag'];
1435 $ilDB = $DIC[
'ilDB'];
1437 $ilLog = $DIC[
'ilLog'];
1438 $component_factory = $DIC[
'component.factory'];
1441 $result =
$ilDB->query(
"SELECT * FROM qpl_qst_type");
1443 while ($row =
$ilDB->fetchAssoc($result)) {
1444 if ($row[
"plugin"] == 0) {
1445 $types[$row[
'type_tag']] =
$lng->
txt($row[
"type_tag"]);
1447 foreach ($component_factory->getActivePluginsInSlot(
"qst") as $pl) {
1448 if (strcmp($pl->getQuestionType(), $row[
"type_tag"]) == 0) {
1449 $types[$row[
'type_tag']] = $pl->getQuestionTypeTranslation();
1477 $allowed_types = array(
1478 "assSingleChoice" => 1,
1479 "assMultipleChoice" => 2,
1480 "assKprimChoice" => 3,
1481 "assClozeTest" => 4,
1482 "assMatchingQuestion" => 5,
1483 "assOrderingQuestion" => 6,
1484 "assOrderingHorizontal" => 7,
1485 "assImagemapQuestion" => 8,
1486 "assTextSubset" => 9,
1487 "assErrorText" => 10,
1492 foreach ($qtypes as $k => $t) {
1494 if (isset($allowed_types[$t[
"type_tag"]])) {
1495 $t[
"order"] = $allowed_types[$t[
"type_tag"]];
1506 $ilDB = $DIC[
'ilDB'];
1508 $questions = array();
1509 $result =
$ilDB->queryF(
1510 "SELECT qpl_questions.*, qpl_qst_type.* FROM qpl_questions, qpl_qst_type WHERE qpl_questions.original_id IS NULL AND qpl_questions.obj_fi = %s AND qpl_questions.tstamp > 0 AND qpl_questions.question_type_fi = qpl_qst_type.question_type_id",
1512 array($this->
getId())
1514 while ($row =
$ilDB->fetchAssoc($result)) {
1515 array_push($questions, $row);
1529 $ilDB = $DIC[
'ilDB'];
1530 $result =
$ilDB->manipulateF(
1531 "UPDATE qpl_questionpool SET questioncount = %s, tstamp = %s WHERE obj_fi = %s",
1532 array(
'integer',
'integer',
'integer'),
1543 public function isPluginActive($questionType):
bool 1547 $component_repository = $DIC[
'component.repository'];
1549 if (!$component_repository->getComponentByTypeAndName(
1552 )->getPluginSlotById(
'qst')->hasPluginName($questionType)) {
1556 return $component_repository
1557 ->getComponentByTypeAndName(
1561 ->getPluginSlotById(
1575 $ilDB = $DIC[
'ilDB'];
1578 require_once
'Modules/TestQuestionPool/classes/class.ilAssIncompleteQuestionPurger.php';
1580 $incompleteQuestionPurger->setOwnerId(
$ilUser->getId());
1581 $incompleteQuestionPurger->purge();
1591 require_once
'Services/Taxonomy/classes/class.ilObjTaxonomy.php';
1615 if (self::$isSkillManagementGloballyActivated === null) {
1618 self::$isSkillManagementGloballyActivated = $skmgSet->isActivated();
1621 return self::$isSkillManagementGloballyActivated;
1626 require_once
'Modules/TestQuestionPool/classes/class.ilObjQuestionPoolXMLParser.php';
1628 $parser->startParsing();
raiseError(string $a_msg, int $a_err_obj)
wrapper for downward compability
static get(string $a_var)
const ORDER_MODE_FIX
order mode with fixed priority for ordering
static _getAvailableQuestionpools($use_object_id=false, $equal_points=false, $could_be_offline=false, $showPath=false, $with_questioncount=false, $permission="read", $usr_id="")
Returns the available question pools for the active user.
exportXMLMetaData(&$a_xml_writer)
export content objects meta data to xml (see ilias_co.dtd)
exportXMLPageObjects(&$a_xml_writer, $a_inst, &$expLog, $questions)
export page objects to xml (see ilias_co.dtd)
static _isWriteable($object_id, $user_id)
Returns true, if the question pool is writeable by a given user.
populateQuestionSkillAssignmentsXml(ilXmlWriter &$a_xml_writer, $questions)
const ORDER_MODE_ALPHA
order mode that orders by alphanumerical priority
moveToClipboard($question_id)
Moves a question to the clipboard.
exportXMLMediaObjects(&$a_xml_writer, $a_inst, $a_target_dir, &$expLog)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
exportFileItems($target_dir, &$expLog)
export files of file itmes
getQuestiontype($question_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setNavTaxonomyId($navTaxonomyId)
static _lookupOnline($a_obj_id, $is_reference=false)
pasteFromClipboard()
Copies/Moves a question from the clipboard.
objectToXmlWriter(ilXmlWriter &$a_xml_writer, $a_inst, $a_target_dir, &$expLog, $questions)
export pages of test to xml (see ilias_co.dtd)
static getQuestionTypeByTypeId($type_id)
static _getAllReferences(int $id)
get all reference ids for object ID
getExportDirectory($type="")
get export directory of questionpool
deleteQuestion($question_id)
Deletes a question from the question pool.
createReference()
Creates a database reference id for the object (saves the object to the database and creates a refere...
_getFullPathToQpl($ref_id)
Retrieves the full path to a question pool with a given reference id.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _hasUntrashedReference(int $obj_id)
checks whether an object has at least one reference that is not in trash
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getPrintviewQuestions()
Calculates the data for the print view of the questionpool.
static getUsageOfObject(int $a_obj_id, bool $a_include_titles=false)
static _isUsedInRandomTest(int $question_id)
& getQuestionDetails($question_ids)
Returns an array containing the qpl_question and qpl_qst_type fields for an array of question ids...
loadLanguageModule(string $a_module)
Load language module.
static subStr(string $a_str, int $a_start, ?int $a_length=null)
copyQuestion($question_id, $questionpool_to)
Copies a question into another question pool.
getImportMapping()
get array of (two) new created questions for import id
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
saveToDb()
Saves a ilObjQuestionpool object to a database.
static _getExportDirectory(int $a_obj_id, string $a_type="xml", string $a_obj_type="", string $a_entity="")
Get export directory for an repository object.
setOnline($a_online_status)
Sets the questionpool online status.
getPathFull(int $a_endnode_id, int $a_startnode_id=0)
get path from a given startnode to a given endnode if startnode is not given the rootnode is startnod...
exportXMLSettings($xmlWriter)
static _lookupObjId(int $ref_id)
static instantiateQuestionGUI(int $a_question_id)
cloneObject(int $a_target_id, int $a_copy_id=0, bool $a_omit_tree=false)
Creates a 1:1 copy of the object and places the copy in a given repository.
xmlEndTag(string $tag)
Writes an endtag.
setSkillServiceEnabled($skillServiceEnabled)
modifyExportIdentifier($a_tag, $a_param, $a_value)
static _hasEqualPoints($a_obj_id, $is_reference=false)
Checks a question pool for questions with the same maximum points.
static strLen(string $a_string)
getQuestionTypes($all_tags=false, $fixOrder=false, $withDeprecatedTypes=true)
static collectFileItems(ilPageObject $a_page, DOMDocument $a_domdoc)
Get all file items that are used within the page.
static instantiateQuestion(int $question_id)
static & _getSelfAssessmentQuestionTypes($all_tags=false)
Get all self assessment question types.
duplicateQuestion($question_id)
Duplicates a question for a questionpool.
setShowTaxonomies($showTaxonomies)
questionsToXML($questions)
Returns a QTI xml representation of a list of questions.
static _updateQuestionCount($object_id)
Updates the number of available questions for a question pool in the database.
static _prepareCloneSelection(array $ref_ids, string $new_type, bool $show_path=true)
Prepare copy wizard object selection.
createQuestion($question_type, $question_id=-1)
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
__construct($a_id=0, $a_call_by_reference=true)
Constructor public.
static _getForbiddenQuestionTypes()
Returns the forbidden questiontypes for ILIAS.
cleanupClipboard($deletedQuestionId)
static _setImportDirectory($a_import_dir=null)
set import directory
header include for all ilias files.
update()
update object data
createExportDirectory()
creates data directory for export files (data_dir/qpl_data/qpl_<id>/export, depending on data directo...
checkQuestionParent($questionId)
static _getObjectsByOperations( $a_obj_type, string $a_operation, int $a_usr_id=0, int $limit=0)
Get all objects of a specific type and check access This function is not recursive, instead it parses the serialized rbac_pa entries.
copyToClipboard($question_id)
Copies a question to the clipboard.
static getDataDir()
get data directory (outside webspace)
read($a_force_db=false)
read object data from db into object
& getAllQuestions()
Retrieve an array containing all question ids of the questionpool.
static $isSkillManagementGloballyActivated
static _getQuestionCount($questionpool_id, $complete_questions_only=false)
Returns the number of questions in a question pool.
static isSkillManagementGloballyActivated()
__construct(Container $dic, ilPlugin $plugin)
getTaxonomyIds()
get ids of all taxonomies corresponding to current pool
loadFromDb()
Loads a ilObjQuestionpool object from a database.
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
static _includeClass(string $question_type, int $gui=0)
static _getInstance(int $a_copy_id)
static getQuestionTypeTranslations()
static _getImportDirectory()
get import directory of lm
static insertInstIntoID(string $a_value)
inserts installation id into ILIAS id
static _createImportDirectory()
creates data directory for import files (data_dir/qpl_data/qpl_<id>/import, depending on data directo...
static clear(string $a_var)
static set(string $a_var, $a_val)
Set a value.
create($a_upload=false)
create questionpool object
isInUse($question_id)
Checks whether the question is in use or not.
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
& getDeleteableQuestionDetails($question_ids)
Returns an array containing the qpl_question and qpl_qst_type fields of deleteable questions for an a...
static _getQuestionTypes($all_tags=false, $fixOrder=false, $withDeprecatedTypes=true)