4 require_once
'./Modules/TestQuestionPool/classes/class.assQuestion.php';
5 require_once
'./Modules/Test/classes/inc.AssessmentConstants.php';
6 require_once
'./Modules/TestQuestionPool/interfaces/interface.ilObjQuestionScoringAdjustable.php';
7 require_once
'./Modules/TestQuestionPool/interfaces/interface.ilObjAnswerScoringAdjustable.php';
8 require_once
'./Modules/TestQuestionPool/interfaces/interface.iQuestionCondition.php';
9 require_once
'./Modules/TestQuestionPool/classes/class.ilUserQuestionResult.php';
77 $this->answers = array();
78 $this->coords = array();
109 if (strlen($this->title)
112 && ($this->image_filename)
113 && (count($this->answers))
141 $ilDB = $DIC[
'ilDB'];
143 "DELETE FROM qpl_a_imagemap WHERE question_fi = %s",
145 array( $this->
getId() )
149 foreach ($this->answers as $key => $value) {
150 $answer_obj = $this->answers[$key];
151 $answer_obj->setOrder($key);
152 $next_id =
$ilDB->nextId(
'qpl_a_imagemap');
154 "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)",
155 array(
"integer",
"integer",
"text",
"float",
"integer",
"text",
"text",
"float" ),
156 array( $next_id, $this->
id, $answer_obj->getAnswertext(
157 ), $answer_obj->getPoints(), $answer_obj->getOrder(
158 ), $answer_obj->getCoords(), $answer_obj->getArea(
159 ), $answer_obj->getPointsUnchecked() )
167 $ilDB = $DIC[
'ilDB'];
172 array( $this->
getId() )
177 ) .
" (question_fi, image_file, is_multiple_choice) VALUES (%s, %s, %s)",
178 array(
"integer",
"text",
'integer' ),
181 $this->image_filename,
182 (
int) $this->is_multiple_choice
194 if ($this->
id <= 0) {
199 $this_id = $this->
getId();
203 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
207 if ((
int) $testObjId > 0) {
208 $clone->setObjId($testObjId);
227 $clone->copyPageOfQuestion($this_id);
229 $clone->copyXHTMLMediaObjectsOfQuestion($this_id);
231 $clone->duplicateImage($this_id, $thisObjId);
233 $clone->onDuplicate($thisObjId, $this_id, $clone->getObjId(), $clone->getId());
247 if ($this->
id <= 0) {
253 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
256 $source_questionpool_id = $this->
getObjId();
257 $clone->setObjId($target_questionpool_id);
268 $clone->copyImage(
$original_id, $source_questionpool_id);
270 $clone->onCopy($source_questionpool_id,
$original_id, $clone->getObjId(), $clone->getId());
277 if ($this->
id <= 0) {
282 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
285 $sourceParentId = $this->
getObjId();
291 $clone->setObjId($targetParentId);
293 if ($targetQuestionTitle) {
294 $clone->setTitle($targetQuestionTitle);
299 $clone->copyPageOfQuestion($sourceQuestionId);
301 $clone->copyXHTMLMediaObjectsOfQuestion($sourceQuestionId);
303 $clone->copyImage($sourceQuestionId, $sourceParentId);
305 $clone->onCopy($sourceParentId, $sourceQuestionId, $clone->getObjId(), $clone->getId());
313 $ilLog = $DIC[
'ilLog'];
316 $imagepath_original = str_replace(
"/$this->id/images",
"/$question_id/images", $imagepath);
318 if ((
int) $objectId > 0) {
319 $imagepath_original = str_replace(
"/$this->obj_id/",
"/$objectId/", $imagepath_original);
322 if (!file_exists($imagepath)) {
328 if (!file_exists($imagepath_original .
$filename)) {
329 $ilLog->write(
"Could not find an image map file when trying to duplicate image: " . $imagepath_original . $filename);
330 $imagepath_original = str_replace(
"/$this->obj_id/",
"/$objectId/", $imagepath_original);
331 $ilLog->write(
"Using fallback source directory:" . $imagepath_original);
334 if (!file_exists($imagepath_original . $filename) || !copy($imagepath_original . $filename, $imagepath . $filename)) {
335 $ilLog->write(
"Could not duplicate image for image map question: " . $imagepath_original . $filename);
339 public function copyImage($question_id, $source_questionpool)
342 $imagepath_original = str_replace(
"/$this->id/images",
"/$question_id/images", $imagepath);
343 $imagepath_original = str_replace(
"/$this->obj_id/",
"/$source_questionpool/", $imagepath_original);
344 if (!file_exists($imagepath)) {
348 if (!copy($imagepath_original .
$filename, $imagepath . $filename)) {
349 print
"image could not be copied!!!! ";
365 $ilDB = $DIC[
'ilDB'];
374 $this->
setId($question_id);
384 include_once(
"./Services/RTE/classes/class.ilRTE.php");
401 "SELECT * FROM qpl_a_imagemap WHERE question_fi = %s ORDER BY aorder ASC",
405 include_once
"./Modules/TestQuestionPool/classes/class.assAnswerImagemap.php";
412 parent::loadFromDb($question_id);
425 if (count($shapes) > 0) {
426 foreach ($shapes as $shape) {
427 $this->
addAnswer($shape->getAnswertext(), 0.0, count($this->answers), $shape->getCoords(), $shape->getArea());
453 if (!empty($image_tempfilename)) {
455 if (!file_exists($imagepath)) {
459 $this->
ilias->raiseError(
"The image could not be uploaded!", $this->
ilias->error_obj->MESSAGE);
462 $ilLog = $DIC[
'ilLog'];
463 $ilLog->write(
"gespeichert: " . $imagepath . $image_filename);
479 for (
$i = 0;
$i < count($this->answers);
$i++) {
509 $points_unchecked = 0.0
511 include_once
"./Modules/TestQuestionPool/classes/class.assAnswerImagemap.php";
512 if (array_key_exists($order, $this->answers)) {
515 for (
$i = count($this->answers) - 1;
$i >= $order;
$i--) {
516 $this->answers[
$i + 1] = $this->answers[
$i];
517 $this->answers[
$i + 1]->setOrder(
$i + 1);
519 $this->answers[$order] = $answer;
523 array_push($this->answers, $answer);
538 return count($this->answers);
557 if (count($this->answers) < 1) {
560 if (
$index >= count($this->answers)) {
563 return $this->answers[
$index];
595 if (count($this->answers) < 1) {
598 if (
$index >= count($this->answers)) {
601 unset($this->answers[
$index]);
602 $this->answers = array_values($this->answers);
603 for (
$i = 0;
$i < count($this->answers);
$i++) {
604 if ($this->answers[
$i]->getOrder() >
$index) {
605 $this->answers[
$i]->setOrder(
$i);
620 $this->answers = array();
634 foreach ($this->answers as $key => $value) {
635 if ($this->is_multiple_choice) {
636 if ($value->getPoints() > $value->getPointsUnchecked()) {
637 $points += $value->getPoints();
639 $points += $value->getPointsUnchecked();
642 if ($value->getPoints() >
$points) {
662 if ($returndetails) {
663 throw new ilTestException(
'return details not implemented for ' . __METHOD__);
667 $ilDB = $DIC[
'ilDB'];
669 $found_values = array();
670 if (is_null(
$pass)) {
675 if (strcmp(
$data[
"value1"],
"") != 0) {
676 array_push($found_values,
$data[
"value1"]);
711 $ilDB = $DIC[
'ilDB'];
713 if (is_null(
$pass)) {
714 include_once
"./Modules/Test/classes/class.ilObjTest.php";
718 $solutionSelectionChanged =
false;
720 $this->
getProcessLocker()->executeUserSolutionUpdateLockOperation(
function () use (&$solutionSelectionChanged,
$ilDB, $active_id,
$pass, $authorized) {
729 $solutionSelectionChanged =
true;
734 $this->is_multiple_choice
740 foreach ($selection as $selectedIndex) {
742 $solutionSelectionChanged =
true;
748 'value1' => (
int) $selection
751 $solutionSelectionChanged =
true;
755 if ($this->is_multiple_choice) {
757 'value1' => (
int)
$_GET[
'selImage']
765 $solutionSelectionChanged =
true;
770 require_once
'Modules/Test/classes/class.ilObjAssessmentFolder.php';
772 if ($solutionSelectionChanged) {
786 if ($this->is_multiple_choice && strlen(
$_GET[
'remImage'])) {
787 unset($solution[(
int)
$_GET[
'remImage']]);
790 if (strlen(
$_GET[
'selImage'])) {
791 if (!$this->is_multiple_choice) {
795 $solution[(int)
$_GET[
'selImage']] = (
int)
$_GET[
'selImage'];
804 parent::syncWithOriginal();
818 return "assImagemapQuestion";
831 return "qpl_qst_imagemap";
844 return "qpl_a_imagemap";
853 $text = parent::getRTETextWithMediaObjects();
854 foreach ($this->answers as
$index => $answer) {
855 $text .= $this->feedbackOBJ->getSpecificAnswerFeedbackContent($this->
getId(), 0,
$index);
865 parent::setExportDetailsXLS($worksheet, $startrow, $active_id,
$pass);
871 $worksheet->setCell($startrow +
$i, 0, $answer->getArea() .
": " . $answer->getCoords());
872 $worksheet->setBold($worksheet->getColumnCoord(0) . ($startrow +
$i));
875 foreach ($solution as $solIndex => $sol) {
876 if ($sol[
'value1'] ==
$id) {
882 $worksheet->setCell($startrow +
$i, 2, $cellValue);
887 return $startrow +
$i + 1;
898 $this->image_filename =
"";
906 include_once(
"./Services/RTE/classes/class.ilRTE.php");
916 'onenotcorrect' => $this->
formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(),
false)),
917 'allcorrect' => $this->
formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(),
true))
923 foreach ($this->
getAnswers() as $key => $answer_obj) {
925 "answertext" => (
string) $answer_obj->getAnswertext(),
926 "points" => (float) $answer_obj->getPoints(),
927 "points_unchecked" => (float) $answer_obj->getPointsUnchecked(),
928 "order" => (int) $order,
929 "coords" => $answer_obj->getCoords(),
930 "state" => $answer_obj->getState(),
931 "area" => $answer_obj->getArea(),
933 $this->feedbackOBJ->getSpecificAnswerFeedbackExportPresentation($this->getId(), 0, $key)
941 $result[
'mobs'] =
$mobs;
943 return json_encode($result);
953 if (count($found_values) > 0) {
954 foreach ($this->answers as $key => $answer) {
955 if (in_array($key, $found_values)) {
956 $points += $answer->getPoints();
958 $points += $answer->getPointsUnchecked();
976 require_once
"./Modules/TestQuestionPool/classes/class.ilOperatorsExpressionMapping.php";
1006 $ilDB = $DIC[
'ilDB'];
1009 $maxStep = $this->lookupMaxStep($active_id,
$pass);
1011 if ($maxStep !== null) {
1013 "SELECT value1+1 as value1 FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s AND step = %s",
1014 array(
"integer",
"integer",
"integer",
"integer"),
1015 array($active_id,
$pass, $this->
getId(), $maxStep)
1019 "SELECT value1+1 as value1 FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s AND step IS NULL",
1020 array(
"integer",
"integer",
"integer"),
1026 $result->addKeyValue($row[
"value1"], $row[
"value1"]);
1057 $solution = parent::getTestOutputSolutions($activeId,
$pass);
1059 $this->currentSolution = array();
1060 foreach ($solution as $record) {
1061 $this->currentSolution[] = $record[
'value1'];
1072 return $_GET[
"selImage"];
1076 if (!isset(
$_GET[
"selImage"])) {
1080 if (!strlen(
$_GET[
"selImage"])) {
1092 return $_GET[
"remImage"];
1096 if (!$this->is_multiple_choice) {
1100 if (!isset(
$_GET[
"remImage"])) {
1104 if (!strlen(
$_GET[
"remImage"])) {
1124 if (!isset(
$_GET[
"reuseSelection"])) {
1128 if (!strlen(
$_GET[
"reuseSelection"])) {
1132 if (!preg_match(
'/\d(,\d)*/',
$_GET[
"reuseSelection"])) {
static makeDirParents($a_dir)
Create a new directory and all parent directories.
static logAction($logtext="", $active_id="", $question_id="")
Logs an action into the Test&Assessment log.
getId()
Gets the id of the assQuestion object.
static getInstance($identifier)
static _getOriginalId($question_id)
Returns the original id of a question.
formatSAQuestion($a_q)
Format self assessment question.
calculateReachedPointsForSolution($found_values)
const PercentageResultExpression
Class iQuestionCondition.
forceExistingIntermediateSolution($activeId, $passIndex, $considerDummyRecordCreation)
static _getPass($active_id)
Retrieves the actual pass of a given user for a given test.
const NumberOfResultExpression
savePreviewData(ilAssQuestionPreviewSession $previewSession)
const ExclusiveResultExpression
getRemoveSolutionSelectionParameter()
duplicate($for_test=true, $title="", $author="", $owner="", $testObjId=null)
Duplicates an assImagemapQuestion.
Class for true/false or yes/no answers.
Abstract basic class which is to be extended by the concrete assessment question type classes...
getOperators($expression)
Get all available operations for a specific question.
ensureNonNegativePoints($points)
deleteDummySolutionRecord($activeId, $passIndex)
__construct( $title="", $comment="", $author="", $owner=-1, $question="", $image_filename="")
assImagemapQuestion constructor
getSolutionValues($active_id, $pass=null, $authorized=true)
Loads solutions of a given user from the database an returns it.
setId($id=-1)
Sets the id of the assQuestion object.
getImagePathWeb()
Returns the web image path for web accessable images of a question.
getSolutionMaxPass($active_id)
Returns the maximum pass a users question solution.
setEstimatedWorkingTime($hour=0, $min=0, $sec=0)
Sets the estimated working time of a question from given hour, minute and second. ...
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.
setNrOfTries($a_nr_of_tries)
setAdditionalContentEditingMode($additinalContentEditingMode)
setter for additional content editing mode for this question
static _replaceMediaObjectImageSrc($a_text, $a_direction=0, $nic=IL_INST_ID)
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
getObjId()
Get the object id of the container object.
getAddSolutionSelectionParameter()
getShuffle()
Gets the shuffle flag.
Base Exception for all Exceptions relating to Modules/Test.
setParticipantsSolution($participantSolution)
getIsMultipleChoice()
Returns true, if the imagemap question is a multiplechoice question.
static _getLogLanguage()
retrieve the log language for assessment logging
calculateReachedPoints($active_id, $pass=null, $authorizedSolution=true, $returndetails=false)
Returns the points, a learner has reached answering the question.
getTestOutputSolutions($activeId, $pass)
setAuthor($author="")
Sets the authors name of the assQuestion object.
static _enabledAssessmentLogging()
check wether assessment logging is enabled or not
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.
Class ilUserQuestionResult.
updateCurrentSolutionsAuthorization($activeId, $pass, $authorized, $keepTime=false)
saveCurrentSolution($active_id, $pass, $value1, $value2, $authorized=true, $tstamp=null)
static moveUploadedFile($a_file, $a_name, $a_target, $a_raise_errors=true, $a_mode="move_uploaded")
move uploaded file
static explodeKeyValues($keyValues)
Interface ilObjAnswerScoringAdjustable.
getQuestion()
Gets the question string of the question object.
deleteImage()
Deletes the image file.
const MODE_MULTIPLE_CHOICE
redirection script todo: (a better solution should control the processing via a xml file) ...
Class for image map questions.
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)
setPoints($a_points)
Sets the maximum available points for the question.
saveQuestionDataToDb($original_id="")
isRemoveSolutionSelectionRequest()
addAnswer( $answertext="", $points=0.0, $order=0, $coords="", $area="", $points_unchecked=0.0)
Adds a possible answer for a imagemap question.
saveAdditionalQuestionDataToDb()
Saves a record to the question types additional data table.
& getAnswers()
Returns the answer array.
copyObject($target_questionpool_id, $title="")
Copies an assImagemapQuestion object.
getAnswerCount()
Returns the number of answers.
setQuestion($question="")
Sets the question string of the question object.
Interface ilObjQuestionScoringAdjustable.
removeCurrentSolution($active_id, $pass, $authorized=true)
__construct(Container $dic, ilPlugin $plugin)
setExportDetailsXLS($worksheet, $startrow, $active_id, $pass)
{}
deleteSolutionRecordByValues($activeId, $passIndex, $authorized, $matchValues)
getTestPresentationConfig()
Get the test question configuration (initialised once)
setImageFilename($image_filename, $image_tempfilename="")
Sets the image file name.
setOriginalId($original_id)
isReuseSolutionSelectionRequest()
getCurrentSolutionResultSet($active_id, $pass, $authorized=true)
Get a restulset for the current user solution for a this question by active_id and pass...
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.
getTitle()
Gets the title string of the assQuestion object.
getQuestionType()
Returns the question type of the question.
flushAnswers()
Deletes all answers.
setTitle($title="")
Sets the title string of the assQuestion object.
setObjId($obj_id=0)
Set the object id of the container object.
calculateReachedPointsFromPreviewSession(ilAssQuestionPreviewSession $previewSession)
loadFromDb($question_id)
Loads a assImagemapQuestion object from a database.
setComment($comment="")
Sets the comment string of the assQuestion object.
getReuseSolutionSelectionParameter()
get_imagemap_contents($href="#")
Gets the imagemap file contents.
isAddSolutionSelectionRequest()
getAdditionalTableName()
Returns the name of the additional question data table in the database.
static getDraftInstance()
setOwner($owner="")
Sets the creator/owner ID of the assQuestion object.
const EmptyAnswerExpression