19 declare(strict_types=1);
96 $local_dic = QuestionPoolDIC::dic();
97 $this->request = $local_dic[
'request_data_collector'];
122 if ($this->title !==
'' 125 && $this->image_filename
126 && $this->answers !== []
144 $this->db->manipulateF(
145 'DELETE FROM qpl_a_imagemap WHERE question_fi = %s',
151 foreach ($this->answers as $key => $value) {
152 $answer_obj = $this->answers[$key];
153 $answer_obj->setOrder($key);
154 $next_id = $this->db->nextId(
'qpl_a_imagemap');
155 $this->db->manipulateF(
156 'INSERT INTO qpl_a_imagemap (answer_id, question_fi, answertext, points, aorder, coords, area, points_unchecked) VALUES (%s, %s, %s, %s, %s, %s, %s, %s)',
157 [
'integer',
'integer',
'text',
'float',
'integer',
'text',
'text',
'float' ],
158 [ $next_id, $this->
id, $answer_obj->getAnswertext(
159 ), $answer_obj->getPoints(), $answer_obj->getOrder(
160 ), $answer_obj->getCoords(), $answer_obj->getArea(
161 ), $answer_obj->getPointsUnchecked() ]
168 $this->db->manipulateF(
174 $this->db->manipulateF(
176 ) .
' (question_fi, image_file, is_multiple_choice) VALUES (%s, %s, %s)',
177 [
'integer',
'text',
'integer' ],
180 $this->image_filename,
181 (
int) $this->is_multiple_choice
194 int $source_question_id,
195 int $source_parent_id,
196 int $target_question_id,
197 int $target_parent_id
199 $image_source_path = $this->
getImagePath($source_question_id, $source_parent_id);
200 $image_target_path = $this->
getImagePath($target_question_id, $target_parent_id);
202 if (!file_exists($image_target_path)) {
208 $src = opendir($image_source_path);
209 while ($src_file = readdir($src)) {
210 if ($src_file ===
'.' || $src_file ===
'..') {
214 $image_source_path . DIRECTORY_SEPARATOR . $src_file,
215 $image_target_path . DIRECTORY_SEPARATOR . $src_file
222 $result = $this->db->queryF(
227 if ($result->numRows() == 1) {
228 $data = $this->db->fetchAssoc($result);
229 $this->
setId($question_id);
232 $this->
setComment((
string) $data[
'description']);
253 $result = $this->db->queryF(
254 'SELECT * FROM qpl_a_imagemap WHERE question_fi = %s ORDER BY aorder ASC',
258 if ($result->numRows() > 0) {
259 while ($data = $this->db->fetchAssoc($result)) {
260 $image_map_question =
new ASS_AnswerImagemap($data[
'answertext'] ??
'', $data[
'points'], $data[
'aorder']);
261 $image_map_question->setCoords($data[
'coords']);
262 $image_map_question->setArea($data[
'area']);
263 $image_map_question->setPointsUnchecked($data[
'points_unchecked']);
264 array_push($this->answers, $image_map_question);
268 parent::loadFromDb($question_id);
275 if (count($shapes) > 0) {
276 foreach ($shapes as $shape) {
277 $this->
addAnswer($shape->getAnswertext(), 0.0, count($this->answers), $shape->getCoords(), $shape->getArea());
292 string $image_tempfilename =
'' 294 if (!empty($image_filename)) {
295 $image_filename = str_replace(
' ',
'_', $image_filename);
298 if (!empty($image_tempfilename)) {
300 if (!file_exists($imagepath)) {
304 $this->tpl->setOnScreenMessage(
'failure',
'The image could not be uploaded!');
307 $this->log->write(
'gespeichert: ' . $imagepath . $image_filename);
314 for ($i = 0; $i < count($this->answers); $i++) { 315 $imagemap_contents .= '<area alt=\
'' . $this->answers[$i]->getAnswertext() .
'\' '; 316 $imagemap_contents .= 'shape=\
'' . $this->answers[$i]->getArea() .
'\' '; 317 $imagemap_contents .= 'coords=\
'' . $this->answers[$i]->getCoords() .
'\' '; 318 $imagemap_contents .= "href=\"{$href}&selimage=" . $this->answers[$i]->getOrder() . "\" /> "; 320 $imagemap_contents .= '</map>
'; 321 return $imagemap_contents; 324 public function addAnswer( 325 string $answertext = '', 330 float $points_unchecked = 0.0 332 if (array_key_exists($order, $this->answers)) { 334 $answer = new ASS_AnswerImagemap($answertext, $points, $order, 0, -1); 335 $answer->setCoords($coords); 336 $answer->setArea($area); 337 $answer->setPointsUnchecked($points_unchecked); 338 for ($i = count($this->answers) - 1; $i >= $order; $i--) { 339 $this->answers[$i + 1] = $this->answers[$i]; 340 $this->answers[$i + 1]->setOrder($i + 1); 342 $this->answers[$order] = $answer; 345 $answer = new ASS_AnswerImagemap($answertext, $points, count($this->answers), 0, -1); 346 $answer->setCoords($coords); 347 $answer->setArea($area); 348 $answer->setPointsUnchecked($points_unchecked); 349 array_push($this->answers, $answer); 353 public function getAnswerCount(): int 355 return count($this->answers); 358 public function getAnswer(int $index = 0): ?ASS_AnswerImagemap 363 if (count($this->answers) < 1) { 366 if ($index >= count($this->answers)) { 369 return $this->answers[$index]; 372 public function &getAnswers(): array 374 return $this->answers; 377 public function deleteArea(int $index = 0): void 382 if (count($this->answers) < 1) { 385 if ($index >= count($this->answers)) { 388 unset($this->answers[$index]); 389 $this->answers = array_values($this->answers); 390 for ($i = 0; $i < count($this->answers); $i++) { 391 if ($this->answers[$i]->getOrder() > $index) { 392 $this->answers[$i]->setOrder($i); 397 public function flushAnswers(): void 402 public function getMaximumPoints(): float 405 foreach ($this->answers as $key => $value) { 406 if ($this->is_multiple_choice) { 407 if ($value->getPoints() > $value->getPointsUnchecked()) { 408 $points += $value->getPoints(); 410 $points += $value->getPointsUnchecked(); 413 if ($value->getPoints() > $points) { 414 $points = $value->getPoints(); 421 public function calculateReachedPoints( 424 bool $authorized_solution = true 426 if ($pass === null) { 427 $pass = $this->getSolutionMaxPass($active_id); 429 $result = $this->getCurrentSolutionResultSet($active_id, $pass, $authorized_solution); 431 while ($data = $this->db->fetchAssoc($result)) { 432 if ($data['value1
'] !== '') { 433 $found_values[] = $data['value1
']; 437 $points = $this->calculateReachedPointsForSolution($found_values); 442 public function calculateReachedPointsFromPreviewSession(ilAssQuestionPreviewSession $preview_session): float 444 $solution_data = $preview_session->getParticipantsSolution(); 446 $reached_points = $this->calculateReachedPointsForSolution(is_array($solution_data) ? array_values($solution_data) : []); 448 return $this->ensureNonNegativePoints( 449 $this->deductHintPointsFromReachedPoints($preview_session, $reached_points) 461 public function saveWorkingData( 464 bool $authorized = true 466 if (is_null($pass)) { 467 $pass = ilObjTest::_getPass($active_id); 470 $this->getProcessLocker()->executeUserSolutionUpdateLockOperation( 471 function () use ($active_id, $pass, $authorized) { 473 // remove the dummy record of the intermediate solution 474 $this->deleteDummySolutionRecord($active_id, $pass); 476 // delete the authorized solution and make the intermediate solution authorized (keeping timestamps) 477 $this->removeCurrentSolution($active_id, $pass, true); 478 $this->updateCurrentSolutionsAuthorization($active_id, $pass, true, true); 482 $this->forceExistingIntermediateSolution( 485 $this->is_multiple_choice 488 if ($this->isReuseSolutionSelectionRequest()) { 489 $selection = $this->getReuseSolutionSelectionParameter(); 491 foreach ($selection as $selectedIndex) { 492 $this->saveCurrentSolution($active_id, $pass, (int) $selectedIndex, null, $authorized); 497 if ($this->isRemoveSolutionSelectionRequest()) { 498 $selection = $this->getRemoveSolutionSelectionParameter(); 499 $this->deleteSolutionRecordByValues($active_id, $pass, $authorized, [ 500 'value1
' => (int) $selection 505 if (!$this->isAddSolutionSelectionRequest()) { 508 $selection = $this->getAddSolutionSelectionParameter(); 510 if ($this->is_multiple_choice) { 511 $this->deleteSolutionRecordByValues($active_id, $pass, $authorized, [ 512 'value1
' => (int) $this->request->raw('selImage
') 515 $this->removeCurrentSolution($active_id, $pass, $authorized); 518 $this->saveCurrentSolution($active_id, $pass, $this->request->raw('selImage
'), null, $authorized); 525 protected function savePreviewData(ilAssQuestionPreviewSession $previewSession): void 527 $solution = $previewSession->getParticipantsSolution(); 529 if ($this->is_multiple_choice 530 && $this->request->isset('remImage
')) { 531 unset($solution[$this->request->int('remImage
')]); 534 if ($this->request->isset('selImage
')) { 535 if (!$this->is_multiple_choice) { 539 $solution[$this->request->int('selImage
')] = $this->request->int('selImage
'); 542 $previewSession->setParticipantsSolution($solution); 553 public function getQuestionType(): string 566 public function getAdditionalTableName(): string 568 return 'qpl_qst_imagemap
'; 579 public function getAnswerTableName(): string 581 return 'qpl_a_imagemap
'; 588 public function getRTETextWithMediaObjects(): string 590 $text = parent::getRTETextWithMediaObjects(); 591 foreach ($this->answers as $index => $answer) { 592 $text .= $this->feedbackOBJ->getSpecificAnswerFeedbackContent($this->getId(), 0, $index); 600 public function deleteImage(): void 602 $file = $this->getImagePath() . $this->getImageFilename(); 604 $this->flushAnswers(); 605 $this->image_filename = ''; 611 public function toJSON(): string 614 $result['id'] = $this->getId(); 615 $result['type
'] = (string) $this->getQuestionType(); 616 $result['title
'] = $this->getTitleForHTMLOutput(); 617 $result['question
'] = $this->formatSAQuestion($this->getQuestion()); 618 $result['nr_of_tries
'] = $this->getNrOfTries(); 619 $result['shuffle
'] = $this->getShuffle(); 620 $result['is_multiple
'] = $this->getIsMultipleChoice(); 621 $result['feedback
'] = [ 622 'onenotcorrect
' => $this->formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(), false)), 623 'allcorrect
' => $this->formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(), true)) 625 $result['image
'] = $this->getImagePathWeb() . $this->getImageFilename(); 629 foreach ($this->getAnswers() as $key => $answer_obj) { 630 array_push($answers, [ 631 'answertext
' => (string) $answer_obj->getAnswertext(), 632 'points
' => (float) $answer_obj->getPoints(), 633 'points_unchecked
' => (float) $answer_obj->getPointsUnchecked(), 635 'coords
' => $answer_obj->getCoords(), 636 'state
' => $answer_obj->getState(), 637 'area
' => $answer_obj->getArea(), 638 'feedback
' => $this->formatSAQuestion( 639 $this->feedbackOBJ->getSpecificAnswerFeedbackExportPresentation($this->getId(), 0, $key) 644 $result['answers
'] = $answers; 646 $mobs = ilObjMediaObject::_getMobsOfObject('qpl:
html', $this->getId()); 647 $result['mobs
'] = $mobs; 649 return json_encode($result); 652 protected function calculateReachedPointsForSolution(?array $found_values): float 654 if ($found_values === null) { 658 if (count($found_values) > 0) { 659 foreach ($this->answers as $key => $answer) { 660 if (in_array($key, $found_values)) { 661 $points += $answer->getPoints(); 662 } elseif ($this->getIsMultipleChoice()) { 663 $points += $answer->getPointsUnchecked(); 671 public function getOperators(string $expression): array 673 return ilOperatorsExpressionMapping::getOperatorsByExpression($expression); 676 public function getExpressionTypes(): array 679 iQuestionCondition::PercentageResultExpression, 680 iQuestionCondition::NumberOfResultExpression, 681 iQuestionCondition::EmptyAnswerExpression, 682 iQuestionCondition::ExclusiveResultExpression 686 public function getUserQuestionResult( 689 ): ilUserQuestionResult { 690 $result = new ilUserQuestionResult($this, $active_id, $pass); 692 $maxStep = $this->lookupMaxStep($active_id, $pass); 694 $data = $this->db->queryF( 695 'SELECT value1+1 as value1 FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s AND step = %s
', 696 ['integer
', 'integer
', 'integer
', 'integer
'], 697 [$active_id, $pass, $this->getId(), $maxStep] 700 $data = $this->db->queryF( 701 'SELECT value1+1 as value1 FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s AND step IS NULL
', 702 ['integer
', 'integer
', 'integer
'], 703 [$active_id, $pass, $this->getId()] 707 while ($row = $this->db->fetchAssoc($data)) { 708 $result->addKeyValue($row['value1
'], $row['value1
']); 711 $points = $this->calculateReachedPoints($active_id, $pass); 712 $max_points = $this->getMaximumPoints(); 714 $result->setReachedPercentage(($points / $max_points) * 100); 726 public function getAvailableAnswerOptions($index = null) 728 if ($index !== null) { 729 return $this->getAnswer($index); 731 return $this->getAnswers(); 735 public function getTestOutputSolutions($activeId, $pass): array 737 $solution = parent::getTestOutputSolutions($activeId, $pass); 739 $this->currentSolution = []; 740 foreach ($solution as $record) { 741 $this->currentSolution[] = $record['value1
']; 746 protected function getAddSolutionSelectionParameter() 748 if (!$this->isAddSolutionSelectionRequest()) { 752 return $this->request->raw('selImage
'); 754 protected function isAddSolutionSelectionRequest(): bool 756 if (!$this->request->isset('selImage
')) { 760 if (!strlen($this->request->raw('selImage
'))) { 766 protected function getRemoveSolutionSelectionParameter() 768 if (!$this->isRemoveSolutionSelectionRequest()) { 772 return $this->request->raw('remImage
'); 774 protected function isRemoveSolutionSelectionRequest(): bool 776 if (!$this->is_multiple_choice) { 780 if (!$this->request->isset('remImage
')) { 784 if (!strlen($this->request->raw('remImage
'))) { 790 protected function getReuseSolutionSelectionParameter(): ?array 792 if (!$this->isReuseSolutionSelectionRequest()) { 796 return assQuestion::explodeKeyValues($this->request->raw('reuseSelection
')); 798 protected function isReuseSolutionSelectionRequest(): bool 800 if (!$this->getTestPresentationConfig()->isPreviousPassSolutionReuseAllowed()) { 804 if (!$this->request->isset('reuseSelection
')) { 808 if (!strlen($this->request->raw('reuseSelection
'))) { 812 if (!preg_match('/\d(,\d)*/
', $this->request->raw('reuseSelection
'))) { 819 public function toLog(AdditionalInformationGenerator $additional_info): array 822 AdditionalInformationGenerator::KEY_QUESTION_TYPE => (string) $this->getQuestionType(), 823 AdditionalInformationGenerator::KEY_QUESTION_TITLE => $this->getTitleForHTMLOutput(), 824 AdditionalInformationGenerator::KEY_QUESTION_TEXT => $this->formatSAQuestion($this->getQuestion()), 825 AdditionalInformationGenerator::KEY_QUESTION_SHUFFLE_ANSWER_OPTIONS => $additional_info 826 ->getTrueFalseTagForBool($this->getShuffle()), 827 AdditionalInformationGenerator::KEY_QUESTION_IMAGEMAP_MODE => $this->getIsMultipleChoice() 828 ? $additional_info->getTagForLangVar('tst_imap_qst_mode_mc
') 829 : $additional_info->getTagForLangVar('tst_imap_qst_mode_sc
'), 830 AdditionalInformationGenerator::KEY_QUESTION_IMAGEMAP_IMAGE => $this->getImagePathWeb() . $this->getImageFilename(), 831 AdditionalInformationGenerator::KEY_FEEDBACK => [ 832 AdditionalInformationGenerator::KEY_QUESTION_FEEDBACK_ON_INCOMPLETE => $this->formatSAQuestion( 833 $this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(), false) 835 AdditionalInformationGenerator::KEY_QUESTION_FEEDBACK_ON_COMPLETE => $this->formatSAQuestion( 836 $this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(), true) 843 foreach ($this->getAnswers() as $key => $answer_obj) { 844 array_push($answers, [ 845 AdditionalInformationGenerator::KEY_QUESTION_ANSWER_OPTION => (string) $answer_obj->getAnswertext(), 846 AdditionalInformationGenerator::KEY_QUESTION_POINTS_CHECKED => (float) $answer_obj->getPoints(), 847 AdditionalInformationGenerator::KEY_QUESTION_POINTS_UNCHECKED => (float) $answer_obj->getPointsUnchecked(), 848 AdditionalInformationGenerator::KEY_QUESTION_ANSWER_OPTION_ORDER => $order, 849 AdditionalInformationGenerator::KEY_QUESTION_IMAGEMAP_ANSWER_OPTION_COORDS => $answer_obj->getCoords(), 850 AdditionalInformationGenerator::KEY_FEEDBACK => $this->formatSAQuestion( 851 $this->feedbackOBJ->getSpecificAnswerFeedbackExportPresentation($this->getId(), 0, $key) 856 $result[AdditionalInformationGenerator::KEY_QUESTION_ANSWER_OPTIONS] = $answers; 861 protected function solutionValuesToLog( 862 AdditionalInformationGenerator $additional_info, 863 array $solution_values 865 $parsed_solution = []; 866 foreach ($this->getAnswers() as $id => $answer) { 867 $value = $additional_info->getTagForLangVar('unchecked
'); 868 foreach ($solution_values as $solution) { 869 if ($solution['value1
'] == $id) { 870 $value = $additional_info->getTagForLangVar('checked
'); 874 $parsed_solution["{$answer->getArea()}: {$answer->getCoords()}"] = $value; 876 return $parsed_solution; 879 public function solutionValuesToText(array $solution_values): array 881 $parsed_solution = []; 882 foreach ($this->getAnswers() as $id => $answer) { 883 $value = $this->lng->txt('unchecked
'); 884 foreach ($solution_values as $solution) { 885 if ($solution['value1
'] == $id) { 886 $value = $this->lng->txt('checked
'); 890 $parsed_solution[] = "{$answer->getArea()}: {$answer->getCoords()} ({$value})"; 892 return $parsed_solution; 895 public function getCorrectSolutionForTextOutput(int $active_id, int $pass): array 898 fn(ASS_AnswerImagemap $v): string => "{$v->getArea()}: {$v->getCoords()}" 899 . "({$this->lng->txt('points
')} " 900 . "{$this->lng->txt('checked
')}: {$v->getPoints()}, " 901 . "{$this->lng->txt('unchecked
')}: {$v->getPointsUnchecked()})", 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)
static getInstance($identifier)
get_imagemap_contents(string $href='#')
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
loadFromDb(int $question_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
removeAllImageFiles(string $image_target_path)
addAnswer(string $answertext='', float $points=0.0, int $order=0, string $coords='', string $area='', float $points_unchecked=0.0)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
setComment(string $comment="")
getIsMultipleChoice()
Returns true, if the imagemap question is a multiplechoice question.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getImagePath($question_id=null, $object_id=null)
Returns the image path for web accessable images of a question.
uploadImagemap(array $shapes)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const MODE_MULTIPLE_CHOICE
Class for image map questions.
__construct( $title='', $comment='', $author='', $owner=-1, $question='', $image_filename='')
assImagemapQuestion constructor
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)
RequestDataCollector $request
saveToDb(?int $original_id=null)
cloneQuestionTypeSpecificProperties(\assQuestion $target)
setIsMultipleChoice($is_multiple_choice)
Set true if the Imagemapquestion is a multiplechoice Question.
saveAdditionalQuestionDataToDb()
Saves a record to the question types additional data table.
setImageFilename(string $image_filename, string $image_tempfilename='')
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)
saveAnswerSpecificDataToDb()
Saves the answer specific records into a question types answer table.
setAuthor(string $author="")
setAdditionalContentEditingMode(?string $additionalContentEditingMode)
getAdditionalTableName()
Returns the name of the additional question data table in the database.
copyImagemapFiles(int $source_question_id, int $source_parent_id, int $target_question_id, int $target_parent_id)
static getDraftInstance()
setQuestion(string $question="")