28 protected \ILIAS\SurveyQuestionPool\Editing\EditSessionRepository
$edit_manager;
50 protected \ILIAS\SurveyQuestionPool\Export\ImportSessionRepository
$import_manager;
54 string $description =
"",
56 string $questiontext =
"",
61 $this->
user = $DIC->user();
62 $this->db = $DIC->database();
63 $lng = $DIC->language();
64 $ilUser = $DIC->user();
72 $this->cumulated = array();
74 $this->author = $ilUser->fullname;
77 if ($this->owner === -1) {
78 $this->owner = $ilUser->getId();
81 $this->survey_id = -1;
82 $this->obligatory = 1;
83 $this->orientation = 0;
84 $this->materials = array();
85 $this->material = array();
86 $this->arrData = array();
89 $this->import_manager = $DIC->surveyQuestionPool()
94 $this->edit_manager = $DIC->surveyQuestionPool()
102 $this->complete = $a_complete;
112 int $questionpool_object = 0
117 if ($questionpool_object > 0) {
120 $ilDB->quote($questionpool_object,
'integer')
123 $result =
$ilDB->queryF(
124 "SELECT question_id FROM svy_question WHERE title = %s$refwhere",
128 return $result->numRows() > 0;
146 public function setId(
int $id = -1): void
153 $this->survey_id =
$id;
162 string $materials_file,
163 string $materials_name =
"" 165 if (empty($materials_name)) {
166 $materials_name = $materials_file;
168 if ((!empty($materials_name)) && (!array_key_exists($materials_name, $this->materials))) {
169 $this->materials[$materials_name] = $materials_file;
177 string $materials_filename,
178 string $materials_tempfilename =
"",
179 string $materials_name =
"" 181 if (!empty($materials_filename)) {
183 if (!file_exists($materialspath)) {
187 $materials_tempfilename,
189 $materialspath . $materials_filename
191 print
"image not uploaded!!!! ";
193 $this->
addMaterials($materials_filename, $materials_name);
199 string $materials_name =
"" 201 foreach ($this->materials as $key => $value) {
202 if (strcmp($key, $materials_name) === 0) {
206 unset($this->materials[$key]);
217 $this->materials = array();
225 $author = $ilUser->fullname;
273 switch ($this->orientation) {
279 $this->orientation = 0;
323 bool $for_survey =
true,
329 if ($this->
getId() <= 0) {
335 $original_id = $this->
getId();
337 if ($a_survey_id > 0) {
338 $clone->setObjId($a_survey_id);
341 $clone->setTitle($title);
344 $clone->setAuthor($author);
347 $clone->setOwner($owner);
350 $clone->saveToDb($original_id);
355 $clone->copyXHTMLMediaObjectsOfQuestion($original_id);
356 return $clone->getId();
360 int $target_questionpool,
363 if ($this->
getId() <= 0) {
368 $original_id = self::_getOriginalId($this->
getId(),
false);
370 $source_questionpool = $this->
getObjId();
371 $clone->setObjId($target_questionpool);
373 $clone->setTitle($title);
379 $clone->copyXHTMLMediaObjectsOfQuestion($original_id);
380 return $clone->getId();
390 foreach ($mobs as $mob) {
401 $this->material = [];
411 $ilDB = $DIC->database();
413 $result =
$ilDB->queryF(
414 "SELECT complete FROM svy_question WHERE question_id = %s",
418 if ($result->numRows()) {
419 $row =
$ilDB->fetchAssoc($result);
420 if ((
int) $row[
"complete"] === 1) {
435 $question_id = $this->
getId();
436 if ($original_id > 0) {
440 if ($this->
getId() > 0) {
441 $this->log->debug(
"UPDATE svy_question question_id=" . $question_id);
444 $affectedRows =
$ilDB->manipulateF(
445 "UPDATE svy_question SET complete = %s, tstamp = %s WHERE question_id = %s",
446 array(
'text',
'integer',
'integer'),
447 array($this->
isComplete(), time(), $question_id)
462 if ($this->
getId() === -1) {
464 $next_id =
$ilDB->nextId(
'svy_question');
465 $affectedRows =
$ilDB->insert(
"svy_question", array(
466 "question_id" => array(
"integer", $next_id),
468 "obj_fi" => array(
"integer", $this->
getObjId()),
469 "owner_fi" => array(
"integer", $this->
getOwner()),
470 "title" => array(
"text", $this->
getTitle()),
471 "label" => array(
"text", (strlen($this->label ??
"")) ? $this->label :
null),
473 "author" => array(
"text", $this->
getAuthor()),
476 "complete" => array(
"text", $this->
isComplete()),
477 "created" => array(
"integer", time()),
478 "original_id" => array(
"integer", ($original_id) ?: null),
479 "tstamp" => array(
"integer", time())
484 $this->
setId($next_id);
487 $affectedRows =
$ilDB->update(
"svy_question", array(
488 "title" => array(
"text", $this->
getTitle()),
489 "label" => array(
"text", (strlen($this->label ??
"")) ? $this->label :
null),
491 "author" => array(
"text", $this->
getAuthor()),
494 "complete" => array(
"text", $this->
isComplete()),
495 "tstamp" => array(
"integer", time())
497 "question_id" => array(
"integer", $this->
getId())
500 $this->log->debug(
"UPDATE svy_question id=" . $this->
getId() .
" SET: title=" . $this->
getTitle() .
" ...");
502 return $affectedRows;
516 $next_id =
$ilDB->nextId(
'svy_question');
517 $affectedRows =
$ilDB->manipulateF(
518 "INSERT INTO svy_question (question_id, questiontype_fi, " .
519 "obj_fi, owner_fi, title, description, author, questiontext, obligatory, complete, " .
520 "created, original_id, tstamp) VALUES " .
521 "(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
522 array(
'integer',
'integer',
'integer',
'integer',
'text',
'text',
'text',
'text',
523 'text',
'text',
'integer',
'integer',
'integer'),
540 $this->log->debug(
"INSERT INTO svy_question question_id= " . $next_id .
" questiontype_fi= " . $this->
getQuestionTypeID());
542 $this->
setId($next_id);
544 return $this->
getId();
552 return CLIENT_WEB_DIR .
"/survey/$this->obj_id/$this->id/images/";
560 return CLIENT_WEB_DIR .
"/survey/$this->obj_id/$this->id/materials/";
593 string $categorytext,
599 $result =
$ilDB->queryF(
600 "SELECT title, category_id FROM svy_category WHERE title = %s AND neutral = %s AND owner_fi = %s",
601 array(
'text',
'text',
'integer'),
602 array($categorytext, $neutral, $ilUser->getId())
607 if ($result->numRows()) {
608 while ($row =
$ilDB->fetchAssoc($result)) {
609 if (strcmp($row[
"title"], $categorytext) === 0) {
610 $returnvalue = $row[
"category_id"];
616 $next_id =
$ilDB->nextId(
'svy_category');
617 $affectedRows =
$ilDB->manipulateF(
618 "INSERT INTO svy_category (category_id, title, neutral, owner_fi, tstamp) VALUES (%s, %s, %s, %s, %s)",
619 array(
'integer',
'text',
'text',
'integer',
'integer'),
620 array($next_id, $categorytext, $neutral, $ilUser->getId(), time())
623 $this->log->debug(
"INSERT INTO svy_category id=" . $next_id);
625 $returnvalue = $next_id;
637 $this->log->debug(
"DELETE FROM " . $this->getAdditionalTableName());
640 "DELETE FROM " . $this->getAdditionalTableName() .
" WHERE question_fi = %s",
649 public function delete(
int $question_id):
void 652 $this->log->debug(
"Question Delete... " . $question_id);
653 if ($question_id < 1) {
657 $result =
$ilDB->queryF(
658 "SELECT obj_fi FROM svy_question WHERE question_id = %s",
662 if ($result->numRows() === 1) {
663 $row =
$ilDB->fetchAssoc($result);
664 $obj_id = $row[
"obj_fi"];
669 $affectedRows =
$ilDB->manipulateF(
670 "DELETE FROM svy_answer WHERE question_fi = %s",
675 $affectedRows =
$ilDB->manipulateF(
676 "DELETE FROM svy_constraint WHERE question_fi = %s",
681 $result =
$ilDB->queryF(
682 "SELECT constraint_fi FROM svy_qst_constraint WHERE question_fi = %s",
686 while ($row =
$ilDB->fetchObject($result)) {
687 $affectedRows =
$ilDB->manipulateF(
688 "DELETE FROM svy_constraint WHERE constraint_id = %s",
690 array($row->constraint_fi)
694 $affectedRows =
$ilDB->manipulateF(
695 "DELETE FROM svy_qst_constraint WHERE question_fi = %s",
699 $affectedRows =
$ilDB->manipulateF(
700 "DELETE FROM svy_qblk_qst WHERE question_fi = %s",
704 $affectedRows =
$ilDB->manipulateF(
705 "DELETE FROM svy_svy_qst WHERE question_fi = %s",
709 $affectedRows =
$ilDB->manipulateF(
710 "DELETE FROM svy_variable WHERE question_fi = %s",
714 $affectedRows =
$ilDB->manipulateF(
715 "DELETE FROM svy_question WHERE question_id = %s",
722 $affectedRows =
$ilDB->manipulateF(
723 "DELETE FROM svy_material WHERE question_fi = %s",
728 $this->log->debug(
"SET OF DELETES svy_answer, svy_constraint, svy_qst_constraint, svy_qblk_qst, svy_qst_oblig, svy_svy_qst, svy_variable, svy_question, svy_material WHERE question_fi = " . $question_id);
732 $directory =
CLIENT_WEB_DIR .
"/survey/" . $obj_id .
"/$question_id";
733 if (preg_match(
"/\d+/", $obj_id) and preg_match(
"/\d+/", $question_id) and is_dir($directory)) {
742 foreach ($mobs as $mob) {
747 $this->log->debug(
"Call ilSurveySkill::handleQuestionDeletion, q id: " . $question_id .
748 ", obj id: " . $obj_id);
751 $this->log->debug(
"UPDATE svy_question");
754 $ilDB->manipulate(
"UPDATE svy_question" .
755 " SET original_id = NULL" .
756 " WHERE original_id = " .
$ilDB->quote($question_id,
"integer"));
766 $ilDB = $DIC->database();
768 if ($question_id < 1) {
772 $result =
$ilDB->queryF(
773 "SELECT type_tag FROM svy_question, svy_qtype WHERE svy_question.question_id = %s AND svy_question.questiontype_fi = svy_qtype.questiontype_id",
777 if ($result->numRows() === 1) {
779 return $data[
"type_tag"];
788 public static function _getTitle(
int $question_id): string
792 $ilDB = $DIC->database();
794 $result =
$ilDB->queryF(
795 "SELECT title FROM svy_question WHERE svy_question.question_id = %s",
801 return (
string)
$data[
"title"];
811 bool $a_return_question_id_if_no_original =
true 815 $ilDB = $DIC->database();
816 $result =
$ilDB->queryF(
817 "SELECT * FROM svy_question WHERE question_id = %s",
821 if ($result->numRows() > 0) {
822 $row =
$ilDB->fetchAssoc($result);
823 if ($row[
"original_id"] > 0) {
824 return (
int) $row[
"original_id"];
825 } elseif ($a_return_question_id_if_no_original) {
826 return (
int) $row[
"question_id"];
837 $id = $this->
getId();
847 $this->log->debug(
"DELETE FROM svy_material WHERE question_fi = " . $this->
getOriginalId());
849 $affectedRows =
$ilDB->manipulateF(
850 "DELETE FROM svy_material WHERE question_fi = %s",
855 if (strlen($this->material[
"internal_link"] ??
"")) {
856 $next_id =
$ilDB->nextId(
'svy_material');
857 $affectedRows =
$ilDB->manipulateF(
858 "INSERT INTO svy_material (material_id, question_fi, internal_link, import_id, material_title, tstamp) VALUES (%s, %s, %s, %s, %s, %s)",
859 array(
'integer',
'integer',
'text',
'text',
'text',
'integer'),
860 array($next_id, $this->
getOriginalId(), $this->material[
"internal_link"], $this->material[
"import_id"], $this->material[
"title"], time())
863 $this->log->debug(
"INSERT svy_material material_id=" . $next_id .
" question_fi=" . $this->
getOriginalId());
865 if (preg_match(
"/il_(\d*?)_(\w+)_(\d+)/", $this->material[
"internal_link"], $matches)) {
876 $ilDB = $DIC->database();
878 if ($question_id < 1) {
882 $result =
$ilDB->queryF(
883 "SELECT question_id FROM svy_question WHERE question_id = %s",
887 return $result->numRows() === 1;
892 string $internal_link
895 if (preg_match(
"/il_(\d+)_(\w+)_(\d+)/", $internal_link, $matches)) {
896 switch ($matches[2]) {
913 if (strcmp($resolved_link,
"") === 0) {
914 $resolved_link = $internal_link;
917 $resolved_link = $internal_link;
919 return $resolved_link;
927 $ilDB = $DIC->database();
929 $result =
$ilDB->queryF(
930 "SELECT * FROM svy_material WHERE question_fi = %s",
934 if ($result->numRows()) {
935 while ($row =
$ilDB->fetchAssoc($result)) {
936 $internal_link = $row[
"internal_link"];
937 $resolved_link = self::_resolveInternalLink($internal_link);
938 if (strcmp($internal_link, $resolved_link) !== 0) {
940 $affectedRows =
$ilDB->manipulateF(
941 "UPDATE svy_material SET internal_link = %s, tstamp = %s WHERE material_id = %s",
942 array(
'text',
'integer',
'integer'),
943 array($resolved_link, time(), $row[
"material_id"])
949 if ($resolvedlinks) {
955 $result =
$ilDB->queryF(
956 "SELECT * FROM svy_material WHERE question_fi = %s",
960 if ($result->numRows()) {
961 while ($row =
$ilDB->fetchAssoc($result)) {
962 if (preg_match(
"/il_(\d*?)_(\w+)_(\d+)/", $row[
"internal_link"], $matches)) {
972 ?
int $a_parent_ref_id =
null 975 "lm" =>
"LearningModule",
976 "pg" =>
"PageObject",
977 "st" =>
"StructureObject",
978 "git" =>
"GlossaryItem",
979 "mob" =>
"MediaObject" 982 if (preg_match(
"/il__(\w+)_(\d+)/", $target, $matches)) {
984 $target_id = $matches[2];
985 switch ($linktypes[$matches[1]]) {
986 case "StructureObject":
989 case "LearningModule":
995 ) .
"/ilias.php?baseClass=ilLMPresentationGUI&obj_type=" . $linktypes[$type] .
"&cmd=media&ref_id=" . $a_parent_ref_id .
"&mob_id=" . $target_id;
1011 $ilDB = $DIC->database();
1013 if (($question_id < 1) || ($user_id < 1)) {
1017 $result =
$ilDB->queryF(
1018 "SELECT obj_fi FROM svy_question WHERE question_id = %s",
1022 if ($result->numRows() === 1) {
1023 $row =
$ilDB->fetchAssoc($result);
1024 $qpl_object_id = $row[
"obj_fi"];
1034 $result =
$ilDB->queryF(
1035 "SELECT questiontype_id FROM svy_qtype WHERE type_tag = %s",
1039 if ($result->numRows() === 1) {
1040 $row =
$ilDB->fetchAssoc($result);
1041 return (
int) $row[
"questiontype_id"];
1057 string $question_type,
1060 $type = $question_type;
1063 } elseif ($gui === 2) {
1064 $type .=
"Evaluation";
1066 if (file_exists(
"./components/ILIAS/SurveyQuestionPool/Questions/class." . $type .
".php")) {
1081 if (file_exists(
"./components/ILIAS/SurveyQuestionPool/Questions/class." . $type_tag .
".php")) {
1082 $lng = $DIC->language();
1083 return $lng->
txt($type_tag);
1094 $question_type = self::_getQuestionType($question_id);
1095 if ($question_type) {
1096 self::_includeClass($question_type);
1097 $question =
new $question_type();
1098 $question->loadFromDb($question_id);
1110 $question_type = self::_getQuestionType($question_id);
1111 if ($question_type) {
1112 self::_includeClass($question_type, 1);
1113 $guitype = $question_type .
"GUI";
1114 $question =
new $guitype($question_id);
1122 ?array $a_finished_ids =
null 1124 $question = self::_instanciateQuestion($question_id);
1125 if (is_null($a_finished_ids)) {
1126 $a_finished_ids = [];
1129 $question_type = self::_getQuestionType($question_id);
1130 self::_includeClass($question_type, 2);
1131 $class = $question_type .
"Evaluation";
1132 $ev =
new $class($question, $a_finished_ids);
1143 if (preg_match(
"/<[^>]*?>/", $a_text)) {
1161 if (strcmp($material[
"type"],
"mattext") === 0) {
1162 $result .= $material[
"material"]->getContent();
1164 if (strcmp($material[
"type"],
"matimage") === 0) {
1165 $matimage = $material[
"material"];
1166 if (preg_match(
"/(il_([0-9]+)_mob_([0-9]+))/", $matimage->getLabel(), $matches)) {
1168 $this->import_manager->addMob(
1169 $matimage->getLabel(),
1184 bool $close_material_tag =
true,
1185 bool $add_mobs =
true,
1186 ?array $a_attrs =
null 1190 "type" =>
"text/plain" 1192 if ($this->
isHTML($a_material)) {
1193 $attrs[
"type"] =
"text/xhtml";
1195 if (is_array($a_attrs)) {
1196 $attrs = array_merge($attrs, $a_attrs);
1202 foreach ($mobs as $mob) {
1205 "label" =>
"il_" .
IL_INST_ID .
"_mob_" . $mob,
1206 "uri" =>
"objects/" .
"il_" .
IL_INST_ID .
"_mob_" . $mob .
"/" . $mob_obj->getTitle(),
1207 "type" =>
"spl:html",
1208 "id" => $this->
getId()
1213 if ($close_material_tag) {
1223 bool $prepare_for_latex_output =
false 1357 public function __get(
string $value): ?string
1361 if (array_key_exists($value, $this->arrData)) {
1362 return (
string) $this->arrData[$value];
1369 public function __set(
string $key,
string $value): void
1373 $this->arrData[$key] = $value;
1388 $ilDB = $DIC->database();
1390 $ilDB->manipulate(
"UPDATE svy_question" .
1391 " SET original_id = " .
$ilDB->quote($a_original_id,
"integer") .
"," .
1392 " obj_fi = " .
$ilDB->quote($a_object_id,
"integer") .
1393 " WHERE question_id = " .
$ilDB->quote($a_question_id,
"integer"));
1397 bool $a_group_by_survey =
false 1401 $set =
$ilDB->query(
"SELECT q.question_id,s.obj_fi" .
1402 " FROM svy_question q" .
1403 " JOIN svy_svy_qst sq ON (sq.question_fi = q.question_id)" .
1404 " JOIN svy_svy s ON (s.survey_id = sq.survey_fi)" .
1405 " WHERE original_id = " .
$ilDB->quote($this->getId(),
"integer"));
1407 while ($row =
$ilDB->fetchAssoc($set)) {
1408 if (!$a_group_by_survey) {
1409 $res[] = (
int) $row[
"question_id"];
1411 $res[$row[
"obj_fi"]][] = (
int) $row[
"question_id"];
1427 $ilDB = $DIC->database();
1429 $set =
$ilDB->query(
"SELECT svy_svy.obj_fi FROM svy_svy_qst" .
1430 " JOIN svy_svy ON (svy_svy.survey_id = svy_svy_qst.survey_fi)" .
1431 " WHERE svy_svy_qst.question_fi = " .
$ilDB->quote($a_question_id,
"integer"));
1432 $row =
$ilDB->fetchAssoc($set);
1433 if (
$ilDB->numRows($set)) {
1434 return (
int) $row[
"obj_fi"];
1444 $ilDB = $DIC->database();
1446 $set =
$ilDB->query(
1447 "SELECT obj_fi FROM svy_question " .
1448 " WHERE question_id = " .
$ilDB->quote($a_qid,
"integer")
1450 if ($rec =
$ilDB->fetchAssoc($set)) {
1451 return (
int) $rec[
"obj_fi"];
1463 if ($str !== $a_str) {
static _replaceMediaObjectImageSrc(string $a_text, int $a_direction=0, string $nic='')
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
setQuestiontext(string $questiontext="")
addMaterials(string $materials_file, string $materials_name="")
saveCompletionStatus(int $original_id=0)
Saves the complete flag to the database.
deleteMaterial(string $materials_name="")
QTIMaterialToString(ilQTIMaterial $a_material)
Reads an QTI material tag an creates a text string.
setMaterialsfile(string $materials_filename, string $materials_tempfilename="", string $materials_name="")
Uploads and adds a material.
setSubtype(int $a_subtype)
getPreconditionSelectValue(string $default, string $title, string $variable)
Creates a form property for the precondition value.
loadFromDb(int $question_id)
load question data into object note: this base implementation only loads the material data ...
copyXHTMLMediaObjectsOfQuestion(int $a_q_id)
Copy media object usages from other question.
static getLogger(string $a_component_id)
Get component logger.
saveToDb(int $original_id=0)
Saves a SurveyQuestion object to a database.
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...
setObligatory(bool $obligatory=true)
getMaterialsPath()
Returns the materials path for web accessible materials of a question.
setOriginalId(?int $original_id)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
deleteAdditionalTableData(int $question_id)
Deletes datasets from the additional question table in the database.
getMaterialsPathWeb()
Returns the web image path for web accessable images of a question.
static _changeOriginalId(int $a_question_id, int $a_original_id, int $a_object_id)
Change original id of existing question in db.
flushMaterials()
Deletes all materials uris.
getQuestionDataArray(int $id)
Returns the question data.
setComplete(bool $a_complete)
usableForPrecondition()
Returns if the question is usable for preconditions.
static _getQuestionTypeName(string $type_tag)
Return the translation for a given question type.
static _getQuestionType(int $question_id)
Returns the question type of a question with a given id.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getTitle(int $question_id)
Returns the question title of a question with a given id.
static _cleanupMediaObjectUsage(string $a_text, string $a_usage_type, int $a_usage_id)
Synchronises appearances of media objects in $a_text with media object usage table.
saveCategoryToDb(string $categorytext, int $neutral=0)
Saves a category to the database.
getMaterial(int $a_index)
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
static handleQuestionDeletion(int $a_question_id, int $a_obj_id)
Remove question skill assignment.
stripSlashesAddSpaceFallback(string $a_str)
Strip slashes with add space fallback, see https://mantis.ilias.de/view.php?id=19727 and https://mant...
__construct(string $title="", string $description="", string $author="", string $questiontext="", int $owner=-1)
ILIAS SurveyQuestionPool Export ImportSessionRepository $import_manager
getPreconditionOptions()
Returns the options for preconditions.
static _isWriteable(int $object_id)
Returns true, if the question pool is writeable for the current user.
static removeTrailingPathSeparators(string $path)
static _saveLink(string $a_source_type, int $a_source_id, string $a_target_type, int $a_target_id, int $a_target_inst=0, string $a_source_lang="-")
save internal link information
static _isWriteable(int $question_id, int $user_id)
is question writeable by a certain user
xmlEndTag(string $tag)
Writes an endtag.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__set(string $key, string $value)
setOrientation(int $orientation=0)
static _isComplete(int $question_id)
Checks whether the question is complete or not.
static _instanciateQuestionEvaluation(int $question_id, ?array $a_finished_ids=null)
setAuthor(string $author="")
static _getInternalLinkHref(string $target="", ?int $a_parent_ref_id=null)
addMaterialTag(ilXmlWriter $a_xml_writer, string $a_material, bool $close_material_tag=true, bool $add_mobs=true, ?array $a_attrs=null)
Creates an XML material tag from a plain text or xhtml text.
getCopyIds(bool $a_group_by_survey=false)
getImagePathWeb()
Returns the web image path for web accessible images of a question.
static _deleteAllLinksOfSource(string $a_source_type, int $a_source_id, string $a_lang="-")
Delete all links of a given source.
importResponses(array $a_data)
Import response data from the question import file.
static _resolveInternalLink(string $internal_link)
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
static lookupObjFi(int $a_qid)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getIdForImportId(string $a_import_id)
get current object id for import id (static)
static _getIdForImportId(string $a_type, string $a_target)
Get current id for an import id.
static getMaxSumScore(int $survey_id)
Get max sum score for specific survey (and this question type)
static _resolveIntLinks(int $question_id)
static _includeClass(string $question_type, int $gui=0)
Include the php class file for a given question type.
static _getOriginalId(int $question_id, bool $a_return_question_id_if_no_original=true)
Returns the original id of a question.
getAvailableRelations()
Returns the available relations for the question.
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
ILIAS SurveyQuestionPool Editing EditSessionRepository $edit_manager
copyObject(int $target_questionpool, string $title="")
setTitle(string $title="")
prepareTextareaOutput(string $txt_output, bool $prepare_for_latex_output=false)
Prepares string for a text area output in surveys.
static _lookupSurveyObjId(int $a_question_id)
getImagePath()
Returns the image path for web accessible images of a question.
duplicate(bool $for_survey=true, string $title="", string $author="", int $owner=0, int $a_survey_id=0)
importAdditionalMetadata(array $a_meta)
Import additional meta data from the question import file.
questionTitleExists(string $title, int $questionpool_object=0)
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
static _instanciateQuestionGUI(int $question_id)
Get question gui object.
getObjId()
Get the reference(?) id of the container object.
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
setDescription(string $description="")
getWorkingDataFromUserInput(array $post_data)
Creates the user data of the svy_answer table from the POST data.
static _instanciateQuestion(int $question_id)
Get question object.
importAdjectives(array $a_data)
Import bipolar adjectives from the question import file.
Basic class for all survey question types The SurveyQuestionGUI class defines and encapsulates basic ...
setObjId(int $obj_id=0)
Set the reference(?) id of the container object.
importMatrix(array $a_data)
Import matrix rows from the question import file.
createNewQuestion()
Creates a new question with a 0 timestamp when a new question is created This assures that an ID is g...
static _questionExists(int $question_id)
getPreconditionValueOutput(string $value)
Returns the output for a precondition value.