19 require_once
'./Modules/Test/classes/inc.AssessmentConstants.php';
36 private \ILIAS\TestQuestionPool\InternalRequestService
$request;
88 $this->answers = array();
89 $this->coords = array();
92 $this->request = $DIC->testQuestionPool()->internal()->request();
123 if (strlen($this->title)
126 && ($this->image_filename)
127 && (count($this->answers))
159 $ilDB = $DIC[
'ilDB'];
161 "DELETE FROM qpl_a_imagemap WHERE question_fi = %s",
163 array( $this->
getId() )
167 foreach ($this->answers as
$key => $value) {
168 $answer_obj = $this->answers[
$key];
169 $answer_obj->setOrder(
$key);
170 $next_id =
$ilDB->nextId(
'qpl_a_imagemap');
172 "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)",
173 array(
"integer",
"integer",
"text",
"float",
"integer",
"text",
"text",
"float" ),
174 array( $next_id, $this->
id, $answer_obj->getAnswertext(
175 ), $answer_obj->getPoints(), $answer_obj->getOrder(
176 ), $answer_obj->getCoords(), $answer_obj->getArea(
177 ), $answer_obj->getPointsUnchecked() )
185 $ilDB = $DIC[
'ilDB'];
190 array( $this->
getId() )
195 ) .
" (question_fi, image_file, is_multiple_choice) VALUES (%s, %s, %s)",
196 array(
"integer",
"text",
'integer' ),
199 $this->image_filename,
200 (
int) $this->is_multiple_choice
212 if ($this->
id <= 0) {
217 $this_id = $this->
getId();
221 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
225 if ((
int) $testObjId > 0) {
226 $clone->setObjId($testObjId);
245 $clone->copyPageOfQuestion($this_id);
247 $clone->copyXHTMLMediaObjectsOfQuestion($this_id);
249 $clone->duplicateImage($this_id, $thisObjId);
251 $clone->onDuplicate($thisObjId, $this_id, $clone->getObjId(), $clone->getId());
265 if ($this->
getId() <= 0) {
266 throw new RuntimeException(
'The question has not been saved. It cannot be duplicated');
270 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
273 $source_questionpool_id = $this->
getObjId();
274 $clone->setObjId($target_questionpool_id);
285 $clone->copyImage(
$original_id, $source_questionpool_id);
287 $clone->onCopy($source_questionpool_id,
$original_id, $clone->getObjId(), $clone->getId());
294 if ($this->
getId() <= 0) {
295 throw new RuntimeException(
'The question has not been saved. It cannot be duplicated');
298 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
301 $sourceParentId = $this->
getObjId();
307 $clone->setObjId($targetParentId);
309 if ($targetQuestionTitle) {
310 $clone->setTitle($targetQuestionTitle);
315 $clone->copyPageOfQuestion($sourceQuestionId);
317 $clone->copyXHTMLMediaObjectsOfQuestion($sourceQuestionId);
319 $clone->copyImage($sourceQuestionId, $sourceParentId);
321 $clone->onCopy($sourceParentId, $sourceQuestionId, $clone->getObjId(), $clone->getId());
332 $imagepath_original = str_replace(
"/$this->id/images",
"/$question_id/images", $imagepath);
334 if ((
int) $objectId > 0) {
335 $imagepath_original = str_replace(
"/$this->obj_id/",
"/$objectId/", $imagepath_original);
338 if (!file_exists($imagepath)) {
344 if (!file_exists($imagepath_original .
$filename)) {
345 $ilLog->write(
"Could not find an image map file when trying to duplicate image: " . $imagepath_original . $filename);
346 $imagepath_original = str_replace(
"/$this->obj_id/",
"/$objectId/", $imagepath_original);
347 $ilLog->write(
"Using fallback source directory:" . $imagepath_original);
350 if (!file_exists($imagepath_original . $filename) || !copy($imagepath_original . $filename, $imagepath . $filename)) {
351 $ilLog->write(
"Could not duplicate image for image map question: " . $imagepath_original . $filename);
355 public function copyImage($question_id, $source_questionpool): void
358 $imagepath_original = str_replace(
"/$this->id/images",
"/$question_id/images", $imagepath);
359 $imagepath_original = str_replace(
"/$this->obj_id/",
"/$source_questionpool/", $imagepath_original);
360 if (!file_exists($imagepath)) {
364 if (!copy($imagepath_original .
$filename, $imagepath . $filename)) {
365 print
"image could not be copied!!!! ";
381 $ilDB = $DIC[
'ilDB'];
383 $result =
$ilDB->queryF(
388 if ($result->numRows() == 1) {
390 $this->
setId($question_id);
393 $this->
setComment((
string) $data[
"description"]);
400 include_once(
"./Services/RTE/classes/class.ilRTE.php");
415 $result =
$ilDB->queryF(
416 "SELECT * FROM qpl_a_imagemap WHERE question_fi = %s ORDER BY aorder ASC",
420 include_once
"./Modules/TestQuestionPool/classes/class.assAnswerImagemap.php";
421 if ($result->numRows() > 0) {
422 while ($data =
$ilDB->fetchAssoc($result)) {
423 $image_map_question =
new ASS_AnswerImagemap($data[
"answertext"] ??
'', $data[
"points"], $data[
"aorder"]);
424 $image_map_question->setCoords($data[
"coords"]);
425 $image_map_question->setArea($data[
"area"]);
426 $image_map_question->setPointsUnchecked($data[
'points_unchecked']);
427 array_push($this->answers, $image_map_question);
431 parent::loadFromDb($question_id);
444 if (count($shapes) > 0) {
445 foreach ($shapes as $shape) {
446 $this->
addAnswer($shape->getAnswertext(), 0.0, count($this->answers), $shape->getCoords(), $shape->getArea());
472 if (!empty($image_tempfilename)) {
474 if (!file_exists($imagepath)) {
478 $this->
ilias->raiseError(
"The image could not be uploaded!", $this->
ilias->error_obj->MESSAGE);
482 $ilLog->write(
"gespeichert: " . $imagepath . $image_filename);
498 for (
$i = 0;
$i < count($this->answers);
$i++) {
528 $points_unchecked = 0.0
530 include_once
"./Modules/TestQuestionPool/classes/class.assAnswerImagemap.php";
531 if (array_key_exists($order, $this->answers)) {
535 $answer->setArea($area);
536 $answer->setPointsUnchecked($points_unchecked);
537 for (
$i = count($this->answers) - 1;
$i >= $order;
$i--) {
538 $this->answers[
$i + 1] = $this->answers[
$i];
539 $this->answers[
$i + 1]->setOrder(
$i + 1);
541 $this->answers[$order] = $answer;
546 $answer->setArea($area);
547 $answer->setPointsUnchecked($points_unchecked);
548 array_push($this->answers, $answer);
563 return count($this->answers);
582 if (count($this->answers) < 1) {
585 if (
$index >= count($this->answers)) {
588 return $this->answers[
$index];
620 if (count($this->answers) < 1) {
623 if (
$index >= count($this->answers)) {
626 unset($this->answers[
$index]);
627 $this->answers = array_values($this->answers);
628 for (
$i = 0;
$i < count($this->answers);
$i++) {
629 if ($this->answers[
$i]->getOrder() >
$index) {
630 $this->answers[
$i]->setOrder(
$i);
645 $this->answers = array();
659 foreach ($this->answers as
$key => $value) {
660 if ($this->is_multiple_choice) {
661 if ($value->getPoints() > $value->getPointsUnchecked()) {
662 $points += $value->getPoints();
664 $points += $value->getPointsUnchecked();
667 if ($value->getPoints() >
$points) {
687 if ($returndetails) {
688 throw new ilTestException(
'return details not implemented for ' . __METHOD__);
692 $ilDB = $DIC[
'ilDB'];
694 $found_values = array();
695 if (is_null($pass)) {
700 if (strcmp(
$data[
"value1"],
"") != 0) {
701 array_push($found_values,
$data[
"value1"]);
736 $ilDB = $DIC[
'ilDB'];
738 if (is_null($pass)) {
739 include_once
"./Modules/Test/classes/class.ilObjTest.php";
743 $solutionSelectionChanged =
false;
745 $this->
getProcessLocker()->executeUserSolutionUpdateLockOperation(
function () use (&$solutionSelectionChanged,
$ilDB, $active_id, $pass, $authorized) {
754 $solutionSelectionChanged =
true;
759 $this->is_multiple_choice
765 foreach ($selection as $selectedIndex) {
767 $solutionSelectionChanged =
true;
773 'value1' => (
int) $selection
776 $solutionSelectionChanged =
true;
780 if ($this->is_multiple_choice) {
782 'value1' => (
int) $this->request->raw(
'selImage')
788 $this->
saveCurrentSolution($active_id, $pass, $this->request->raw(
'selImage'), null, $authorized);
790 $solutionSelectionChanged =
true;
795 require_once
'Modules/Test/classes/class.ilObjAssessmentFolder.php';
797 if ($solutionSelectionChanged) {
800 "log_user_entered_values",
802 ), $active_id, $this->
getId());
806 "log_user_not_entered_values",
808 ), $active_id, $this->
getId());
819 if ($this->is_multiple_choice && strlen($this->request->raw(
'remImage'))) {
820 unset($solution[(
int) $this->request->raw(
'remImage')]);
823 if (strlen($this->request->raw(
'selImage'))) {
824 if (!$this->is_multiple_choice) {
828 $solution[(
int) $this->request->raw(
'selImage')] = (
int) $this->request->raw(
'selImage');
837 parent::syncWithOriginal();
851 return "assImagemapQuestion";
864 return "qpl_qst_imagemap";
877 return "qpl_a_imagemap";
886 $text = parent::getRTETextWithMediaObjects();
887 foreach ($this->answers as
$index => $answer) {
888 $text .= $this->feedbackOBJ->getSpecificAnswerFeedbackContent($this->
getId(), 0,
$index);
898 parent::setExportDetailsXLS($worksheet, $startrow, $active_id, $pass);
904 $worksheet->
setCell($startrow +
$i, 0, $answer->getArea() .
": " . $answer->getCoords());
908 foreach ($solution as $solIndex => $sol) {
909 if ($sol[
'value1'] ==
$id) {
915 $worksheet->
setCell($startrow +
$i, 2, $cellValue);
920 return $startrow +
$i + 1;
931 $this->image_filename =
"";
939 include_once(
"./Services/RTE/classes/class.ilRTE.php");
941 $result[
'id'] = $this->
getId();
948 $result[
'feedback'] = array(
949 'onenotcorrect' => $this->
formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(),
false)),
950 'allcorrect' => $this->
formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(),
true))
958 "answertext" => (
string) $answer_obj->getAnswertext(),
959 "points" => (float) $answer_obj->getPoints(),
960 "points_unchecked" => (float) $answer_obj->getPointsUnchecked(),
962 "coords" => $answer_obj->getCoords(),
963 "state" => $answer_obj->getState(),
964 "area" => $answer_obj->getArea(),
966 $this->feedbackOBJ->getSpecificAnswerFeedbackExportPresentation($this->getId(), 0,
$key)
974 $result[
'mobs'] =
$mobs;
976 return json_encode($result);
985 if ($found_values == null) {
989 if (count($found_values) > 0) {
990 foreach ($this->answers as
$key => $answer) {
991 if (in_array(
$key, $found_values)) {
992 $points += $answer->getPoints();
994 $points += $answer->getPointsUnchecked();
1041 $ilDB = $DIC[
'ilDB'];
1046 if ($maxStep !== null) {
1048 "SELECT value1+1 as value1 FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s AND step = %s",
1049 array(
"integer",
"integer",
"integer",
"integer"),
1050 array($active_id, $pass, $this->
getId(), $maxStep)
1054 "SELECT value1+1 as value1 FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s AND step IS NULL",
1055 array(
"integer",
"integer",
"integer"),
1056 array($active_id, $pass, $this->
getId())
1061 $result->addKeyValue($row[
"value1"], $row[
"value1"]);
1067 $result->setReachedPercentage((
$points / $max_points) * 100);
1091 $solution = parent::getTestOutputSolutions($activeId, $pass);
1093 $this->currentSolution = array();
1094 foreach ($solution as $record) {
1095 $this->currentSolution[] = $record[
'value1'];
1106 return $this->request->raw(
'selImage');
1110 if (!$this->request->isset(
"selImage")) {
1114 if (!strlen($this->request->raw(
'selImage'))) {
1126 return $this->request->raw(
'remImage');
1130 if (!$this->is_multiple_choice) {
1134 if (!$this->request->isset(
"remImage")) {
1138 if (!strlen($this->request->raw(
'remImage'))) {
1158 if (!$this->request->isset(
"reuseSelection")) {
1162 if (!strlen($this->request->raw(
"reuseSelection"))) {
1166 if (!preg_match(
'/\d(,\d)*/', $this->request->raw(
"reuseSelection"))) {
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)
calculateReachedPointsForSolution($found_values)
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
savePreviewData(ilAssQuestionPreviewSession $previewSession)
setExportDetailsXLS(ilAssExcelFormatHelper $worksheet, int $startrow, int $active_id, int $pass)
{}
const ExclusiveResultExpression
updateCurrentSolutionsAuthorization(int $activeId, int $pass, bool $authorized, bool $keepTime=false)
getRemoveSolutionSelectionParameter()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Abstract basic class which is to be extended by the concrete assessment question type classes...
ILIAS TestQuestionPool InternalRequestService $request
getOperators($expression)
Get all available operations for a specific question.
getColumnCoord(int $a_col)
Get column "name" from number.
ensureNonNegativePoints($points)
__construct( $title="", $comment="", $author="", $owner=-1, $question="", $image_filename="")
assImagemapQuestion constructor
getImagePathWeb()
Returns the web image path for web accessable images of a question.
static _getOriginalId(int $question_id)
getParticipantsSolution()
getUserQuestionResult($active_id, $pass)
Get the user solution for a question by active_id and the test pass.
deleteArea($index=0)
Deletes an answer.
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
setComment(string $comment="")
getAddSolutionSelectionParameter()
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)
getIsMultipleChoice()
Returns true, if the imagemap question is a multiplechoice question.
deleteDummySolutionRecord(int $activeId, int $passIndex)
calculateReachedPoints($active_id, $pass=null, $authorizedSolution=true, $returndetails=false)
Returns the points, a learner has reached answering the question.
getTestOutputSolutions($activeId, $pass)
saveCurrentSolution(int $active_id, int $pass, $value1, $value2, bool $authorized=true, $tstamp=0)
setBold(string $a_coords)
Set cell(s) to bold.
static _enabledAssessmentLogging()
getImagePath($question_id=null, $object_id=null)
Returns the image path for web accessable images of a question.
getAnswer($index=0)
Returns an answer.
saveToDb($original_id="")
Saves an assImagemapQuestion object to a database.
uploadImagemap(array $shapes)
Uploads an image map and takes over the areas.
toJSON()
Returns a JSON representation of the question.
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)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
deleteImage()
Deletes the image file.
const MODE_MULTIPLE_CHOICE
header include for all ilias files.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
string $question
The question text.
getAvailableAnswerOptions($index=null)
If index is null, the function returns an array with all anwser options Else it returns the specific ...
getRTETextWithMediaObjects()
Collects all text in the question which could contain media objects which were created with the Rich ...
isComplete()
Returns true, if a imagemap question is complete for use.
createNewOriginalFromThisDuplicate($targetParentId, $targetQuestionTitle="")
copyImage($question_id, $source_questionpool)
getMaximumPoints()
Returns the maximum points, a learner can reach answering the question.
static getOperatorsByExpression($expression)
duplicateImage($question_id, $objectId=null)
setIsMultipleChoice($is_multiple_choice)
Set true if the Imagemapquestion is a multiplechoice Question.
getExpressionTypes()
Get all available expression types for a specific question.
saveWorkingData($active_id, $pass=null, $authorized=true)
Saves the learners input of the question to the database.
deductHintPointsFromReachedPoints(ilAssQuestionPreviewSession $previewSession, $reachedPoints)
isRemoveSolutionSelectionRequest()
addAnswer( $answertext="", $points=0.0, $order=0, $coords="", $area="", $points_unchecked=0.0)
Adds a possible answer for a imagemap question.
saveQuestionDataToDb(int $original_id=-1)
saveAdditionalQuestionDataToDb()
Saves a record to the question types additional data table.
getSolutionMaxPass(int $active_id)
removeCurrentSolution(int $active_id, int $pass, bool $authorized=true)
& getAnswers()
Returns the answer array.
copyObject($target_questionpool_id, $title="")
Copies an assImagemapQuestion object.
getAnswerCount()
Returns the number of answers.
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)
getTestPresentationConfig()
setImageFilename($image_filename, $image_tempfilename="")
Sets the image file name.
setTitle(string $title="")
deleteSolutionRecordByValues(int $activeId, int $passIndex, bool $authorized, array $matchValues)
isReuseSolutionSelectionRequest()
setLifecycle(ilAssQuestionLifecycle $lifecycle)
saveAnswerSpecificDataToDb()
Saves the answer specific records into a question types answer table.
getAnswerTableName()
Returns the name of the answer table in the database.
getCurrentSolutionResultSet(int $active_id, int $pass, bool $authorized=true)
getQuestionType()
Returns the question type of the question.
flushAnswers()
Deletes all answers.
forceExistingIntermediateSolution(int $activeId, int $passIndex, bool $considerDummyRecordCreation)
ILIAS DI LoggingServices $ilLog
lookupMaxStep(int $active_id, int $pass)
setAuthor(string $author="")
calculateReachedPointsFromPreviewSession(ilAssQuestionPreviewSession $previewSession)
loadFromDb($question_id)
Loads a assImagemapQuestion object from a database.
setAdditionalContentEditingMode(?string $additionalContentEditingMode)
getReuseSolutionSelectionParameter()
get_imagemap_contents($href="#")
Gets the imagemap file contents.
static explodeKeyValues(string $keyValues)
isAddSolutionSelectionRequest()
getAdditionalTableName()
Returns the name of the additional question data table in the database.
static getDraftInstance()
duplicate(bool $for_test=true, string $title="", string $author="", string $owner="", $testObjId=null)
Duplicates an assImagemapQuestion.
setQuestion(string $question="")
const EmptyAnswerExpression