39 $this->db = $DIC->database();
40 $this->
lng = $DIC->language();
51 $result =
$ilDB->queryF(
56 if ($result->numRows() === 1) {
57 return $ilDB->fetchAssoc($result);
67 $result =
$ilDB->queryF(
72 if ($result->numRows() === 1) {
76 $this->label = (string) $data[
'label'];
78 $this->
setObjId((
int) $data[
"obj_fi"]);
79 $this->
setAuthor((
string) $data[
"author"]);
80 $this->
setOwner((
int) $data[
"owner_fi"]);
86 $this->use_min_answers = (bool) $data[
'use_min_answers'];
87 $this->nr_min_answers = (string) $data[
'nr_min_answers'];
88 $this->nr_max_answers = (string) $data[
'nr_max_answers'];
90 $this->categories->flushCategories();
91 $result =
$ilDB->queryF(
92 "SELECT svy_variable.*, svy_category.title, svy_category.neutral FROM svy_variable, svy_category WHERE svy_variable.question_fi = %s AND svy_variable.category_fi = svy_category.category_id ORDER BY sequence ASC",
96 if ($result->numRows() > 0) {
97 while ($data =
$ilDB->fetchAssoc($result)) {
98 $this->categories->addCategory((
string) $data[
"title"], (
int) $data[
"other"], (
int) $data[
"neutral"], null, ($data[
'scale']) ?: ($data[
'sequence'] + 1));
102 parent::loadFromDb($question_id);
111 $this->categories->getCategoryCount()
120 if ($affectedRows === 1) {
124 array($this->
getId())
127 "INSERT INTO " . $this->
getAdditionalTableName() .
" (question_fi, orientation, use_min_answers, nr_min_answers, nr_max_answers) VALUES (%s, %s, %s, %s, %s)",
128 array(
'integer',
'text',
'integer',
'integer',
'integer'),
132 ($this->use_min_answers) ? 1 : 0,
133 ($this->nr_min_answers > 0) ? $this->nr_min_answers : null,
134 ($this->nr_max_answers > 0) ? $this->nr_max_answers : null
142 return $affectedRows;
149 $affectedRows =
$ilDB->manipulateF(
150 "DELETE FROM svy_variable WHERE question_fi = %s",
152 array($this->
getId())
155 for (
$i = 0;
$i < $this->categories->getCategoryCount();
$i++) {
156 $cat = $this->categories->getCategory(
$i);
158 $next_id =
$ilDB->nextId(
'svy_variable');
159 $affectedRows =
$ilDB->manipulateF(
160 "INSERT INTO svy_variable (variable_id, category_fi, question_fi, value1, other, sequence, scale, tstamp) VALUES (%s, %s, %s, %s, %s, %s, %s, %s)",
161 array(
'integer',
'integer',
'integer',
'float',
'integer',
'integer',
'integer',
'integer'),
162 array($next_id, $category_id, $this->
getId(), (
$i + 1), $cat->other,
$i, ($cat->scale > 0) ? $cat->scale : null, time())
169 bool $a_include_header =
true,
170 bool $obligatory_state =
false 173 $a_xml_writer->xmlHeader();
174 $this->
insertXML($a_xml_writer, $a_include_header);
175 $xml = $a_xml_writer->xmlDumpMem(
false);
176 if (!$a_include_header) {
177 $pos = strpos(
$xml,
"?>");
188 bool $a_include_header =
true 191 "id" => $this->
getId(),
200 if (strlen($this->label)) {
202 "label" => $this->label,
207 $a_xml_writer->
xmlStartTag(
"questiontext", $attrs);
209 $a_xml_writer->
xmlEndTag(
"questiontext");
213 for (
$i = 0;
$i < $this->categories->getCategoryCount();
$i++) {
217 if (strlen($this->categories->getCategory(
$i)->other)) {
218 $attrs[
'other'] = $this->categories->getCategory(
$i)->other;
220 if (strlen($this->categories->getCategory(
$i)->neutral)) {
221 $attrs[
'neutral'] = $this->categories->getCategory(
$i)->neutral;
223 if (strlen($this->categories->getCategory(
$i)->label)) {
224 $attrs[
'label'] = $this->categories->getCategory(
$i)->label;
226 if (strlen($this->categories->getCategory(
$i)->scale)) {
227 $attrs[
'scale'] = $this->categories->getCategory(
$i)->scale;
229 $a_xml_writer->
xmlStartTag(
"response_multiple", $attrs);
230 $this->
addMaterialTag($a_xml_writer, $this->categories->getCategory(
$i)->title);
231 $a_xml_writer->
xmlEndTag(
"response_multiple");
236 if (count($this->material)) {
237 if (preg_match(
"/il_(\d*?)_(\w+)_(\d+)/", $this->material[
"internal_link"], $matches)) {
239 "label" => $this->material[
"title"]
242 $intlink =
"il_" .
IL_INST_ID .
"_" . $matches[2] .
"_" . $matches[3];
243 if (strcmp($matches[1],
"") !== 0) {
244 $intlink = $this->material[
"internal_link"];
246 $a_xml_writer->
xmlElement(
"mattext", null, $intlink);
253 $a_xml_writer->
xmlElement(
"fieldlabel", null,
"orientation");
255 $a_xml_writer->
xmlEndTag(
"metadatafield");
257 $a_xml_writer->
xmlElement(
"fieldlabel", null,
"use_min_answers");
258 $a_xml_writer->
xmlElement(
"fieldentry", null, $this->use_min_answers);
259 $a_xml_writer->
xmlEndTag(
"metadatafield");
261 $a_xml_writer->
xmlElement(
"fieldlabel", null,
"nr_min_answers");
262 $a_xml_writer->
xmlElement(
"fieldentry", null, $this->nr_min_answers);
263 $a_xml_writer->
xmlEndTag(
"metadatafield");
265 $a_xml_writer->
xmlElement(
"fieldlabel", null,
"nr_max_answers");
266 $a_xml_writer->
xmlElement(
"fieldentry", null, $this->nr_max_answers);
267 $a_xml_writer->
xmlEndTag(
"metadatafield");
275 return "SurveyMultipleChoiceQuestion";
285 $entered_value = $post_data[$this->
getId() .
"_value"] ??
"";
287 if (is_array($entered_value)) {
288 foreach ($entered_value as $idx => $value) {
289 $data[] = array(
"value" => $value,
290 "textanswer" => $post_data[$this->
getId() .
'_' . $value .
'_other'] ??
"" 294 for (
$i = 0;
$i < $this->categories->getCategoryCount();
$i++) {
295 $cat = $this->categories->getCategory(
$i);
298 if (!is_array($entered_value) || !in_array(
$i, $entered_value)) {
299 if (strlen($post_data[$this->
getId() .
"_" .
$i .
"_other"])) {
301 "textanswer" => $post_data[$this->
getId() .
'_' .
$i .
'_other'] ??
"",
318 $entered_value = (array) ($post_data[$this->
getId() .
"_value"] ?? []);
319 if (!$this->
getObligatory() && (count($entered_value) === 0)) {
323 if ($this->use_min_answers && $this->nr_min_answers > 0 && $this->nr_max_answers > 0 && $this->nr_min_answers == $this->nr_max_answers && count($entered_value) !== (
int) $this->nr_max_answers) {
324 return sprintf($this->
lng->txt(
"err_no_exact_answers"), $this->nr_min_answers);
326 if ($this->use_min_answers && $this->nr_min_answers > 0 && count($entered_value) < $this->nr_min_answers) {
327 return sprintf($this->
lng->txt(
"err_no_min_answers"), $this->nr_min_answers);
329 if ($this->use_min_answers && $this->nr_max_answers > 0 && count($entered_value) > $this->nr_max_answers) {
330 return sprintf($this->
lng->txt(
"err_no_max_answers"), $this->nr_max_answers);
332 if (count($entered_value) == 0) {
333 return $this->
lng->txt(
"question_mr_not_checked");
335 for (
$i = 0;
$i < $this->categories->getCategoryCount();
$i++) {
336 $cat = $this->categories->getCategory(
$i);
338 if (in_array(
$i, $entered_value)) {
339 if (array_key_exists($this->
getId() .
"_" .
$i .
"_other", $post_data) && !strlen($post_data[$this->
getId() .
"_" .
$i .
"_other"])) {
340 return $this->
lng->txt(
"question_mr_no_other_answer");
342 } elseif (strlen($post_data[$this->
getId() .
"_" .
$i .
"_other"] ??
"")) {
343 return $this->
lng->txt(
"question_mr_no_other_answer_checked");
353 bool $a_return =
false 358 $return_data = array();
360 if (is_array($post_data[$this->
getId() .
"_value"] ?? null)) {
361 foreach ($post_data[$this->
getId() .
"_value"] as $entered_value) {
362 if (strlen($entered_value) > 0) {
364 $next_id =
$ilDB->nextId(
'svy_answer');
368 $fields[
'answer_id'] = array(
"integer", $next_id);
369 $fields[
'question_fi'] = array(
"integer", $this->
getId());
370 $fields[
'active_fi'] = array(
"integer", $active_id);
371 $fields[
'value'] = array(
"float", (strlen($entered_value)) ? $entered_value : null);
372 $fields[
'textanswer'] = array(
"clob", isset($post_data[$this->
getId() .
"_" . $entered_value .
"_other"]) ? $this->
stripSlashesAddSpaceFallback($post_data[$this->
getId() .
"_" . $entered_value .
"_other"]) : null);
373 $fields[
'tstamp'] = array(
"integer", time());
375 $affectedRows =
$ilDB->insert(
"svy_answer", $fields);
377 $return_data[] = array(
"value" => $entered_value,
378 "textanswer" => $post_data[$this->
getId() .
"_" . $entered_value .
"_other"] ??
"");
391 foreach ($a_meta as
$key => $value) {
392 switch ($value[
"label"]) {
396 case "use_min_answers":
397 $this->use_min_answers = $value[
"entry"];
399 case "nr_min_answers":
400 $this->nr_min_answers = $value[
"entry"];
402 case "nr_max_answers":
403 $this->nr_max_answers = $value[
"entry"];
414 $categorytext .= $material[
"text"];
416 $this->categories->addCategory(
419 strlen($data[
'neutral']) ? $data[
'neutral'] : 0,
420 strlen($data[
'label']) ? $data[
'label'] : null,
421 strlen($data[
'scale']) ? $data[
'scale'] : null
433 return array(
"=",
"<>");
439 for (
$i = 0;
$i < $this->categories->getCategoryCount();
$i++) {
440 $category = $this->categories->getCategory(
$i);
441 $options[$category->scale - 1] = $category->scale .
" - " . $category->title;
453 $step3->setOptions($options);
454 $step3->setValue($default);
462 $category = $this->categories->getCategoryForScale((
int) $value + 1);
465 return $category->scale .
467 ((strlen($category->title)) ? $category->title : $this->lng->txt(
'other_answer'));
480 $db = $DIC->database();
482 "SELECT SUM(scale) sum_sum_score FROM svy_svy_qst sq " .
483 "JOIN svy_question q ON (sq.question_fi = q.question_id) " .
484 "JOIN svy_variable v ON (v.question_fi = q.question_id) " .
485 "WHERE sq.survey_fi = %s AND q.questiontype_fi = %s ",
486 [
"integer",
"integer"],
490 return (
int) $rec[
"sum_sum_score"];
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="")
saveCompletionStatus(int $original_id=0)
Saves the complete flag to the database.
saveToDb(int $original_id=0)
insertXML(ilXmlWriter $a_xml_writer, bool $a_include_header=true)
Adds the question XML to a given XMLWriter object.
setObligatory(bool $obligatory=true)
fetchAssoc(ilDBStatement $statement)
importAdditionalMetadata(array $a_meta)
setOriginalId(?int $original_id)
loadFromDb(int $question_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setComplete(bool $a_complete)
saveCategoryToDb(string $categorytext, int $neutral=0)
Saves a category to the database.
__construct(string $title="", string $description="", string $author="", string $questiontext="", int $owner=-1, int $orientation=0)
stripSlashesAddSpaceFallback(string $a_str)
Strip slashes with add space fallback, see https://mantis.ilias.de/view.php?id=19727 and https://mant...
xmlEndTag(string $tag)
Writes an endtag.
getWorkingDataFromUserInput(array $post_data)
setOrientation(int $orientation=0)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setAuthor(string $author="")
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.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
toXML(bool $a_include_header=true, bool $obligatory_state=false)
getPreconditionSelectValue(string $default, string $title, string $variable)
getQuestionDataArray(int $id)
setTitle(string $title="")
queryF(string $query, array $types, array $values)
saveUserInput(array $post_data, int $active_id, bool $a_return=false)
static getMaxSumScore(int $survey_id)
__construct(Container $dic, ilPlugin $plugin)
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
SurveyCategories $categories
getPreconditionValueOutput(string $value)
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
setDescription(string $description="")
importResponses(array $a_data)
setObjId(int $obj_id=0)
Set the reference(?) id of the container object.
checkUserInput(array $post_data, int $survey_id)