19 declare(strict_types=1);
68 $this->textsize = self::DEFAULT_TEXT_SIZE;
73 if (mb_strlen($this->title)
93 $this->db->manipulateF(
94 "DELETE FROM qpl_a_errortext WHERE question_fi = %s",
100 foreach ($this->errordata as $error) {
101 $next_id = $this->db->nextId(
'qpl_a_errortext');
102 $this->db->manipulateF(
103 "INSERT INTO qpl_a_errortext (answer_id, question_fi, text_wrong, text_correct, points, sequence, position) VALUES (%s, %s, %s, %s, %s, %s, %s)",
104 [
'integer',
'integer',
'text',
'text',
'float',
'integer',
'integer'],
108 $error->getTextWrong(),
109 $error->getTextCorrect(),
112 $error->getPosition()
125 $this->db->manipulateF(
131 $this->db->manipulateF(
132 "INSERT INTO " . $this->
getAdditionalTableName() .
" (question_fi, errortext, parsed_errortext, textsize, points_wrong) VALUES (%s, %s, %s, %s, %s)",
133 [
"integer",
"text",
"text",
"float",
"float"],
152 $db_question = $this->db->queryF(
157 if ($db_question->numRows() === 1) {
158 $data = $this->db->fetchAssoc($db_question);
159 $this->
setId($question_id);
162 $this->
setComment((
string) $data[
"description"]);
170 $this->
setParsedErrorText(json_decode($data[
'parsed_errortext'] ?? json_encode([]),
true));
186 $db_error_text = $this->db->queryF(
187 "SELECT * FROM qpl_a_errortext WHERE question_fi = %s ORDER BY sequence ASC",
192 if ($db_error_text->numRows() > 0) {
193 while (
$data = $this->db->fetchAssoc($db_error_text)) {
195 (
string)
$data[
'text_wrong'],
196 (
string) $data[
'text_correct'],
197 (
float) $data[
'points'],
205 parent::loadFromDb($question_id);
213 $needs_finalizing =
false;
215 $needs_finalizing =
true;
219 if (isset($this->errordata[0])
220 && $this->errordata[0]->getPosition() ===
null) {
221 foreach ($this->errordata as $key => $error) {
227 if ($needs_finalizing) {
241 foreach ($this->errordata as $error) {
242 if ($error->getPoints() > 0) {
243 $maxpoints += $error->getPoints();
252 bool $authorized_solution =
true 254 if ($pass ===
null) {
260 while ($row = $this->db->fetchAssoc($result)) {
261 $positions[] = $row[
'value1'];
277 bool $authorized =
true 279 if (is_null($pass)) {
284 function () use ($active_id, $pass, $authorized) {
287 foreach ($selected as $position) {
306 $this->questionpool_request->string(
'qst_' . $this->getId())
312 return 'assErrorText';
317 return 'qpl_qst_errortext';
322 return 'qpl_a_errortext';
328 $this->errordata = [];
330 $has_too_long_errors =
false;
332 foreach ($paragraph as $position => $word) {
333 if ($word[
'error_type'] ===
'in_passage' 334 || $word[
'error_type'] ===
'passage_end' 335 || $word[
'error_type'] ===
'none') {
339 $text_wrong = $word[
'text_wrong'];
340 if (mb_strlen($text_wrong) > self::ERROR_MAX_LENGTH) {
341 $has_too_long_errors =
true;
351 if ($has_too_long_errors) {
352 $this->tpl->setOnScreenMessage(
354 $this->
lng->txt(
'qst_error_text_too_long')
362 foreach ($paragraph as $position => $word) {
363 if (isset($word[
'text_wrong'])
365 || mb_substr($word[
'text_wrong'], 0, -1) === $error->
getTextWrong()
366 && preg_match(self::FIND_PUNCTUATION_REGEXP, mb_substr($word[
'text_wrong'], -1)) === 1)
379 foreach ($this->errordata as $error) {
380 $position = $error->getPosition();
382 if (array_key_exists($position, $paragraph)) {
383 $this->parsed_errortext[$key][$position][
'text_correct'] =
384 $error->getTextCorrect();
385 $this->parsed_errortext[$key][$position][
'points'] =
399 $this->errordata = [];
401 foreach ($errors as $error) {
403 $this->errordata[] = $answer;
411 if ($error->getPosition() ===
null) {
412 unset($this->errordata[$index]);
415 $this->errordata = array_values($this->errordata);
424 array $current_error_data,
427 foreach ($current_error_data as $answer_object) {
428 if (strcmp($answer_object->getTextWrong(), $text_wrong) === 0) {
430 $answer_object->getTextCorrect(),
431 $answer_object->getPoints()
440 bool $graphical_output =
false,
441 bool $show_correct_solution =
false,
442 bool $use_link_tags =
true,
443 array $correctness_icons = []
447 $array_reduce_function = fn(?
string $carry,
int $position)
453 $show_correct_solution,
457 $output_array[] =
'<p>' . trim(array_reduce(array_keys($paragraph), $array_reduce_function)) .
'</p>';
460 return implode(
"\n", $output_array);
467 bool $graphical_output,
468 bool $show_correct_solution,
470 array $correctness_icons
490 bool $show_correct_solution
492 $v = $paragraph[$position];
493 if ($show_correct_solution ===
true 494 && ($v[
'error_type'] ===
'in_passage' 495 || $v[
'error_type'] ===
'passage_end')) {
498 if ($show_correct_solution
499 && ($v[
'error_type'] ===
'passage_start' 500 || $v[
'error_type'] ===
'word')) {
501 return $v[
'text_correct'] ??
'';
509 bool $show_correct_solution,
512 if ($show_correct_solution !==
true 513 && in_array($position, $selections[
'user'])) {
514 return 'ilc_qetitem_ErrorTextSelected';
517 if ($show_correct_solution ===
true 518 && in_array($position, $selections[
'best'])) {
519 return 'ilc_qetitem_ErrorTextSelected';
522 return 'ilc_qetitem_ErrorTextItem';
527 bool $graphical_output,
529 array $correctness_icons
531 if ($graphical_output ===
true 532 && (in_array($position, $selections[
'user']) && !in_array($position, $selections[
'best'])
533 || !in_array($position, $selections[
'user']) && in_array($position, $selections[
'best']))) {
534 return $correctness_icons[
'not_correct'];
537 if ($graphical_output ===
true 538 && in_array($position, $selections[
'user']) && in_array($position, $selections[
'best'])) {
539 return $correctness_icons[
'correct'];
547 if (!is_array($selections)) {
552 $array_reduce_function =
function ($carry, $k) use ($paragraph, $selections) {
553 $text = $paragraph[$k][
'text'];
554 if (in_array($k, $selections)) {
555 $text = self::ERROR_WORD_MARKER . $paragraph[$k][
'text'] . self::ERROR_WORD_MARKER;
557 return $carry .
' ' . $text;
559 $output_array[] = trim(array_reduce(array_keys($paragraph), $array_reduce_function));
561 return implode(
"\n", $output_array);
568 foreach ($positions_array as $position => $position_data) {
570 || $with_positive_points_only && $position_data[
'points'] <= 0) {
574 $selections[] = $position;
575 if ($position_data[
'length'] > 1) {
576 for ($i = 1;$i < $position_data[
'length'];$i++) {
577 $selections[] = $position + $i;
594 foreach ($correct_positions as $correct_position => $correct_position_data) {
595 $selected_word_key = array_search($correct_position, $selected_word_positions);
596 if ($selected_word_key ===
false) {
600 if ($correct_position_data[
'length'] === 1) {
601 $points += $correct_position_data[
'points'];
602 unset($selected_word_positions[$selected_word_key]);
606 $passage_complete =
true;
607 for ($i = 1;$i < $correct_position_data[
'length'];$i++) {
608 $selected_passage_element_key = array_search($correct_position + $i, $selected_word_positions);
609 if ($selected_passage_element_key ===
false) {
610 $passage_complete =
false;
613 unset($selected_word_positions[$selected_passage_element_key]);
616 if ($passage_complete) {
617 $points += $correct_position_data[
'points'];
618 unset($selected_word_positions[$selected_word_key]);
622 foreach ($selected_word_positions as $word_position) {
623 if (!array_key_exists($word_position, $correct_positions)) {
634 $this->errordata = [];
652 $correct_answers = [];
653 foreach ($this->
getErrorData() as $index => $answer_obj) {
654 $correct_answers[] = [
655 'answertext_wrong' => $answer_obj->getTextWrong(),
656 'answertext_correct' => $answer_obj->getTextCorrect(),
657 'points' => $answer_obj->getPoints(),
658 'length' => $answer_obj->getLength(),
659 'pos' => $this->
getId() .
'_' . $answer_obj->getPosition()
662 return $correct_answers;
667 return $this->errortext ??
'';
672 $this->errortext = $text ??
'';
683 foreach ($this->parsed_errortext as $paragraph) {
684 foreach ($paragraph as $position => $word) {
686 'answertext' => $word[
'text'],
687 'order' => $this->
getId() .
'_' . $position
691 'answertext' =>
'###' 712 if ($a_value ===
null) {
715 $this->textsize = $a_value;
725 $this->points_wrong = $a_value;
731 $result[
'id'] = $this->
getId();
738 $result[
'feedback'] = [
739 'onenotcorrect' => $this->
formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(),
false)),
740 'allcorrect' => $this->
formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(),
true))
747 $result[
'mobs'] = $mobs;
749 return json_encode($result);
754 return ilOperatorsExpressionMapping::getOperatorsByExpression($expression);
773 $data = $this->db->queryF(
774 "SELECT value1+1 as value1 FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s AND step = ( 775 SELECT MAX(step) FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s 777 [
"integer",
"integer",
"integer",
"integer",
"integer",
"integer"],
778 [$active_id, $pass, $this->
getId(), $active_id, $pass, $this->
getId()]
781 while ($row = $this->db->fetchAssoc(
$data)) {
782 $result->addKeyValue($row[
"value1"], $row[
"value1"]);
788 $result->setReachedPercentage((
$points / $max_points) * 100);
795 $text_by_paragraphs = preg_split(self::PARAGRAPH_SPLIT_REGEXP, $this->
getErrorText());
798 foreach ($text_by_paragraphs as $paragraph) {
800 preg_split(self::WORD_SPLIT_REGEXP, trim($paragraph)),
803 $offset += count(end($text_array));
815 $paragraph_with_error_info = [];
816 $passage_start =
null;
817 foreach ($paragraph as $position => $word) {
818 $actual_position = $position + $offset;
819 if ($passage_start !==
null 820 && (mb_strrpos($word, self::ERROR_PARAGRAPH_DELIMITERS[
'end']) === mb_strlen($word) - 2
821 || mb_strrpos($word, self::ERROR_PARAGRAPH_DELIMITERS[
'end']) === mb_strlen($word) - 3
822 && preg_match(self::FIND_PUNCTUATION_REGEXP, mb_substr($word, -1)) === 1)) {
825 $paragraph_with_error_info[$passage_start][
'text_wrong'] .=
827 $paragraph_with_error_info[$actual_position] = [
828 'text' => $actual_word,
829 'error_type' =>
'passage_end' 831 $passage_start =
null;
834 if ($passage_start !==
null) {
835 $paragraph_with_error_info[$passage_start][
'text_wrong'] .=
' ' . $word;
836 $paragraph_with_error_info[$actual_position] = [
838 'error_type' =>
'in_passage' 842 if (mb_strpos($word, self::ERROR_PARAGRAPH_DELIMITERS[
'start']) === 0) {
843 $paragraph_with_error_info[$actual_position] = [
844 'text' => substr($word, 2),
845 'text_wrong' => substr($word, 2),
846 'error_type' =>
'passage_start',
847 'error_position' => $actual_position,
849 $passage_start = $actual_position;
852 if (mb_strpos($word, self::ERROR_WORD_MARKER) === 0) {
853 $paragraph_with_error_info[$actual_position] = [
854 'text' => substr($word, 1),
855 'text_wrong' => substr($word, 1),
856 'error_type' =>
'word',
857 'error_position' => $actual_position,
862 $paragraph_with_error_info[$actual_position] = [
864 'error_type' =>
'none',
869 return $paragraph_with_error_info;
874 if (mb_substr($word, -2) === self::ERROR_PARAGRAPH_DELIMITERS[
'end']) {
875 return mb_substr($word, 0, -2);
877 return mb_substr($word, 0, -3) . mb_substr($word, -1);
889 $error_text_array = array_reduce(
890 $this->parsed_errortext,
891 fn(
$c, $v) =>
$c + $v
894 if ($index ===
null) {
895 return $error_text_array;
898 if (array_key_exists($index, $error_text_array)) {
899 return $error_text_array[$index];
907 $array_by_position = [];
908 foreach ($this->errordata as $error) {
909 $array_by_position[$error->getPosition()] = [
910 'length' => $error->getLength(),
911 'points' => $error->getPoints(),
912 'text' => $error->getTextWrong(),
913 'text_correct' => $error->getTextCorrect()
916 ksort($array_by_position);
917 return $array_by_position;
941 AdditionalInformationGenerator::KEY_QUESTION_TYPE => (string) $this->
getQuestionType(),
945 AdditionalInformationGenerator::KEY_QUESTION_SHUFFLE_ANSWER_OPTIONS => $additional_info
947 AdditionalInformationGenerator::KEY_FEEDBACK => [
948 AdditionalInformationGenerator::KEY_QUESTION_FEEDBACK_ON_INCOMPLETE => $this->
formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(),
false)),
949 AdditionalInformationGenerator::KEY_QUESTION_FEEDBACK_ON_COMPLETE => $this->
formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(),
true))
954 $result[AdditionalInformationGenerator::KEY_QUESTION_CORRECT_ANSWER_OPTIONS] = array_reduce(
955 array_keys($error_data),
956 static function (array
$c,
int $k) use ($error_data): array {
958 'text_wrong' => $error_data[$k]->getTextWrong(),
959 'text_correct' => $error_data[$k]->getTextCorrect(),
960 'points' => $error_data[$k]->getPoints()
972 array $solution_values
976 static fn(array $v):
string => $v[
'value1'],
986 static fn(array $v):
string => $v[
'value1'],
getPointsForSelectedPositions(array $selected_word_positions)
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...
const FIND_PUNCTUATION_REGEXP
setNrOfTries(int $a_nr_of_tries)
static getInstance($identifier)
const PercentageResultExpression
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getPass($active_id)
Retrieves the actual pass of a given user for a given test.
const NumberOfResultExpression
const ExclusiveResultExpression
saveWorkingData(int $active_id, ?int $pass=null, bool $authorized=true)
loadFromDb($question_id)
Loads the object from the database.
addErrorInformationToTextParagraphArray(array $paragraph, int $offset)
calculateReachedPoints(int $active_id, ?int $pass=null, bool $authorized_solution=true)
ensureNonNegativePoints(float $points)
getCorrectSolutionForTextOutput(int $active_id, int $pass)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getClassForPosition(int $position, bool $show_correct_solution, array $selections)
getTextForPosition(int $position, array $paragraph, bool $show_correct_solution)
getErrorDataAsArrayForJS()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getParticipantsSolution()
toLog(AdditionalInformationGenerator $additional_info)
setComment(string $comment="")
const ERROR_PARAGRAPH_DELIMITERS
calculateReachedPointsFromPreviewSession(ilAssQuestionPreviewSession $preview_session)
getCorrectnessIconForPosition(int $position, bool $graphical_output, array $selections, array $correctness_icons)
setParticipantsSolution($participantSolution)
generateArrayByPositionFromErrorData()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
removeErrorDataWithoutPosition()
setErrorData(array $errors)
getParsedErrorTextForJS()
__construct(string $title='', string $comment='', string $author='', int $owner=-1, string $question='')
createErrorTextExport(array $selections)
saveCurrentSolution(int $active_id, int $pass, $value1, $value2, bool $authorized=true, $tstamp=0)
parsePassageEndWord(string $word)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
assembleErrorTextOutput(array $selections, bool $graphical_output=false, bool $show_correct_solution=false, bool $use_link_tags=true, array $correctness_icons=[])
const PARAGRAPH_SPLIT_REGEXP
Class for error text questions.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
deductHintPointsFromReachedPoints(ilAssQuestionPreviewSession $preview_session, $reached_points)
saveAnswerSpecificDataToDb()
Saves the answer specific records into a question types answer table.
getExpressionTypes()
Get all available expression types for a specific question.
setErrorText(?string $text)
addPositionToErrorAnswer(assAnswerErrorText $error)
savePreviewData(ilAssQuestionPreviewSession $previewSession)
saveQuestionDataToDb(?int $original_id=null)
getBestSelection(bool $with_positive_points_only=true)
generateOutputStringFromPosition(int $position, array $selections, array $paragraph, bool $graphical_output, bool $show_correct_solution, bool $use_link_tags, array $correctness_icons)
getMaximumPoints()
Returns the maximum points, a learner can reach answering the question.
getSolutionMaxPass(int $active_id)
getOperators(string $expression)
Get all available operations for a specific question.
correctDataAfterParserUpdate()
removeCurrentSolution(int $active_id, int $pass, bool $authorized=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
solutionValuesToLog(AdditionalInformationGenerator $additional_info, array $solution_values)
__construct(Container $dic, ilPlugin $plugin)
setOriginalId(?int $original_id)
solutionValuesToText(array $solution_values)
setTitle(string $title="")
setErrorsFromParsedErrorText()
saveToDb(?int $original_id=null)
setLifecycle(ilAssQuestionLifecycle $lifecycle)
getCurrentSolutionResultSet(int $active_id, int $pass, bool $authorized=true)
saveAdditionalQuestionDataToDb()
Saves the data for the additional data table.
completeParsedErrorTextFromErrorData()
withPosition(int $position)
getAvailableAnswerOptions($index=null)
If index is null, the function returns an array with all anwser options Else it returns the specific ...
setAuthor(string $author="")
setParsedErrorText(array $parsed_errortext)
setAdditionalContentEditingMode(?string $additionalContentEditingMode)
getAdditionalInformationFromExistingErrorDataByErrorText(array $current_error_data, string $text_wrong)
static getDraftInstance()
getErrorTokenHtml($item, $class, $useLinkTags)
getUserQuestionResult(int $active_id, int $pass)
Get the user solution for a question by active_id and the test pass.
setQuestion(string $question="")
const EmptyAnswerExpression