19 require_once
'./Modules/Test/classes/inc.AssessmentConstants.php';
53 require_once
'Modules/TestQuestionPool/classes/feedback/class.ilAssConfigurableMultiOptionQuestionFeedback.php';
55 $this->minAutoComplete = self::MIN_LENGTH_AUTOCOMPLETE;
57 $this->ilDB = $DIC->database();
58 $this->identical_scoring = 1;
164 return $this->minAutoComplete ? $this->minAutoComplete : self::MIN_LENGTH_AUTOCOMPLETE;
169 if (strlen($this->title)
171 && $this->long_menu_text
172 &&
sizeof($this->answers) > 0
173 &&
sizeof($this->correct_answers) > 0
208 if (!is_array($correct_answers_row[0]) ||
sizeof($correct_answers_row[0]) == 0) {
211 if ($correct_answers_row[1] > 0) {
212 array_push(
$points, $correct_answers_row[1]);
235 if (!in_array($answer, $answer_options)) {
255 $sum += (float) $add[1];
264 $this->ilDB->manipulateF(
267 array( $this->
getId() )
269 $this->ilDB->manipulateF(
271 ) .
" (question_fi, long_menu_text, feedback_setting, min_auto_complete, identical_scoring) VALUES (%s, %s, %s, %s, %s)",
272 array(
"integer",
"text",
"integer",
"integer",
"integer"),
291 foreach ($gap[0] as $position => $answer) {
292 if ($type_array == null) {
295 $type = $type_array[$gap_number];
300 'question_fi' => array(
'integer', $this->
getId()),
301 'gap_number' => array(
'integer', (
int) $gap_number),
302 'position' => array(
'integer', (
int) $position)
305 'answer_text' => array(
'text', $answer),
306 'points' => array(
'float', (
float) str_replace(
',',
'.', $gap[1])),
307 'type' => array(
'integer', (
int)
$type)
311 $points += (float) str_replace(
',',
'.', $gap[1]);
320 foreach ($array as $gap => $values) {
322 if (is_array($values)) {
323 foreach ($values as
$key => $value) {
324 $file_content .= $value .
"\n";
326 $file_content = rtrim($file_content,
"\n");
328 fwrite($file, $file_content);
338 if ($files ===
false) {
344 foreach ($files as $file) {
345 $gap = str_replace(
'.txt',
'', basename($file));
346 $answers[(
int) $gap] = explode(
"\n", file_get_contents($file));
366 throw new ilException(
'Cannot create export directory');
370 !is_dir($folder_name) ||
371 !is_readable($folder_name) ||
372 !is_writable($folder_name)
374 throw new ilException(
'Cannot create export directory');
380 $result = $this->ilDB->queryF(
385 if ($result->numRows() == 1) {
386 $data = $this->ilDB->fetchAssoc($result);
387 $this->
setId($question_id);
391 $this->
setComment((
string) $data[
"description"]);
397 include_once(
"./Services/RTE/classes/class.ilRTE.php");
402 if (isset($data[
'feedback_setting'])) {
420 parent::loadFromDb($question_id);
425 $res = $this->db->queryF(
426 "SELECT * FROM {$this->getAnswerTableName()} WHERE question_fi = %s ORDER BY gap_number, position ASC",
432 while (
$data = $this->ilDB->fetchAssoc(
$res)) {
444 $res = $this->db->queryF(
445 'SELECT gap_number, answer_text FROM ' . $this->
getAnswerTableName() .
' WHERE question_fi = %s',
449 while (
$data = $this->ilDB->fetchAssoc(
$res)) {
463 $res = $this->db->queryF(
464 'SELECT answer_text FROM ' . $this->
getAnswerTableName() .
' WHERE question_fi = %s AND gap_number = %s',
465 array(
'integer',
'integer'),
466 array($question_id, $gap_id)
468 while (
$data = $this->ilDB->fetchAssoc(
$res)) {
477 $res = $this->db->queryF(
478 'SELECT points FROM ' . $this->
getAnswerTableName() .
' WHERE question_fi = %s AND gap_number = %s GROUP BY gap_number, points',
479 array(
'integer',
'integer'),
480 array($question_id, $gap_id)
482 while (
$data = $this->ilDB->fetchAssoc(
$res)) {
502 if ($this->
id <= 0) {
508 $this_id = $this->
getId();
512 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
516 if ((
int) $testObjId > 0) {
517 $clone->setObjId($testObjId);
537 $clone->copyPageOfQuestion($this_id);
538 $clone->copyXHTMLMediaObjectsOfQuestion($this_id);
539 $clone->onDuplicate($thisObjId, $this_id, $clone->getObjId(), $clone->getId());
546 if ($this->
getId() <= 0) {
547 throw new RuntimeException(
'The question has not been saved. It cannot be duplicated');
551 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
554 $source_questionpool_id = $this->
getObjId();
555 $clone->setObjId($target_questionpool_id);
564 $clone->onCopy($source_questionpool_id,
$original_id, $clone->getObjId(), $clone->getId());
571 if ($this->
getId() <= 0) {
572 throw new RuntimeException(
'The question has not been saved. It cannot be duplicated');
575 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
578 $sourceParentId = $this->
getObjId();
584 $clone->setObjId($targetParentId);
586 if ($targetQuestionTitle) {
587 $clone->setTitle($targetQuestionTitle);
591 $clone->copyPageOfQuestion($sourceQuestionId);
592 $clone->copyXHTMLMediaObjectsOfQuestion($sourceQuestionId);
594 $clone->onCopy($sourceParentId, $sourceQuestionId, $clone->getObjId(), $clone->getId());
613 if ($returndetails) {
614 throw new ilTestException(
'return details not implemented for ' . __METHOD__);
617 $found_values = array();
618 if (is_null($pass)) {
622 while (
$data = $this->ilDB->fetchAssoc($result)) {
631 if ($found_values == null) {
635 $solution_values_text = array();
636 foreach ($found_values as
$key => $answer) {
643 if ((in_array($answer, $solution_values_text)) && (
$points > 0)) {
648 array_push($solution_values_text, $answer);
655 public function saveWorkingData(
int $active_id,
int $pass = null,
bool $authorized =
true): bool
657 if (is_null($pass)) {
658 include_once
"./Modules/Test/classes/class.ilObjTest.php";
664 $this->
getProcessLocker()->executeUserSolutionUpdateLockOperation(
function () use (&$entered_values, $active_id, $pass, $authorized) {
669 if (strlen($value)) {
676 if ($entered_values) {
677 include_once(
"./Modules/Test/classes/class.ilObjAssessmentFolder.php");
681 "log_user_entered_values",
683 ), $active_id, $this->
getId());
686 include_once(
"./Modules/Test/classes/class.ilObjAssessmentFolder.php");
690 "log_user_not_entered_values",
692 ), $active_id, $this->
getId());
706 $ilDB = $DIC[
'ilDB'];
709 'authorized' =>
false,
710 'intermediate' =>
false 714 SELECT authorized, COUNT(*) cnt 716 WHERE active_fi = " .
$ilDB->quote($activeId,
'integer') .
" 717 AND question_fi = " .
$ilDB->quote($this->
getId(),
'integer') .
" 718 AND pass = " .
$ilDB->quote($pass,
'integer') .
" 722 if ($this->
getStep() !== null) {
732 while ($row =
$ilDB->fetchAssoc($result)) {
733 if ($row[
'authorized']) {
734 $return[
'authorized'] = $row[
'cnt'] > 0;
736 $return[
'intermediate'] = $row[
'cnt'] > 0;
746 $solutionSubmit = array();
749 foreach ($answer as
$key => $value) {
750 $solutionSubmit[
$key] = $value;
753 return $solutionSubmit;
758 $answer = $_POST[
'answer'] ?? null;
759 if (is_array($answer)) {
760 $answer = array_map(
function ($value) {
774 return "assLongMenu";
779 return 'qpl_qst_lome';
796 parent::setExportDetailsXLS($worksheet, $startrow, $active_id, $pass);
802 $worksheet->
setCell($startrow +
$i, 0, $this->
lng->txt(
'assLongMenu') .
" $i");
804 foreach ($solution as $solutionvalue) {
805 if ($gap_index == $solutionvalue[
"value1"]) {
807 case self::ANSWER_TYPE_SELECT_VAL:
808 $value = $solutionvalue[
"value2"];
812 $worksheet->
setCell($startrow +
$i, 2, $value);
814 case self::ANSWER_TYPE_TEXT_VAL:
815 $worksheet->
setCell($startrow +
$i, 2, $solutionvalue[
"value2"]);
823 return $startrow +
$i + 1;
841 $result->setReachedPercentage((
$points / $max_points) * 100);
866 $this->ilDB->manipulateF(
869 array( $question_id )
873 public function delete(
int $question_id):
void 875 parent::delete($question_id);
892 include_once(
"./Services/RTE/classes/class.ilRTE.php");
894 $result[
'id'] = $this->
getId();
902 $result[
'feedback'] = array(
903 'onenotcorrect' => $this->
formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(),
false)),
904 'allcorrect' => $this->
formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(),
true))
910 $result[
'mobs'] =
$mobs;
911 return json_encode($result);
916 return ($this->identical_scoring) ? 1 : 0;
924 $this->identical_scoring = ($a_identical_scoring) ? 1 : 0;
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...
getSolutionValues($active_id, $pass=null, bool $authorized=true)
Loads solutions of a given user from the database an returns it.
setNrOfTries(int $a_nr_of_tries)
static getInstance($identifier)
static stripSlashesRecursive($a_data, bool $a_strip_html=true, string $a_allow="")
static _getPass($active_id)
Retrieves the actual pass of a given user for a given test.
Abstract basic class which is to be extended by the concrete assessment question type classes...
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
getColumnCoord(int $a_col)
Get column "name" from number.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getOriginalId(int $question_id)
migrateToLmContent($content)
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
setComment(string $comment="")
float $points
The maximum available points for the question.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setParticipantsSolution($participantSolution)
saveCurrentSolution(int $active_id, int $pass, $value1, $value2, bool $authorized=true, $tstamp=0)
setBold(string $a_coords)
Set cell(s) to bold.
static _enabledAssessmentLogging()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static logAction(string $logtext, int $active_id, int $question_id)
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
string $question
The question text.
static getDataDir()
get data directory (outside webspace)
saveQuestionDataToDb(int $original_id=-1)
getSolutionMaxPass(int $active_id)
removeCurrentSolution(int $active_id, int $pass, bool $authorized=true)
const FEEDBACK_SETTING_ALL
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
setOriginalId(?int $original_id)
setTitle(string $title="")
setLifecycle(ilAssQuestionLifecycle $lifecycle)
getCurrentSolutionResultSet(int $active_id, int $pass, bool $authorized=true)
getHtmlQuestionContentPurifier()
setAuthor(string $author="")
setAdditionalContentEditingMode(?string $additionalContentEditingMode)
static getDraftInstance()
setQuestion(string $question="")