19 declare(strict_types=1);
65 int $output_type = self::OUTPUT_ORDER
75 && $this->author !==
null && $this->author !==
'' 76 && $this->question !==
null && $this->question !==
'' 77 && $this->answers !== []
80 foreach ($this->answers as $answer) {
81 if ($answer->getAnswertext() ===
'' && $answer->getImage() ===
'') {
100 $result = $this->db->queryF(
105 if ($result->numRows() == 1) {
106 $data = $this->db->fetchAssoc($result);
107 $this->
setId($question_id);
122 $this->is_singleline =
$data[
'allow_images'] ===
null ||
$data[
'allow_images'] ===
'0';
123 $this->lastChange =
$data[
'tstamp'];
124 $this->feedback_setting =
$data[
'feedback_setting'] ?? self::FEEDBACK_MODE_SELECTED_ANSWERS;
138 $result = $this->db->queryF(
139 "SELECT * FROM qpl_a_sc WHERE question_fi = %s ORDER BY aorder ASC",
144 if ($result->numRows() > 0) {
145 while (
$data = $this->db->fetchAssoc($result)) {
147 if (!file_exists($imagefilename)) {
160 $this->answers[] = $image;
164 parent::loadFromDb($question_id);
181 string $answertext =
'',
184 ?
string $answerimage =
null,
187 if (array_key_exists($order, $this->answers)) {
198 for ($i = 0; $i < $order; $i++) {
199 $newchoices[] = $this->answers[$i];
201 $newchoices[] = $answer;
202 for ($i = $order, $iMax = count($this->answers); $i < $iMax; $i++) {
203 $changed = $this->answers[$i];
204 $changed->setOrder($i + 1);
205 $newchoices[] = $changed;
207 $this->answers = $newchoices;
214 count($this->answers),
219 $this->answers[] = $answer;
231 return count($this->answers);
248 if (count($this->answers) < 1) {
251 if ($index >= count($this->answers)) {
255 return $this->answers[$index];
271 if (count($this->answers) < 1) {
274 if ($index >= count($this->answers)) {
277 $answer = $this->answers[$index];
278 if ($answer->hasImage()) {
279 $this->deleteImage($answer->getImage());
281 unset($this->answers[$index]);
282 $this->answers = array_values($this->answers);
283 for ($i = 0, $iMax = count($this->answers); $i < $iMax; $i++) {
284 if ($this->answers[$i]->
getOrder() > $index) {
285 $this->answers[$i]->setOrder($i);
310 foreach ($this->answers as $key => $value) {
311 if ($value->getPoints() >
$points) {
321 bool $authorized_solution =
true 324 if (is_null($pass)) {
328 while (
$data = $this->db->fetchAssoc($result)) {
329 if (
$data[
'value1'] !==
'') {
330 array_push($found_values,
$data[
'value1']);
334 foreach ($this->answers as $key => $answer) {
335 if ($found_values !== []
336 && in_array($key, $found_values)) {
337 $points += $answer->getPoints();
350 foreach ($this->answers as $key => $answer) {
351 if (is_numeric($participant_solution)
352 && $key === (
int) $participant_solution) {
353 $points = $answer->getPoints();
363 bool $authorized =
true 365 if (is_null($pass)) {
370 function () use ($active_id, $pass, $authorized) {
374 if ($this->db->numRows($result)) {
375 $row = $this->db->fetchAssoc($result);
376 $update = $row[
"solution_id"];
379 $multiple_choice_result = $this->
http->wrapper()->post()->has(
'multiple_choice_result') ?
380 $this->
http->wrapper()->post()->retrieve(
'multiple_choice_result', $this->
refinery->kindlyTo()->string()) :
384 && $multiple_choice_result ===
'') {
389 if ($update !== -1) {
394 if ($multiple_choice_result !==
'') {
405 $mc_result_key =
'multiple_choice_result' . $this->
getId() .
'ID';
407 $this->
http->wrapper()->post()->has($mc_result_key) &&
408 ($mc_result = $this->
http->wrapper()->post()->retrieve($mc_result_key, $this->
refinery->kindlyTo()->string())) !==
'' 419 $this->db->manipulateF(
425 $this->db->manipulateF(
427 ) .
" (question_fi, shuffle, allow_images, thumb_size) VALUES (%s, %s, %s, %s)",
428 [
"integer",
"text",
"text",
"integer" ],
432 $this->is_singleline ?
'0' :
'1',
445 if (!$this->is_singleline) {
449 $result = $this->db->queryF(
450 "SELECT * FROM qpl_fb_specific WHERE question_fi = %s",
454 $db_feedback = $this->db->fetchAll($result);
459 $result = $this->db->queryF(
460 "SELECT answer_id, aorder FROM qpl_a_sc WHERE question_fi = %s",
464 $db_answers = $this->db->fetchAll($result);
467 $post_answer_order_for_id = [];
468 foreach ($this->answers as $answer) {
470 if ($answer->getId() !==
null && !in_array($answer->getId(), array_keys($post_answer_order_for_id))) {
472 if ($answer->getId() == -1) {
475 $post_answer_order_for_id[$answer->getId()] = $answer->getOrder();
481 if (
sizeof($post_answer_order_for_id) >= 1) {
482 $db_answer_order_for_id = [];
483 $db_answer_id_for_order = [];
484 foreach ($db_answers as $db_answer) {
485 $db_answer_order_for_id[intval($db_answer[
'answer_id'])] = intval($db_answer[
'aorder']);
486 $db_answer_id_for_order[intval($db_answer[
'aorder'])] = intval($db_answer[
'answer_id']);
492 $db_answer_ids = array_keys($db_answer_order_for_id);
493 $post_answer_ids = array_keys($post_answer_order_for_id);
494 $diff_db_post_answer_ids = array_diff($db_answer_ids, $post_answer_ids);
495 $unused_answer_ids = array_keys($diff_db_post_answer_ids);
498 $this->feedbackOBJ->deleteSpecificAnswerFeedbacks($this->
getId(),
false);
500 foreach ($db_feedback as $feedback_option) {
502 if (in_array(intval($feedback_option[
'answer']), $unused_answer_ids)) {
507 $feedback_order_db = intval($feedback_option[
'answer']);
508 $db_answer_id = $db_answer_id_for_order[$feedback_order_db];
512 if (is_null($db_answer_id) || $db_answer_id < 0) {
515 $feedback_order_post = $post_answer_order_for_id[$db_answer_id];
516 $feedback_option[
'answer'] = $feedback_order_post;
519 $next_id = $this->db->nextId(
'qpl_fb_specific');
520 $this->db->manipulateF(
521 "INSERT INTO qpl_fb_specific (feedback_id, question_fi, answer, tstamp, feedback, question) 522 VALUES (%s, %s, %s, %s, %s, %s)",
523 [
'integer',
'integer',
'integer',
'integer',
'text',
'integer'],
526 $feedback_option[
'question_fi'],
527 $feedback_option[
'answer'],
529 $feedback_option[
'feedback'],
530 $feedback_option[
'question']
538 $this->db->manipulateF(
539 "DELETE FROM qpl_a_sc WHERE question_fi = %s",
545 foreach ($this->answers as $key => $value) {
547 $answer_obj = $this->answers[$key];
548 $next_id = $this->db->nextId(
'qpl_a_sc');
549 $this->db->manipulateF(
550 "INSERT INTO qpl_a_sc (answer_id, question_fi, answertext, points, aorder, imagefile, tstamp) VALUES (%s, %s, %s, %s, %s, %s, %s)",
551 [
'integer',
'integer',
'text',
'float',
'integer',
'text',
'integer'],
556 $answer_obj->getPoints(),
557 $answer_obj->getOrder(),
558 $answer_obj->getImage(),
573 return "assSingleChoice";
607 string $image_filename,
608 string $image_tempfilename =
'' 610 if (empty($image_tempfilename)) {
614 $cleaned_image_filename = str_replace(
" ",
"_", $image_filename);
616 if (!file_exists($imagepath)) {
625 if (!preg_match(
"/^image/", $mimetype)) {
626 unlink($imagepath . $cleaned_image_filename);
631 $this->generateThumbForFile(
632 $cleaned_image_filename,
647 $text = parent::getRTETextWithMediaObjects();
648 foreach (array_keys($this->answers) as $index) {
649 $text .= $this->feedbackOBJ->getSpecificAnswerFeedbackContent($this->
getId(), 0, $index);
650 $answer_obj = $this->answers[$index];
651 $text .= $answer_obj->getAnswertext();
684 $result[
'id'] = $this->
getId();
691 $result[
'feedback'] = [
693 $this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(),
false)
696 $this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(),
true)
702 foreach ($this->
getAnswers() as $key => $answer_obj) {
703 if ((
string) $answer_obj->getImage()) {
706 array_push($answers, [
708 'html_id' => $this->
getId() .
'_' . $key,
709 "points" => (float) $answer_obj->getPoints(),
710 "order" => (
int) $answer_obj->getOrder(),
711 "image" => (string) $answer_obj->getImage(),
713 $this->feedbackOBJ->getSpecificAnswerFeedbackExportPresentation(
728 $result[
'mobs'] = $mobs;
730 return json_encode($result);
735 $answer = $this->answers[$index];
736 if (is_object($answer)) {
737 $this->deleteImage($answer->getImage());
738 $answer->setImage(
null);
744 $multilineAnswerSetting = $this->current_user->getPref(
'tst_multiline_answers');
745 if ($multilineAnswerSetting !==
'1') {
746 $multilineAnswerSetting =
'0';
748 return $multilineAnswerSetting;
753 $this->current_user->writePref(
'tst_multiline_answers', $setting);
775 return 'feedback_correct_sc_mc';
780 return ilOperatorsExpressionMapping::getOperatorsByExpression($expression);
800 $data = $this->db->queryF(
801 "SELECT * FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s AND step = %s",
802 [
"integer",
"integer",
"integer",
"integer"],
803 [$active_id, $pass, $this->
getId(), $maxStep]
806 $data = $this->db->queryF(
807 "SELECT * FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s",
808 [
"integer",
"integer",
"integer"],
809 [$active_id, $pass, $this->
getId()]
813 $row = $this->db->fetchAssoc(
$data);
817 $result->addKeyValue($row[
"value1"], $row[
"value1"]);
823 $result->setReachedPercentage((
$points / $max_points) * 100);
836 if ($index !==
null) {
847 int $original_question_id,
848 int $clone_question_id,
849 int $original_parent_id,
852 parent::afterSyncWithOriginal($original_question_id, $clone_question_id, $original_parent_id, $clone_parent_id);
854 $original_image_path = $this->question_files->buildImagePath($original_question_id, $original_parent_id);
855 $clone_image_path = $this->question_files->buildImagePath($clone_question_id, $clone_parent_id);
858 if (is_dir($clone_image_path)) {
887 AdditionalInformationGenerator::KEY_QUESTION_TYPE => (string) $this->
getQuestionType(),
890 AdditionalInformationGenerator::KEY_QUESTION_SHUFFLE_ANSWER_OPTIONS => $additional_info
892 AdditionalInformationGenerator::KEY_FEEDBACK => [
893 AdditionalInformationGenerator::KEY_QUESTION_FEEDBACK_ON_INCOMPLETE => $this->
formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(),
false)),
894 AdditionalInformationGenerator::KEY_QUESTION_FEEDBACK_ON_COMPLETE => $this->
formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(),
true))
898 foreach ($this->
getAnswers() as $key => $answer_obj) {
899 $result[AdditionalInformationGenerator::KEY_QUESTION_ANSWER_OPTIONS][$key + 1] = [
900 AdditionalInformationGenerator::KEY_QUESTION_ANSWER_OPTION => $this->
formatSAQuestion($answer_obj->getAnswertext()),
901 AdditionalInformationGenerator::KEY_QUESTION_REACHABLE_POINTS => (
float) $answer_obj->getPoints(),
902 AdditionalInformationGenerator::KEY_QUESTION_ANSWER_OPTION_ORDER => (
int) $answer_obj->getOrder(),
903 AdditionalInformationGenerator::KEY_QUESTION_ANSWER_OPTION_IMAGE => (string) $answer_obj->getImage(),
905 $this->feedbackOBJ->getSpecificAnswerFeedbackExportPresentation($this->getId(), 0, $key)
915 array $solution_values
917 if ($solution_values === []
918 || !array_key_exists(0, $solution_values)
919 || !is_array($solution_values[0])) {
923 return $this->
getAnswer((
int) $solution_values[0][
'value1'])->getAnswertext();
928 if ($solution_values === []
929 || !array_key_exists(0, $solution_values)
930 || !is_array($solution_values[0])) {
934 return $this->
getAnswer((
int) $solution_values[0][
'value1'])->getAnswertext();
944 .
"({$this->lng->txt('points')}: {$v->getPoints()})";
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...
setNrOfTries(int $a_nr_of_tries)
getSpecificFeedbackAllCorrectOptionLabel()
static getInstance($identifier)
const PercentageResultExpression
calculateReachedPointsFromPreviewSession(ilAssQuestionPreviewSession $preview_session)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setIsSingleline(bool $is_singleline)
getMaximumPoints()
Returns the maximum points, a learner can reach answering the question.
cloneQuestionTypeSpecificProperties(\assQuestion $target)
static _getPass($active_id)
Retrieves the actual pass of a given user for a given test.
const NumberOfResultExpression
toLog(AdditionalInformationGenerator $additional_info)
getAnswer(int $index=0)
Returns an answer with a given index.
solutionValuesToLog(AdditionalInformationGenerator $additional_info, array $solution_values)
setAnswers(array $answers)
Class for answers with a binary state indicator.
saveAdditionalQuestionDataToDb()
Saves a record to the question types additional data table.
ensureNonNegativePoints(float $points)
getAnswerCount()
Returns the number of answers.
getUserQuestionResult(int $active_id, int $pass)
Get the user solution for a question by active_id and the test pass.
getAvailableAnswerOptions($index=null)
If index is null, the function returns an array with all anwser options Else it returns the specific ...
saveWorkingData(int $active_id, ?int $pass=null, bool $authorized=true)
getQuestionType()
Returns the question type of the question.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getAnswerTableName()
Returns the name of the answer table in the database.
getImagePathWeb()
Returns the web image path for web accessable images of a question.
setThumbSize(int $a_size)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static rCopy(string $a_sdir, string $a_tdir, bool $preserveTimeAttributes=false)
Copies content of a directory $a_sdir recursively to a directory $a_tdir.
setImageFile(string $image_filename, string $image_tempfilename='')
Sets the image file and uploads the image to the object's image directory.
migrateToLmContent($content)
getAdditionalContentEditingMode()
getParticipantsSolution()
const FEEDBACK_MODE_ALL_ANSWERS
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
setComment(string $comment="")
getMultilineAnswerSetting()
addAnswer(string $answertext='', float $points=0.0, int $order=0, ?string $answerimage=null, int $answer_id=-1)
solutionValuesToText(array $solution_values)
setFeedbackSetting(int $feedback_setting)
getSpecificFeedbackSetting()
updateCurrentSolution(int $solutionId, $value1, $value2, bool $authorized=true)
setParticipantsSolution($participantSolution)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getPoints()
Gets the points.
deleteAnswer(int $index=0)
Deletes an answer with a given index.
saveCurrentSolution(int $active_id, int $pass, $value1, $value2, bool $authorized=true, $tstamp=0)
static http()
Fetches the global http state from ILIAS.
calculateReachedPoints(int $active_id, ?int $pass=null, bool $authorized_solution=true)
getImagePath($question_id=null, $object_id=null)
Returns the image path for web accessable images of a question.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
removeSolutionRecordById(int $solutionId)
Class for single choice questions.
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
setSpecificFeedbackSetting(int $feedback_setting)
Sets the feedback settings in effect for the question.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
deductHintPointsFromReachedPoints(ilAssQuestionPreviewSession $preview_session, $reached_points)
toJSON()
Returns a JSON representation of the question.
afterSyncWithOriginal(int $original_question_id, int $clone_question_id, int $original_parent_id, int $clone_parent_id)
{}
getOperators(string $expression)
Get all available operations for a specific question.
flushAnswers()
Deletes all answers.
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
saveQuestionDataToDb(?int $original_id=null)
getAdditionalTableName()
Returns the name of the additional question data table in the database.
lmMigrateQuestionTypeSpecificContent(ilAssSelfAssessmentMigrator $migrator)
__construct(string $title="", string $comment="", string $author="", int $owner=-1, string $question="", int $output_type=self::OUTPUT_ORDER)
removeAnswerImage(int $index)
saveAnswerSpecificDataToDb()
Saves the answer specific records into a question types answer table.
const FEEDBACK_MODE_CORRECT_ANSWERS
getRTETextWithMediaObjects()
getAnswers()
Returns a reference to the answers array.
const FEEDBACK_MODE_SELECTED_ANSWERS
getAnswertext()
Gets the answer text.
getSolutionMaxPass(int $active_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
saveToDb(?int $original_id=null)
setOriginalId(?int $original_id)
setTitle(string $title="")
setMultilineAnswerSetting(string $setting='0')
getExpressionTypes()
Get all available expression types for a specific question.
setLifecycle(ilAssQuestionLifecycle $lifecycle)
getCurrentSolutionResultSet(int $active_id, int $pass, bool $authorized=true)
getHtmlQuestionContentPurifier()
lookupMaxStep(int $active_id, int $pass)
setAuthor(string $author="")
loadFromDb(int $question_id)
setShuffle(?bool $shuffle=true)
setAdditionalContentEditingMode(?string $additionalContentEditingMode)
getCorrectSolutionForTextOutput(int $active_id, int $pass)
static getDraftInstance()
savePreviewData(ilAssQuestionPreviewSession $previewSession)
setQuestion(string $question="")
const EmptyAnswerExpression