4require_once 
'./Modules/TestQuestionPool/classes/class.assQuestion.php';
 
    5require_once 
'./Modules/Test/classes/inc.AssessmentConstants.php';
 
    6require_once 
'./Modules/TestQuestionPool/interfaces/interface.ilObjQuestionScoringAdjustable.php';
 
    7require_once 
'./Modules/TestQuestionPool/interfaces/interface.ilObjAnswerScoringAdjustable.php';
 
    8require_once 
'./Modules/TestQuestionPool/interfaces/interface.iQuestionCondition.php';
 
    9require_once 
'./Modules/TestQuestionPool/classes/class.ilUserQuestionResult.php';
 
   10require_once 
'Modules/TestQuestionPool/interfaces/interface.ilAssSpecificFeedbackOptionLabelProvider.php';
 
  116        $this->thumb_size = 150;
 
  117        $this->answers = array();
 
  119        $this->selectionLimit = 
null;
 
  120        $this->feedback_setting = 0;
 
  147        if (strlen($this->title) and ($this->author) and ($this->question) and (count($this->answers)) and ($this->
getMaximumPoints() > 0)) {
 
  165        $this->ensureNoInvalidObligation($this->
getId());
 
  176                if (strlen($answer->getImage())) {
 
  202            switch (strtoupper($path_info[
'extension'])) {
 
  235            $this->
setId($question_id);
 
  244            include_once(
"./Services/RTE/classes/class.ilRTE.php");
 
  250            $this->isSingleline = (
$data[
'allow_images']) ? 
false : 
true;
 
  251            $this->lastChange = 
$data[
'tstamp'];
 
  253            $this->feedback_setting = 
$data[
'feedback_setting'];
 
  268            "SELECT * FROM qpl_a_mc WHERE question_fi = %s ORDER BY aorder ASC",
 
  272        include_once 
"./Modules/TestQuestionPool/classes/class.assAnswerMultipleResponseImage.php";
 
  276                if (!@file_exists($imagefilename)) {
 
  277                    $data[
"imagefile"] = 
"";
 
  279                include_once(
"./Services/RTE/classes/class.ilRTE.php");
 
  285        parent::loadFromDb($question_id);
 
  293        if ($this->
id <= 0) {
 
  298        $this_id = $this->
getId();
 
  302        include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
 
  306        if ((
int) $testObjId > 0) {
 
  307            $clone->setObjId($testObjId);
 
  328        $clone->copyPageOfQuestion($this_id);
 
  330        $clone->copyXHTMLMediaObjectsOfQuestion($this_id);
 
  332        $clone->duplicateImages($this_id, $thisObjId);
 
  334        $clone->onDuplicate($thisObjId, $this_id, $clone->getObjId(), $clone->getId());
 
  344        if ($this->
id <= 0) {
 
  350        include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
 
  353        $source_questionpool_id = $this->
getObjId();
 
  354        $clone->setObjId($target_questionpool_id);
 
  364        $clone->copyImages(
$original_id, $source_questionpool_id);
 
  366        $clone->onCopy($source_questionpool_id, 
$original_id, $clone->getObjId(), $clone->getId());
 
  373        if ($this->
id <= 0) {
 
  378        include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
 
  381        $sourceParentId = $this->
getObjId();
 
  387        $clone->setObjId($targetParentId);
 
  389        if ($targetQuestionTitle) {
 
  390            $clone->setTitle($targetQuestionTitle);
 
  395        $clone->copyPageOfQuestion($sourceQuestionId);
 
  397        $clone->copyXHTMLMediaObjectsOfQuestion($sourceQuestionId);
 
  399        $clone->copyImages($sourceQuestionId, $sourceParentId);
 
  401        $clone->onCopy($sourceParentId, $sourceQuestionId, $clone->getObjId(), $clone->getId());
 
  445        $points_unchecked = 0.0,
 
  449        include_once 
"./Modules/TestQuestionPool/classes/class.assAnswerMultipleResponseImage.php";
 
  451        if (array_key_exists($order, $this->answers)) {
 
  454            $newchoices = array();
 
  455            for (
$i = 0; 
$i < $order; 
$i++) {
 
  456                array_push($newchoices, $this->answers[
$i]);
 
  458            array_push($newchoices, $answer);
 
  459            for (
$i = $order; 
$i < count($this->answers); 
$i++) {
 
  464            $this->answers = $newchoices;
 
  468            array_push($this->answers, $answer);
 
  480        return count($this->answers);
 
  496        if (count($this->answers) < 1) {
 
  499        if (
$index >= count($this->answers)) {
 
  503        return $this->answers[
$index];
 
  518        if (count($this->answers) < 1) {
 
  521        if (
$index >= count($this->answers)) {
 
  524        $answer = $this->answers[
$index];
 
  525        if (strlen($answer->getImage())) {
 
  528        unset($this->answers[
$index]);
 
  529        $this->answers = array_values($this->answers);
 
  530        for (
$i = 0; 
$i < count($this->answers); 
$i++) {
 
  531            if ($this->answers[
$i]->getOrder() > 
$index) {
 
  532                $this->answers[
$i]->setOrder(
$i);
 
  544        $this->answers = array();
 
  556        foreach ($this->answers as $key => $value) {
 
  557            if ($value->getPoints() > $value->getPointsUnchecked()) {
 
  558                $allpoints += $value->getPoints();
 
  560                $allpoints += $value->getPointsUnchecked();
 
  579        if ($returndetails) {
 
  580            throw new ilTestException(
'return details not implemented for ' . __METHOD__);
 
  586        $found_values = array();
 
  587        if (is_null(
$pass)) {
 
  592            if (strcmp(
$data[
"value1"], 
"") != 0) {
 
  593                array_push($found_values, 
$data[
"value1"]);
 
  608                $failureMsg = sprintf(
 
  609                    $this->lng->txt(
'ass_mc_sel_lim_exhausted_hint'),
 
  610                    $this->getSelectionLimit(),
 
  611                    $this->getAnswerCount()
 
  624        if (!count($solutionSubmit) && !empty(
$_POST[
'tst_force_form_diff_input'])) {
 
  645        if (is_null(
$pass)) {
 
  646            include_once 
"./Modules/Test/classes/class.ilObjTest.php";
 
  652        $this->
getProcessLocker()->executeUserSolutionUpdateLockOperation(
function () use (&$entered_values, $active_id, 
$pass, $authorized) {
 
  657            foreach ($solutionSubmit as $value) {
 
  658                if (strlen($value)) {
 
  672        if ($entered_values) {
 
  673            include_once(
"./Modules/Test/classes/class.ilObjAssessmentFolder.php");
 
  678            include_once(
"./Modules/Test/classes/class.ilObjAssessmentFolder.php");
 
  697                             ) . 
" WHERE question_fi = %s",
 
  699                array( $this->
getId() )
 
  703                $oldthumbsize = 
$data[
'thumb_size'];
 
  707        if (!$this->isSingleline) {
 
  715                'shuffle' => array(
'text', $this->
getShuffle()),
 
  716                'allow_images' => array(
'text', $this->isSingleline ? 0 : 1),
 
  722                'question_fi' => array(
'integer', $this->
getId())
 
  733            "DELETE FROM qpl_a_mc WHERE question_fi = %s",
 
  735            array( $this->
getId() )
 
  738        foreach ($this->answers as $key => $value) {
 
  739            $answer_obj = $this->answers[$key];
 
  740            $next_id = 
$ilDB->nextId(
'qpl_a_mc');
 
  742                "INSERT INTO qpl_a_mc (answer_id, question_fi, answertext, points, points_unchecked, aorder, imagefile, tstamp) VALUES (%s, %s, %s, %s, %s, %s, %s, %s)",
 
  743                array( 
'integer', 
'integer', 
'text', 
'float', 
'float', 
'integer', 
'text', 
'integer' ),
 
  748                                    $answer_obj->getPoints(),
 
  749                                    $answer_obj->getPointsUnchecked(),
 
  750                                    $answer_obj->getOrder(),
 
  751                                    $answer_obj->getImage(),
 
  763            parent::syncWithOriginal();
 
  774        return "assMultipleChoice";
 
  804    public function setImageFile($image_filename, $image_tempfilename = 
"")
 
  807        if (!empty($image_tempfilename)) {
 
  808            $image_filename = str_replace(
" ", 
"_", $image_filename);
 
  810            if (!file_exists($imagepath)) {
 
  816                include_once 
"./Services/MediaObjects/classes/class.ilObjMediaObject.php";
 
  818                if (!preg_match(
"/^image/", $mimetype)) {
 
  819                    unlink($imagepath . $image_filename);
 
  840        @unlink($imagepath . $image_filename);
 
  841        $thumbpath = $imagepath . $this->
getThumbPrefix() . $image_filename;
 
  845    public function duplicateImages($question_id, $objectId = 
null)
 
  852        $imagepath_original = str_replace(
"/$this->id/images", 
"/$question_id/images", $imagepath);
 
  854        if ((
int) $objectId > 0) {
 
  855            $imagepath_original = str_replace(
"/$this->obj_id/", 
"/$objectId/", $imagepath_original);
 
  858        foreach ($this->answers as $answer) {
 
  861                if (!file_exists($imagepath)) {
 
  865                if (file_exists($imagepath_original . 
$filename)) {
 
  868                            "Could not clone source image '%s' to '%s' (srcQuestionId: %s|tgtQuestionId: %s|srcParentObjId: %s|tgtParentObjId: %s)",
 
  879                if (file_exists($imagepath_original . $this->
getThumbPrefix() . $filename)) {
 
  882                            "Could not clone thumbnail source image '%s' to '%s' (srcQuestionId: %s|tgtQuestionId: %s|srcParentObjId: %s|tgtParentObjId: %s)",
 
  896    public function copyImages($question_id, $source_questionpool)
 
  901        $imagepath_original = str_replace(
"/$this->id/images", 
"/$question_id/images", $imagepath);
 
  902        $imagepath_original = str_replace(
"/$this->obj_id/", 
"/$source_questionpool/", $imagepath_original);
 
  903        foreach ($this->answers as $answer) {
 
  906                if (!file_exists($imagepath)) {
 
  910                    $ilLog->write(
"image could not be duplicated!!!!", 
$ilLog->ERROR);
 
  911                    $ilLog->write(
"object: " . print_r($this, 
true), 
$ilLog->ERROR);
 
  913                if (@file_exists($imagepath_original . $this->
getThumbPrefix() . $filename)) {
 
  915                        $ilLog->write(
"image thumbnail could not be duplicated!!!!", 
$ilLog->ERROR);
 
  916                        $ilLog->write(
"object: " . print_r($this, 
true), 
$ilLog->ERROR);
 
  934        $originalObjId = parent::lookupParentObjId($this->
getOriginalId());
 
  935        $imagepath_original = $this->
getImagePath($question_id, $originalObjId);
 
  938        foreach ($this->answers as $answer) {
 
  941                if (@file_exists($imagepath . 
$filename)) {
 
  942                    if (!file_exists($imagepath)) {
 
  945                    if (!file_exists($imagepath_original)) {
 
  949                        $ilLog->write(
"image could not be duplicated!!!!", 
$ilLog->ERROR);
 
  950                        $ilLog->write(
"object: " . print_r($this, 
true), 
$ilLog->ERROR);
 
  953                if (@file_exists($imagepath . $this->
getThumbPrefix() . $filename)) {
 
  955                        $ilLog->write(
"image thumbnail could not be duplicated!!!!", 
$ilLog->ERROR);
 
  956                        $ilLog->write(
"object: " . print_r($this, 
true), 
$ilLog->ERROR);
 
  968        $text = parent::getRTETextWithMediaObjects();
 
  969        foreach ($this->answers as 
$index => $answer) {
 
  970            $text .= $this->feedbackOBJ->getSpecificAnswerFeedbackContent($this->
getId(), 0, 
$index);
 
  971            $answer_obj = $this->answers[
$index];
 
  972            $text .= $answer_obj->getAnswertext();
 
  990        parent::setExportDetailsXLS($worksheet, $startrow, $active_id, 
$pass);
 
  996            $worksheet->setCell($startrow + 
$i, 0, $answer->getAnswertext());
 
  997            $worksheet->setBold($worksheet->getColumnCoord(0) . ($startrow + 
$i));
 
  999            foreach ($solution as $solutionvalue) {
 
 1000                if (
$id == $solutionvalue[
"value1"]) {
 
 1005                $worksheet->setCell($startrow + 
$i, 1, 1);
 
 1007                $worksheet->setCell($startrow + 
$i, 1, 0);
 
 1012        return $startrow + 
$i + 1;
 
 1022        $this->thumb_size = $a_size;
 
 1041        require_once 
'./Services/RTE/classes/class.ilRTE.php';
 
 1051            'onenotcorrect' => $this->
formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(), 
false)),
 
 1052            'allcorrect' => $this->formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(), 
true))
 
 1057        foreach ($this->
getAnswers() as $key => $answer_obj) {
 
 1058            if ((
string) $answer_obj->getImage()) {
 
 1062                "answertext" => (
string) $this->
formatSAQuestion($answer_obj->getAnswertext()),
 
 1063                "points_checked" => (
float) $answer_obj->getPointsChecked(),
 
 1064                "points_unchecked" => (
float) $answer_obj->getPointsUnchecked(),
 
 1065                "order" => (
int) $answer_obj->getOrder(),
 
 1066                "image" => (
string) $answer_obj->getImage(),
 
 1067                "feedback" => $this->formatSAQuestion(
 
 1068                    $this->feedbackOBJ->getSpecificAnswerFeedbackExportPresentation($this->getId(), 0, $key)
 
 1087        $answer = $this->answers[
$index];
 
 1088        if (is_object($answer)) {
 
 1090            $answer->setImage(
'');
 
 1099        $multilineAnswerSetting = 
$ilUser->getPref(
"tst_multiline_answers");
 
 1100        if ($multilineAnswerSetting != 1) {
 
 1101            $multilineAnswerSetting = 0;
 
 1103        return $multilineAnswerSetting;
 
 1110        $ilUser->writePref(
"tst_multiline_answers", $a_setting);
 
 1124        $this->feedback_setting = $a_feedback_setting;
 
 1138        if ($this->feedback_setting) {
 
 1147        return 'feedback_correct_sc_mc';
 
 1165        return $numExistingSolutionRecords > 0;
 
 1186                        SELECT SUM(points) points_for_checked_answers 
 1188                        WHERE question_fi = %s AND points > 0 
 1195        return $row[
'points_for_checked_answers'] > 0;
 
 1206    public function ensureNoInvalidObligation($questionId)
 
 1213                        SELECT          SUM(qpl_a_mc.points) points_for_checked_answers, 
 1216                        FROM            tst_test_question 
 1219                        ON                      qpl_a_mc.question_fi = tst_test_question.question_fi 
 1221                        WHERE           tst_test_question.question_fi = %s 
 1222                        AND                     tst_test_question.obligatory = 1 
 1224                        GROUP BY        test_question_id 
 1229        $updateTestQuestionIds = array();
 
 1231        while ($row = 
$ilDB->fetchAssoc(
$res)) {
 
 1232            if ($row[
'points_for_checked_answers'] <= 0) {
 
 1233                $updateTestQuestionIds[] = $row[
'test_question_id'];
 
 1237        if (count($updateTestQuestionIds)) {
 
 1238            $test_question_id__IN__updateTestQuestionIds = 
$ilDB->in(
 
 1240                $updateTestQuestionIds,
 
 1246                                UPDATE tst_test_question 
 1248                                WHERE $test_question_id__IN__updateTestQuestionIds 
 1260        $solutionSubmit = array();
 
 1261        foreach (
$_POST as $key => $value) {
 
 1262            if (preg_match(
"/^multiple_choice_result_(\d+)/", $key)) {
 
 1263                if (strlen($value)) {
 
 1264                    $solutionSubmit[] = $value;
 
 1268        return $solutionSubmit;
 
 1279        foreach ($this->answers as $key => $answer) {
 
 1280            if (in_array($key, $found_values)) {
 
 1281                $points += $answer->getPoints();
 
 1283                $points += $answer->getPointsUnchecked();
 
 1287            include_once 
"./Modules/Test/classes/class.ilObjTest.php";
 
 1289            if (($mc_scoring == 0) && (count($found_values) == 0)) {
 
 1306        require_once 
"./Modules/TestQuestionPool/classes/class.ilOperatorsExpressionMapping.php";
 
 1339        $maxStep = $this->lookupMaxStep($active_id, 
$pass);
 
 1341        if ($maxStep !== 
null) {
 
 1343                "SELECT value1+1 as value1 FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s AND step = %s",
 
 1344                array(
"integer", 
"integer", 
"integer",
"integer"),
 
 1345                array($active_id, 
$pass, $this->
getId(), $maxStep)
 
 1349                "SELECT value1+1 as value1 FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s",
 
 1350                array(
"integer", 
"integer", 
"integer"),
 
 1356            $result->addKeyValue($row[
"value1"], $row[
"value1"]);
 
 1386        $config = parent::buildTestPresentationConfig();
 
 1387        $config->setUseUnchangedAnswerLabel($this->lng->txt(
'tst_mc_label_none_above'));
 
ASS_AnswerBinaryStateImage is a class for answers with a binary state indicator (checked/unchecked,...
An exception for terminatinating execution or to throw for unit testing.
Class for multiple choice tests.
buildTestPresentationConfig()
build basic test question configuration instance
syncImages()
Sync images of a MC question on synchronisation with the original question.
toJSON()
Returns a JSON representation of the question.
getSpecificFeedbackSetting()
Gets the current feedback settings in effect for the question.
setExportDetailsXLS($worksheet, $startrow, $active_id, $pass)
{Creates an Excel worksheet for the detailed cumulated results of this question.object}
copyImages($question_id, $source_questionpool)
saveToDb($original_id="")
Saves a assMultipleChoice object to a database.
loadFromDb($question_id)
Loads a assMultipleChoice object from a database.
duplicate($for_test=true, $title="", $author="", $owner="", $testObjId=null)
Duplicates an assMultipleChoiceQuestion.
getMaximumPoints()
Returns the maximum points, a learner can reach answering the question.
getAnswerCount()
Returns the number of answers.
getAnswerTableName()
Returns the name of the answer table in the database.
isForcedEmptySolution($solutionSubmit)
getAdditionalTableName()
Returns the name of the additional question data table in the database.
addAnswer( $answertext="", $points=0.0, $points_unchecked=0.0, $order=0, $answerimage="")
Adds a possible answer for a multiple choice question.
getSpecificFeedbackAllCorrectOptionLabel()
setSpecificFeedbackSetting($a_feedback_setting)
Sets the feedback settings in effect for the question.
removeAnswerImage($index)
getAvailableAnswerOptions($index=null)
If index is null, the function returns an array with all anwser options Else it returns the specific ...
setSelectionLimit($selectionLimit)
calculateReachedPointsForSolution($found_values, $active_id=0)
getOutputType()
Gets the multiple choice output type which is either OUTPUT_ORDER (=0) or OUTPUT_RANDOM (=1).
setLastChange($lastChange)
copyObject($target_questionpool_id, $title="")
Copies an assMultipleChoice object.
createNewOriginalFromThisDuplicate($targetParentId, $targetQuestionTitle="")
getMultilineAnswerSetting()
lmMigrateQuestionTypeSpecificContent(ilAssSelfAssessmentMigrator $migrator)
setMultilineAnswerSetting($a_setting=0)
isComplete()
Returns true, if a multiple choice question is complete for use.
flushAnswers()
Deletes all answers.
deleteAnswer($index=0)
Deletes an answer with a given index.
getQuestionType()
Returns the question type of the question.
deleteImage($image_filename)
Deletes an image file.
setImageFile($image_filename, $image_tempfilename="")
Sets the image file and uploads the image to the object's image directory.
__construct( $title="", $comment="", $author="", $owner=-1, $question="", $output_type=OUTPUT_ORDER)
assMultipleChoice constructor
setIsSingleline($isSingleline)
setOutputType($output_type=OUTPUT_ORDER)
Sets the output type of the assMultipleChoice object.
calculateReachedPoints($active_id, $pass=null, $authorizedSolution=true, $returndetails=false)
Returns the points, a learner has reached answering the question.
isAnswered($active_id, $pass=null)
returns boolean wether the question is answered during test pass or not
getAnswer($index=0)
Returns an answer with a given index.
generateThumbForFile($path, $file)
getExpressionTypes()
Get all available expression types for a specific question.
getRTETextWithMediaObjects()
Collects all text in the question which could contain media objects which were created with the Rich ...
rebuildThumbnails()
Rebuild the thumbnail images with a new thumbnail size.
& getAnswers()
Returns a reference to the answers array.
getOperators($expression)
Get all available operations for a specific question.
Abstract basic class which is to be extended by the concrete assessment question type classes.
getCurrentSolutionResultSet($active_id, $pass, $authorized=true)
Get a restulset for the current user solution for a this question by active_id and pass.
getSolutionValues($active_id, $pass=null, $authorized=true)
Loads solutions of a given user from the database an returns it.
static _getOriginalId($question_id)
Returns the original id of a question.
formatSAQuestion($a_q)
Format self assessment question.
setShuffle($shuffle=true)
Sets the shuffle flag.
setId($id=-1)
Sets the id of the assQuestion object.
setOriginalId($original_id)
setObjId($obj_id=0)
Set the object id of the container object.
static isObligationPossible($questionId)
returns boolean wether it is possible to set this question type as obligatory or not considering the ...
getSolutionMaxPass($active_id)
Returns the maximum pass a users question solution.
saveQuestionDataToDb($original_id="")
getHtmlQuestionContentPurifier()
getId()
Gets the id of the assQuestion object.
saveCurrentSolution($active_id, $pass, $value1, $value2, $authorized=true, $tstamp=null)
getObjId()
Get the object id of the container object.
setTitle($title="")
Sets the title string of the assQuestion object.
setOwner($owner="")
Sets the creator/owner ID of the assQuestion object.
setEstimatedWorkingTime($hour=0, $min=0, $sec=0)
Sets the estimated working time of a question from given hour, minute and second.
static logAction($logtext="", $active_id="", $question_id="")
Logs an action into the Test&Assessment log.
getImagePath($question_id=null, $object_id=null)
Returns the image path for web accessable images of a question.
removeCurrentSolution($active_id, $pass, $authorized=true)
static getNumExistingSolutionRecords($activeId, $pass, $questionId)
returns the number of existing solution records for the given test active / pass and given question i...
setAuthor($author="")
Sets the authors name of the assQuestion object.
saveWorkingData($active_id, $pass=null, $authorized=true)
Saves the learners input of the question to the database.
getShuffle()
Gets the shuffle flag.
setLifecycle(ilAssQuestionLifecycle $lifecycle)
getTitle()
Gets the title string of the assQuestion object.
setPoints($a_points)
Sets the maximum available points for the question.
setComment($comment="")
Sets the comment string of the assQuestion object.
setNrOfTries($a_nr_of_tries)
getQuestion()
Gets the question string of the question object.
setAdditionalContentEditingMode($additinalContentEditingMode)
setter for additional content editing mode for this question
setQuestion($question="")
Sets the question string of the question object.
getImagePathWeb()
Returns the web image path for web accessable images of a question.
static getDraftInstance()
static getInstance($identifier)
static _getLogLanguage()
retrieve the log language for assessment logging
static _enabledAssessmentLogging()
check wether assessment logging is enabled or not
static _getPass($active_id)
Retrieves the actual pass of a given user for a given test.
static _getMCScoring($active_id)
Gets the scoring type for multiple choice questions.
static getOperatorsByExpression($expression)
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...
Base Exception for all Exceptions relating to Modules/Test.
Class ilUserQuestionResult.
static moveUploadedFile($a_file, $a_name, $a_target, $a_raise_errors=true, $a_mode="move_uploaded")
move uploaded file
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
static convertImage( $a_from, $a_to, $a_target_format="", $a_geometry="", $a_background_color="")
convert image
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
static makeDirParents($a_dir)
Create a new directory and all parent directories.
Class iQuestionCondition.
const PercentageResultExpression
getUserQuestionResult($active_id, $pass)
Get the user solution for a question by active_id and the test pass.
const EmptyAnswerExpression
const ExclusiveResultExpression
const NumberOfResultExpression
migrateToLmContent($content)
Interface ilObjAnswerScoringAdjustable.
saveAnswerSpecificDataToDb()
Saves the answer specific records into a question types answer table.
Interface ilObjQuestionScoringAdjustable.
saveAdditionalQuestionDataToDb()
Saves a record to the question types additional data table.
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc
foreach($_POST as $key=> $value) $res