Public Member Functions | Data Fields

assTextSubset Class Reference
[Modules/TestQuestionPool]

Class for TextSubset questions. More...

Inheritance diagram for assTextSubset:
Collaboration diagram for assTextSubset:

Public Member Functions

 assTextSubset ($title="", $comment="", $author="", $owner=-1, $question="")
 assTextSubset constructor
 isComplete ()
 Returns true, if a TextSubset question is complete for use.
 saveToDb ($original_id="")
 Saves a assTextSubset object to a database.
 loadFromDb ($question_id)
 Loads a assTextSubset object from a database.
 addAnswer ($answertext, $points, $answerorder)
 Adds an answer to the question.
 duplicate ($for_test=true, $title="", $author="", $owner="")
 Duplicates an assTextSubsetQuestion.
 copyObject ($target_questionpool, $title="")
 Copies an assTextSubset object.
 getAnswerCount ()
 Returns the number of answers.
 getAnswer ($index=0)
 Returns an answer.
 deleteAnswer ($index=0)
 Deletes an answer.
 flushAnswers ()
 Deletes all answers.
 getMaximumPoints ()
 Returns the maximum points, a learner can reach answering the question.
getAvailableAnswers ()
 Returns the available answers for the question.
 isAnswerCorrect ($answers, $answer)
 Determines wheather a given answer is correct or not.
 getTextRating ()
 Returns the rating option for text comparisons.
 setTextRating ($a_text_rating)
 Sets the rating option for text comparisons.
 calculateReachedPoints ($active_id, $pass=NULL)
 Returns the points, a learner has reached answering the question.
 setCorrectAnswers ($a_correct_answers)
 Sets the number of correct answers needed to solve the question.
 getCorrectAnswers ()
 Returns the number of correct answers needed to solve the question.
 saveWorkingData ($active_id, $pass=NULL)
 Saves the learners input of the question to the database.
 getQuestionType ()
 Returns the question type of the question.
joinAnswers ()
 Returns the answers of the question as a comma separated string.
 getMaxTextboxWidth ()
 Returns the maximum width needed for the answer textboxes.
 getAdditionalTableName ()
 Returns the name of the additional question data table in the database.
 getAnswerTableName ()
 Returns the name of the answer table in the database.
 getRTETextWithMediaObjects ()
 Collects all text in the question which could contain media objects which were created with the Rich Text Editor.

Data Fields

 $answers
 $correctanswers
 $text_rating

Detailed Description

Class for TextSubset questions.

assTextSubset is a class for TextSubset questions. To solve a TextSubset question, a learner has to enter a TextSubsetal value in a defined range

Author:
Helmut Schottmüller <helmut.schottmueller@mac.com>
Nina Gharib <nina@wgserve.de>
Version:
Id:
class.assTextSubset.php 19621 2009-04-14 11:49:51Z hschottm

Definition at line 37 of file class.assTextSubset.php.


Member Function Documentation

assTextSubset::addAnswer ( answertext,
points,
answerorder 
)

Adds an answer to the question.

Adds an answer to the question

public

Definition at line 295 of file class.assTextSubset.php.

References assQuestion::$points.

        {
                include_once "./Modules/TestQuestionPool/classes/class.assAnswerSimple.php";
                array_push($this->answers, new ASS_AnswerSimple($answertext, $points, $answerorder));
        }

assTextSubset::assTextSubset ( title = "",
comment = "",
author = "",
owner = -1,
question = "" 
)

assTextSubset constructor

The constructor takes possible arguments an creates an instance of the assTextSubset object.

Parameters:
string $title A title string to describe the question
string $comment A comment string to describe the question
string $author A string containing the name of the questions author
integer $owner A TextSubsetal ID to identify the owner/creator
string $question The question string of the TextSubset question public
See also:
assQuestion:assQuestion()

Definition at line 79 of file class.assTextSubset.php.

References assQuestion::$author, assQuestion::$comment, assQuestion::$owner, assQuestion::$question, assQuestion::$title, and assQuestion::assQuestion().

        {
                $this->assQuestion($title, $comment, $author, $owner, $question);
                $this->answers = array();
                $this->correctanswers = 0;
        }

Here is the call graph for this function:

assTextSubset::calculateReachedPoints ( active_id,
pass = NULL 
)

Returns the points, a learner has reached answering the question.

Returns the points, a learner has reached answering the question The points are calculated from the given answers including checks for all special scoring options in the test container.

Parameters:
integer $user_id The database ID of the learner
integer $test_id The database Id of the test containing the question public

Definition at line 609 of file class.assTextSubset.php.

References $data, assQuestion::$points, getAvailableAnswers(), assQuestion::getId(), assQuestion::getSolutionMaxPass(), and isAnswerCorrect().

        {
                global $ilDB;
                
                $available_answers =& $this->getAvailableAnswers();
                $found_counter = 0;
                
                if (is_null($pass))
                {
                        $pass = $this->getSolutionMaxPass($active_id);
                }
                $query = sprintf("SELECT * FROM tst_solutions WHERE active_fi = %s AND question_fi = %s AND pass = %s",
                        $ilDB->quote($active_id . ""),
                        $ilDB->quote($this->getId() . ""),
                        $ilDB->quote($pass . "")
                );
                $result = $ilDB->query($query);
                $points = 0;
                while ($data = $result->fetchRow(DB_FETCHMODE_ASSOC))
                {
                        $enteredtext = $data["value1"];
                        $index = $this->isAnswerCorrect($available_answers, $enteredtext);
                        if ($index !== FALSE)
                        {
                                unset($available_answers[$index]);
                                $points += $this->answers[$index]->getPoints();
                        }
                }

                $points = parent::calculateReachedPoints($active_id, $pass = NULL, $points);
                return $points;
        }

Here is the call graph for this function:

assTextSubset::copyObject ( target_questionpool,
title = "" 
)

Copies an assTextSubset object.

Copies an assTextSubset object

public

Definition at line 361 of file class.assTextSubset.php.

References assQuestion::$title, assQuestion::_getOriginalId(), and assQuestion::getObjId().

        {
                if ($this->id <= 0)
                {
                        // The question has not been saved. It cannot be duplicated
                        return;
                }
                // duplicate the question in database
                $clone = $this;
                include_once ("./Modules/TestQuestionPool/classes/class.assQuestion.php");
                $original_id = assQuestion::_getOriginalId($this->id);
                $clone->id = -1;
                $source_questionpool = $this->getObjId();
                $clone->setObjId($target_questionpool);
                if ($title)
                {
                        $clone->setTitle($title);
                }
                $clone->saveToDb();

                // copy question page content
                $clone->copyPageOfQuestion($original_id);
                // copy XHTML media objects
                $clone->copyXHTMLMediaObjectsOfQuestion($original_id);
                // duplicate the generic feedback
                $clone->duplicateFeedbackGeneric($original_id);

                return $clone->id;
        }

Here is the call graph for this function:

assTextSubset::deleteAnswer ( index = 0  ) 

Deletes an answer.

Deletes an answer with a given index. The index of the first answer is 0, the index of the second answer is 1 and so on.

Parameters:
integer $index A nonnegative index of the n-th answer public
See also:
$answers

Definition at line 435 of file class.assTextSubset.php.

        {
                if ($index < 0) return;
                if (count($this->answers) < 1) return;
                if ($index >= count($this->answers)) return;
                unset($this->answers[$index]);
                $this->answers = array_values($this->answers);
                for ($i = 0; $i < count($this->answers); $i++)
                {
                        if ($this->answers[$i]->getOrder() > $index)
                        {
                                $this->answers[$i]->setOrder($i);
                        }
                }
        }

assTextSubset::duplicate ( for_test = true,
title = "",
author = "",
owner = "" 
)

Duplicates an assTextSubsetQuestion.

Duplicates an assTextSubsetQuestion

public

Definition at line 308 of file class.assTextSubset.php.

References assQuestion::$author, assQuestion::$owner, assQuestion::$title, assQuestion::_getOriginalId(), and assQuestion::getId().

        {
                if ($this->id <= 0)
                {
                        // The question has not been saved. It cannot be duplicated
                        return;
                }
                // duplicate the question in database
                $this_id = $this->getId();
                $clone = $this;
                include_once ("./Modules/TestQuestionPool/classes/class.assQuestion.php");
                $original_id = assQuestion::_getOriginalId($this->id);
                $clone->id = -1;
                if ($title)
                {
                        $clone->setTitle($title);
                }

                if ($author)
                {
                        $clone->setAuthor($author);
                }
                if ($owner)
                {
                        $clone->setOwner($owner);
                }

                if ($for_test)
                {
                        $clone->saveToDb($original_id);
                }
                else
                {
                        $clone->saveToDb();
                }

                // copy question page content
                $clone->copyPageOfQuestion($this_id);
                // copy XHTML media objects
                $clone->copyXHTMLMediaObjectsOfQuestion($this_id);
                // duplicate the generic feedback
                $clone->duplicateFeedbackGeneric($this_id);

                return $clone->id;
        }

Here is the call graph for this function:

assTextSubset::flushAnswers (  ) 

Deletes all answers.

Deletes all answers

public

See also:
$answers

Definition at line 459 of file class.assTextSubset.php.

        {
                $this->answers = array();
        }

assTextSubset::getAdditionalTableName (  ) 

Returns the name of the additional question data table in the database.

Returns the name of the additional question data table in the database

Returns:
string The additional table name public

Reimplemented from assQuestion.

Definition at line 795 of file class.assTextSubset.php.

        {
                return "qpl_question_textsubset";
        }

assTextSubset::getAnswer ( index = 0  ) 

Returns an answer.

Returns an answer with a given index. The index of the first answer is 0, the index of the second answer is 1 and so on.

Parameters:
integer $index A nonnegative index of the n-th answer
Returns:
object ASS_AnswerSimple-Object containing the answer public
See also:
$answers

Definition at line 416 of file class.assTextSubset.php.

        {
                if ($index < 0) return NULL;
                if (count($this->answers) < 1) return NULL;
                if ($index >= count($this->answers)) return NULL;

                return $this->answers[$index];
        }

assTextSubset::getAnswerCount (  ) 

Returns the number of answers.

Returns the number of answers

Returns:
integer The number of answers of the TextSubset question public
See also:
$ranges

Definition at line 400 of file class.assTextSubset.php.

        {
                return count($this->answers);
        }

assTextSubset::getAnswerTableName (  ) 

Returns the name of the answer table in the database.

Returns the name of the answer table in the database

Returns:
string The answer table name public

Reimplemented from assQuestion.

Definition at line 808 of file class.assTextSubset.php.

        {
                return "qpl_answer_textsubset";
        }

& assTextSubset::getAvailableAnswers (  ) 

Returns the available answers for the question.

Returns the available answers for the question

private

See also:
$answers

Definition at line 499 of file class.assTextSubset.php.

Referenced by calculateReachedPoints().

        {
                $available_answers = array();
                foreach ($this->answers as $answer)
                {
                        array_push($available_answers, $answer->getAnswertext());
                }
                return $available_answers;
        }

Here is the caller graph for this function:

assTextSubset::getCorrectAnswers (  ) 

Returns the number of correct answers needed to solve the question.

Returns the number of correct answers needed to solve the question

Returns:
integer The number of correct answers public

Definition at line 663 of file class.assTextSubset.php.

Referenced by getMaximumPoints(), and saveToDb().

        {
                return $this->correctanswers;
        }

Here is the caller graph for this function:

assTextSubset::getMaximumPoints (  ) 

Returns the maximum points, a learner can reach answering the question.

Returns the maximum points, a learner can reach answering the question

public

See also:
$points

Reimplemented from assQuestion.

Definition at line 472 of file class.assTextSubset.php.

References assQuestion::$points, and getCorrectAnswers().

Referenced by isComplete(), and saveToDb().

        {
                $points = array();
                foreach ($this->answers as $answer)
                {
                        if ($answer->getPoints() > 0)
                        {
                                array_push($points, $answer->getPoints());
                        }
                }
                rsort($points, SORT_NUMERIC);
                $maxpoints = 0;
                for ($counter = 0; $counter < $this->getCorrectAnswers(); $counter++)
                {
                        $maxpoints += $points[$counter];
                }
                return $maxpoints;
        }

Here is the call graph for this function:

Here is the caller graph for this function:

assTextSubset::getMaxTextboxWidth (  ) 

Returns the maximum width needed for the answer textboxes.

Returns the maximum width needed for the answer textboxes

Returns:
integer Maximum textbox width public

Definition at line 776 of file class.assTextSubset.php.

        {
                $maxwidth = 0;
                foreach ($this->answers as $answer)
                {
                        $len = strlen($answer->getAnswertext());
                        if ($len > $maxwidth) $maxwidth = $len;
                }
                return $maxwidth + 3;
        }

assTextSubset::getQuestionType (  ) 

Returns the question type of the question.

Returns the question type of the question

Returns:
integer The question type of the question public

Reimplemented from assQuestion.

Definition at line 741 of file class.assTextSubset.php.

        {
                return "assTextSubset";
        }

assTextSubset::getRTETextWithMediaObjects (  ) 

Collects all text in the question which could contain media objects which were created with the Rich Text Editor.

Reimplemented from assQuestion.

Definition at line 817 of file class.assTextSubset.php.

assTextSubset::getTextRating (  ) 

Returns the rating option for text comparisons.

Returns the rating option for text comparisons

Returns:
string The rating option for text comparisons
See also:
$text_rating Public

Definition at line 565 of file class.assTextSubset.php.

Referenced by isAnswerCorrect(), and saveToDb().

        {
                return $this->text_rating;
        }

Here is the caller graph for this function:

assTextSubset::isAnswerCorrect ( answers,
answer 
)

Determines wheather a given answer is correct or not.

Returns the index of the found answer, if the given answer is in the set of correct answers and matchess the matching options, otherwise FALSE is returned

Parameters:
array $answers An array containing the correct answers
string $answer The text of the given answer
Returns:
mixed The index of the correct answer, FALSE otherwise public

Definition at line 521 of file class.assTextSubset.php.

References $answers, getTextRating(), and ilStr::strToLower().

Referenced by calculateReachedPoints().

        {
                include_once "./Services/Utilities/classes/class.ilStr.php";
                $result = 0;
                $textrating = $this->getTextRating();
                foreach ($answers as $key => $value)
                {
                        switch ($textrating)
                        {
                                case TEXTGAP_RATING_CASEINSENSITIVE:
                                        if (strcmp(ilStr::strToLower($value), ilStr::strToLower($answer)) == 0) return $key;
                                        break;
                                case TEXTGAP_RATING_CASESENSITIVE:
                                        if (strcmp($value, $answer) == 0) return $key;
                                        break;
                                case TEXTGAP_RATING_LEVENSHTEIN1:
                                        if (levenshtein($value, $answer) <= 1) return $key;
                                        break;
                                case TEXTGAP_RATING_LEVENSHTEIN2:
                                        if (levenshtein($value, $answer) <= 2) return $key;
                                        break;
                                case TEXTGAP_RATING_LEVENSHTEIN3:
                                        if (levenshtein($value, $answer) <= 3) return $key;
                                        break;
                                case TEXTGAP_RATING_LEVENSHTEIN4:
                                        if (levenshtein($value, $answer) <= 4) return $key;
                                        break;
                                case TEXTGAP_RATING_LEVENSHTEIN5:
                                        if (levenshtein($value, $answer) <= 5) return $key;
                                        break;
                        }
                }
                return FALSE;
        }

Here is the call graph for this function:

Here is the caller graph for this function:

assTextSubset::isComplete (  ) 

Returns true, if a TextSubset question is complete for use.

Returns true, if a TextSubset question is complete for use

Returns:
boolean True, if the TextSubset question is complete for use, otherwise false public

Reimplemented from assQuestion.

Definition at line 100 of file class.assTextSubset.php.

References getMaximumPoints().

Referenced by saveToDb().

        {
                if (($this->title) and ($this->author) and ($this->question) and (count($this->answers) >= $this->correctanswers) and ($this->getMaximumPoints() > 0))
                {
                        return true;
                }
                        else
                {
                        return false;
                }
        }

Here is the call graph for this function:

Here is the caller graph for this function:

& assTextSubset::joinAnswers (  ) 

Returns the answers of the question as a comma separated string.

Returns the answers of the question as a comma separated string

Returns:
string The answer string public

Definition at line 754 of file class.assTextSubset.php.

        {
                $join = array();
                foreach ($this->answers as $answer)
                {
                        if (!is_array($join[$answer->getPoints() . ""]))
                        {
                                $join[$answer->getPoints() . ""] = array();
                        }
                        array_push($join[$answer->getPoints() . ""], $answer->getAnswertext());
                }
                return $join;
        }

assTextSubset::loadFromDb ( question_id  ) 

Loads a assTextSubset object from a database.

Loads a assTextSubset object from a database (experimental)

Parameters:
object $db A pear DB object
integer $question_id A unique key which defines the multiple choice test in the database public

Reimplemented from assQuestion.

Definition at line 242 of file class.assTextSubset.php.

References $data, ilRTE::_replaceMediaObjectImageSrc(), and assQuestion::setEstimatedWorkingTime().

        {
                global $ilDB;

    $query = sprintf("SELECT qpl_questions.*, qpl_question_textsubset.* FROM qpl_questions, qpl_question_textsubset WHERE question_id = %s AND qpl_questions.question_id = qpl_question_textsubset.question_fi",
                        $ilDB->quote($question_id)
                );
                $result = $ilDB->query($query);
                if (strcmp(strtolower(get_class($result)), db_result) == 0)
                {
                        if ($result->numRows() == 1)
                        {
                                $data = $result->fetchRow(DB_FETCHMODE_OBJECT);
                                $this->id = $question_id;
                                $this->title = $data->title;
                                $this->comment = $data->comment;
                                $this->solution_hint = $data->solution_hint;
                                $this->original_id = $data->original_id;
                                $this->obj_id = $data->obj_fi;
                                $this->author = $data->author;
                                $this->owner = $data->owner;
                                $this->points = $data->points;
                                include_once("./Services/RTE/classes/class.ilRTE.php");
                                $this->question = ilRTE::_replaceMediaObjectImageSrc($data->question_text, 1);
                                $this->correctanswers = $data->correctanswers;
                                $this->text_rating = $data->textgap_rating;
                                $this->setEstimatedWorkingTime(substr($data->working_time, 0, 2), substr($data->working_time, 3, 2), substr($data->working_time, 6, 2));
                        }

                        $query = sprintf("SELECT * FROM qpl_answer_textsubset WHERE question_fi = %s ORDER BY aorder ASC",
                                $ilDB->quote($question_id)
                        );
                        $result = $ilDB->query($query);

                        include_once "./Modules/TestQuestionPool/classes/class.assAnswerSimple.php";
                        if (strcmp(strtolower(get_class($result)), db_result) == 0)
                        {
                                while ($data = $result->fetchRow(DB_FETCHMODE_ASSOC))
                                {
                                        array_push($this->answers, new ASS_AnswerSimple($data["answertext"], $data["points"], $data["aorder"]));
                                }
                        }
                }
                parent::loadFromDb($question_id);
        }

Here is the call graph for this function:

assTextSubset::saveToDb ( original_id = ""  ) 

Saves a assTextSubset object to a database.

Saves a assTextSubset object to a database (experimental)

Parameters:
object $db A pear DB object public

Reimplemented from assQuestion.

Definition at line 120 of file class.assTextSubset.php.

References ilRTE::_replaceMediaObjectImageSrc(), assQuestion::createPageObject(), getCorrectAnswers(), assQuestion::getEstimatedWorkingTime(), getMaximumPoints(), assQuestion::getQuestionTypeID(), assQuestion::getTestId(), getTextRating(), assQuestion::insertIntoTest(), and isComplete().

        {
                global $ilDB;

                $complete = 0;
                if ($this->isComplete())
                {
                        $complete = 1;
                }
                $estw_time = $this->getEstimatedWorkingTime();
                $estw_time = sprintf("%02d:%02d:%02d", $estw_time['h'], $estw_time['m'], $estw_time['s']);

                if ($original_id)
                {
                        $original_id = $ilDB->quote($original_id);
                }
                else
                {
                        $original_id = "NULL";
                }

                // cleanup RTE images which are not inserted into the question text
                include_once("./Services/RTE/classes/class.ilRTE.php");
                if ($this->id == -1)
                {
                        // Neuen Datensatz schreiben
                        $now = getdate();
                        $question_type = $this->getQuestionTypeID();
                        $created = sprintf("%04d%02d%02d%02d%02d%02d", $now['year'], $now['mon'], $now['mday'], $now['hours'], $now['minutes'], $now['seconds']);
                        $query = sprintf("INSERT INTO qpl_questions (question_id, question_type_fi, obj_fi, title, comment, author, owner, question_text, points, working_time, complete, created, original_id, TIMESTAMP) VALUES (NULL, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, NULL)",
                                $ilDB->quote($question_type),
                                $ilDB->quote($this->obj_id),
                                $ilDB->quote($this->title),
                                $ilDB->quote($this->comment),
                                $ilDB->quote($this->author),
                                $ilDB->quote($this->owner),
                                $ilDB->quote(ilRTE::_replaceMediaObjectImageSrc($this->question, 0)),
                                $ilDB->quote($this->getMaximumPoints() . ""),
                                $ilDB->quote($estw_time),
                                $ilDB->quote("$complete"),
                                $ilDB->quote($created),
                                $original_id
                        );
                        $result = $ilDB->query($query);
                        
                        if ($result == DB_OK)
                        {
                                $this->id = $ilDB->getLastInsertId();
                                $query = sprintf("INSERT INTO qpl_question_textsubset (question_fi, textgap_rating, correctanswers) VALUES (%s, %s, %s)",
                                        $ilDB->quote($this->id . ""),
                                        $ilDB->quote($this->getTextRating() . ""),
                                        $ilDB->quote($this->getCorrectAnswers() . "")
                                );
                                $ilDB->query($query);

                                // create page object of question
                                $this->createPageObject();

                                // Falls die Frage in einen Test eingefügt werden soll, auch diese Verbindung erstellen
                                if ($this->getTestId() > 0)
                                {
                                $this->insertIntoTest($this->getTestId());
                                }
                        }
                }
                else
                {
                        // Vorhandenen Datensatz aktualisieren
                        $query = sprintf("UPDATE qpl_questions SET obj_fi = %s, title = %s, comment = %s, author = %s, question_text = %s, points = %s, working_time=%s, complete = %s WHERE question_id = %s",
                                $ilDB->quote($this->obj_id. ""),
                                $ilDB->quote($this->title),
                                $ilDB->quote($this->comment),
                                $ilDB->quote($this->author),
                                $ilDB->quote(ilRTE::_replaceMediaObjectImageSrc($this->question, 0)),
                                $ilDB->quote($this->getMaximumPoints() . ""),
                                $ilDB->quote($estw_time),
                                $ilDB->quote("$complete"),
                                $ilDB->quote($this->id)
                        );
                        $result = $ilDB->query($query);
                        $query = sprintf("UPDATE qpl_question_textsubset SET textgap_rating = %s, correctanswers = %s WHERE question_fi = %s",
                                $ilDB->quote($this->getTextRating() . ""),
                                $ilDB->quote($this->getCorrectAnswers() . ""),
                                $ilDB->quote($this->id . "")
                        );
                        $result = $ilDB->query($query);
                }
                if ($result == DB_OK)
                {
                        // Write Ranges to the database
                        
                        // 1. delete old ranges
                        $query = sprintf("DELETE FROM qpl_answer_textsubset WHERE question_fi = %s",
                                $ilDB->quote($this->id)
                        );
                        $result = $ilDB->query($query);

                        // 2. write ranges
                        foreach ($this->answers as $key => $value)
                        {
                                $answer_obj = $this->answers[$key];
                                $query = sprintf("INSERT INTO qpl_answer_textsubset (answer_id, question_fi, answertext, points, aorder) VALUES (NULL, %s, %s, %s, %s)",
                                        $ilDB->quote($this->id),
                                        $ilDB->quote($answer_obj->getAnswertext()),
                                        $ilDB->quote($answer_obj->getPoints() . ""),
                                        $ilDB->quote($answer_obj->getOrder() . "")
                                );
                                $answer_result = $ilDB->query($query);
                        }
                }
                parent::saveToDb($original_id);
        }

Here is the call graph for this function:

assTextSubset::saveWorkingData ( active_id,
pass = NULL 
)

Saves the learners input of the question to the database.

Saves the learners input of the question to the database

Parameters:
integer $test_id The database id of the test containing this question
Returns:
boolean Indicates the save status (true if saved successful, false otherwise) public
See also:
$ranges

Reimplemented from assQuestion.

Definition at line 678 of file class.assTextSubset.php.

References ilObjAssessmentFolder::_enabledAssessmentLogging(), ilObjAssessmentFolder::_getLogLanguage(), ilObjTest::_getPass(), assQuestion::getId(), and assQuestion::logAction().

        {
                global $ilDB;
                global $ilUser;

                if (is_null($pass))
                {
                        include_once "./Modules/Test/classes/class.ilObjTest.php";
                        $pass = ilObjTest::_getPass($active_id);
                }
                $entered_values = 0;
                
                $query = sprintf("DELETE FROM tst_solutions WHERE active_fi = %s AND question_fi = %s AND pass = %s",
                        $ilDB->quote($active_id . ""),
                        $ilDB->quote($this->getId() . ""),
                        $ilDB->quote($pass . "")
                );
                $result = $ilDB->query($query);
                foreach ($_POST as $key => $value)
                {
                        if (preg_match("/^TEXTSUBSET_(\d+)/", $key, $matches))
                        {
                                if (strlen($value))
                                {
                                        $query = sprintf("INSERT INTO tst_solutions (solution_id, active_fi, question_fi, value1, value2, pass, TIMESTAMP) VALUES (NULL, %s, %s, %s, NULL, %s, NULL)",
                                                $ilDB->quote($active_id),
                                                $ilDB->quote($this->getId()),
                                                $ilDB->quote(trim($value)),
                                                $ilDB->quote($pass . "")
                                        );
                                        $result = $ilDB->query($query);
                                        $entered_values++;
                                }
                        }
                }
                if ($entered_values)
                {
                        include_once ("./classes/class.ilObjAssessmentFolder.php");
                        if (ilObjAssessmentFolder::_enabledAssessmentLogging())
                        {
                                $this->logAction($this->lng->txtlng("assessment", "log_user_entered_values", ilObjAssessmentFolder::_getLogLanguage()), $active_id, $this->getId());
                        }
                }
                else
                {
                        include_once ("./classes/class.ilObjAssessmentFolder.php");
                        if (ilObjAssessmentFolder::_enabledAssessmentLogging())
                        {
                                $this->logAction($this->lng->txtlng("assessment", "log_user_not_entered_values", ilObjAssessmentFolder::_getLogLanguage()), $active_id, $this->getId());
                        }
                }
    parent::saveWorkingData($active_id, $pass);
                return true;
        }

Here is the call graph for this function:

assTextSubset::setCorrectAnswers ( a_correct_answers  ) 

Sets the number of correct answers needed to solve the question.

Sets the number of correct answers needed to solve the question

Parameters:
integer $a_correct_anwers The number of correct answers public

Definition at line 650 of file class.assTextSubset.php.

        {
                $this->correctanswers = $a_correct_answers;
        }

assTextSubset::setTextRating ( a_text_rating  ) 

Sets the rating option for text comparisons.

Sets the rating option for text comparisons

Parameters:
string $a_textgap_rating The rating option for text comparisons
See also:
$textgap_rating Public

Definition at line 579 of file class.assTextSubset.php.

        {
                switch ($a_text_rating)
                {
                        case TEXTGAP_RATING_CASEINSENSITIVE:
                        case TEXTGAP_RATING_CASESENSITIVE:
                        case TEXTGAP_RATING_LEVENSHTEIN1:
                        case TEXTGAP_RATING_LEVENSHTEIN2:
                        case TEXTGAP_RATING_LEVENSHTEIN3:
                        case TEXTGAP_RATING_LEVENSHTEIN4:
                        case TEXTGAP_RATING_LEVENSHTEIN5:
                                $this->text_rating = $a_text_rating;
                                break;
                        default:
                                $this->text_rating = TEXTGAP_RATING_CASEINSENSITIVE;
                                break;
                }
        }


Field Documentation

assTextSubset::$answers

Definition at line 46 of file class.assTextSubset.php.

Referenced by isAnswerCorrect().

assTextSubset::$correctanswers

Definition at line 55 of file class.assTextSubset.php.

assTextSubset::$text_rating

Definition at line 64 of file class.assTextSubset.php.


The documentation for this class was generated from the following file: