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';
78 $this->maxNumOfChars = 0;
80 $this->answers = array();
81 $this->matchcondition = 0;
91 if (strlen($this->title)
110 $this->saveAdditionalQuestionDataToDb();
111 $this->saveAnswerSpecificDataToDb();
130 if ($ilDB->numRows(
$result) == 1)
133 $this->
setId($question_id);
142 include_once(
"./Services/RTE/classes/class.ilRTE.php");
147 $this->matchcondition = (strlen($data[
'matchcondition'])) ? $data[
'matchcondition'] : 0;
148 $this->
setEstimatedWorkingTime(substr($data[
"working_time"], 0, 2), substr($data[
"working_time"], 3, 2), substr($data[
"working_time"], 6, 2));
160 $result = $ilDB->queryF(
"SELECT * FROM qpl_a_essay WHERE question_fi = %s",
162 array($this->
getId())
171 parent::loadFromDb($question_id);
187 $this_id = $this->
getId();
191 include_once (
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
195 if( (
int)$testObjId > 0 )
197 $clone->setObjId($testObjId);
224 $clone->copyPageOfQuestion($this_id);
226 $clone->copyXHTMLMediaObjectsOfQuestion($this_id);
227 #$clone->duplicateAnswers($this_id); 229 $clone->onDuplicate($thisObjId, $this_id, $clone->getObjId(), $clone->getId());
248 include_once (
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
251 $source_questionpool_id = $this->
getObjId();
252 $clone->setObjId($target_questionpool_id);
263 #$clone->duplicateAnswers($original_id); 265 $clone->onCopy($source_questionpool_id,
$original_id, $clone->getObjId(), $clone->getId());
278 include_once (
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
281 $sourceParentId = $this->
getObjId();
287 $clone->setObjId($targetParentId);
289 if ($targetQuestionTitle)
291 $clone->setTitle($targetQuestionTitle);
296 $clone->copyPageOfQuestion($sourceQuestionId);
298 $clone->copyXHTMLMediaObjectsOfQuestion($sourceQuestionId);
300 #$clone->duplicateAnswers($sourceQuestionId); 302 $clone->onCopy($sourceParentId, $sourceQuestionId, $clone->getObjId(), $clone->getId());
316 if (strcmp($this->maxNumOfChars,
"") == 0)
335 $this->maxNumOfChars = $maxchars;
346 if( in_array($this->
getKeywordRelation(), self::getScoringModesWithPointsByQuestion()) )
348 return parent::getPoints();
353 foreach ($this->answers as $answer)
355 if ($answer->getPoints() > 0)
366 if( in_array($this->
getKeywordRelation(), self::getScoringModesWithPointsByQuestion()) )
373 foreach ($this->answers as $answer)
375 if ($answer->getPoints() < 0)
402 $affectedRows = $ilDB->manipulateF(
"UPDATE tst_test_result SET points = %s WHERE active_fi = %s AND question_fi = %s AND pass = %s",
403 array(
'float',
'integer',
'integer',
'integer'),
406 $this->_updateTestPassResults($active_id,
$pass);
444 include_once
"./Services/Utilities/classes/class.ilStr.php";
451 if (
ilStr::strPos($answertext, $a_keyword) !==
false)
return TRUE;
456 $answertext = strip_tags($answertext);
458 $answerwords = array();
459 if (preg_match_all(
"/([^\s.]+)/", $answertext, $matches))
461 foreach ($matches[1] as $answerword)
463 array_push($answerwords, trim($answerword));
466 foreach ($answerwords as $a_original)
471 if (levenshtein($a_original, $a_keyword) <= 1)
return TRUE;
474 if (levenshtein($a_original, $a_keyword) <= 2)
return TRUE;
477 if (levenshtein($a_original, $a_keyword) <= 3)
return TRUE;
480 if (levenshtein($a_original, $a_keyword) <= 4)
return TRUE;
483 if (levenshtein($a_original, $a_keyword) <= 5)
return TRUE;
504 throw new ilTestException(
'return details not implemented for '.__METHOD__);
515 $result = $ilDB->queryF(
"SELECT * FROM tst_solutions WHERE active_fi = %s AND question_fi = %s AND pass = %s",
516 array(
'integer',
'integer',
'integer'),
521 if ($ilDB->numRows(
$result) == 0)
528 if (
$row[
"points"] != NULL)
530 return $row[
"points"];
542 if (count($answers) == 0)
553 foreach ($answers as $answer)
555 $qst_answer = $answer->getAnswertext();
556 $user_answer =
' '.$row[
'value1'];
560 $points += $answer->getPoints();
570 foreach ($answers as $answer)
572 $qst_answer = $answer->getAnswertext();
573 $user_answer =
' '.$row[
'value1'];
588 foreach ($answers as $answer)
590 $qst_answer = $answer->getAnswertext();
591 $user_answer =
' '.$row[
'value1'];
620 include_once
"./Services/Utilities/classes/class.ilStr.php";
623 include_once
"./Modules/Test/classes/class.ilObjTest.php";
629 $affectedRows = $ilDB->manipulateF(
"DELETE FROM tst_solutions WHERE active_fi = %s AND question_fi = %s AND pass = %s",
630 array(
'integer',
'integer',
'integer'),
636 include_once
"./Services/Utilities/classes/class.ilStr.php";
637 $text_without_tags = preg_replace(
"/<[^>*?]>/is",
"", $text);
642 if (!$this->
isHTML($text))
650 $text = preg_replace(
"/<[^>]*$/ims",
"", $text);
659 $next_id = $ilDB->nextId(
'tst_solutions');
660 $affectedRows = $ilDB->insert(
"tst_solutions", array(
661 "solution_id" => array(
"integer", $next_id),
662 "active_fi" => array(
"integer", $active_id),
663 "question_fi" => array(
"integer", $this->
getId()),
664 "value1" => array(
"clob", trim($text)),
665 "value2" => array(
"clob", null),
666 "pass" => array(
"integer",
$pass),
667 "tstamp" => array(
"integer", time())
676 include_once (
"./Modules/Test/classes/class.ilObjAssessmentFolder.php");
684 include_once (
"./Modules/Test/classes/class.ilObjAssessmentFolder.php");
694 public function saveAdditionalQuestionDataToDb()
700 array( $this->
getId()
704 $ilDB->manipulateF(
"INSERT INTO " . $this->
getAdditionalTableName() .
" (question_fi, maxnumofchars, keywords, 705 textgap_rating, matchcondition, keyword_relation) VALUES (%s, %s, %s, %s, %s, %s)",
706 array(
"integer",
"integer",
"text",
"text",
'integer',
'text' ),
712 $this->matchcondition,
718 public function saveAnswerSpecificDataToDb()
723 $ilDB->manipulateF(
"DELETE FROM qpl_a_essay WHERE question_fi = %s",
725 array( $this->
getId() )
728 foreach ($this->answers as $answer)
731 $nextID = $ilDB->nextId(
'qpl_a_essay' );
732 $ilDB->manipulateF(
"INSERT INTO qpl_a_essay (answer_id, question_fi, answertext, points) VALUES (%s, %s, %s, %s)",
733 array(
"integer",
"integer",
"text",
'float' ),
737 $answer->getAnswertext(),
769 return "assTextQuestion";
793 switch ($a_text_rating)
802 $this->text_rating = $a_text_rating;
818 return "qpl_qst_essay";
827 return parent::getRTETextWithMediaObjects();
844 include_once (
"./Services/Excel/classes/class.ilExcelUtils.php");
850 if (strlen($solutions[0][
"value1"]))
855 return $startrow + $i + 1;
863 include_once(
"./Services/RTE/classes/class.ilRTE.php");
877 return count($this->answers);
896 $points_unchecked = 0.0,
901 include_once
"./Modules/TestQuestionPool/classes/class.assAnswerMultipleResponseImage.php";
905 $this->answers[] = $answer;
924 if ($index < 0)
return NULL;
925 if (count($this->answers) < 1)
return NULL;
926 if ($index >= count($this->answers))
return NULL;
928 return $this->answers[$index];
941 if ($index < 0)
return;
942 if (count($this->answers) < 1)
return;
943 if ($index >= count($this->answers))
return;
944 $answer = $this->answers[$index];
945 if (strlen($answer->getImage())) $this->deleteImage($answer->getImage());
946 unset($this->answers[$index]);
947 $this->answers = array_values($this->answers);
948 for ($i = 0; $i < count($this->answers); $i++)
950 if ($this->answers[$i]->getOrder() > $index)
952 $this->answers[$i]->setOrder($i);
959 return 'qpl_a_essay';
970 $this->answers = array();
975 if( isset($answers[
'answer']) )
977 $count = count($answers[
'answer']);
982 $count = count($answers);
988 for( $i = 0; $i < $count; $i++ )
992 $this->
addAnswer($answers[
'answer'][$i], $answers[
'points'][$i]);
1005 $result = $ilDB->queryF(
"SELECT * FROM qpl_a_essay WHERE question_fi = %s",
1013 $next_id = $ilDB->nextId(
'qpl_a_essay');
1014 $affectedRows = $ilDB->manipulateF(
1015 "INSERT INTO qpl_a_essay (answer_id, question_fi, answertext, points) 1016 VALUES (%s, %s, %s, %s)",
1017 array(
'integer',
'integer',
'text',
'integer'),
1018 array($next_id, $this->
getId(),
$row[
"answertext"],
$row[
"points"])
1035 $this->keyword_relation = $a_relation;
1040 return array_merge(self::getScoringModesWithPointsByQuestion(), self::getScoringModesWithPointsByKeyword());
1045 return array(
'non',
'all',
'one');
1050 return array(
'any');
duplicate($for_test=true, $title="", $author="", $owner="", $testObjId=null)
Duplicates an assTextQuestion.
getId()
Gets the id of the assQuestion object.
setExportDetailsXLS(&$worksheet, $startrow, $active_id, $pass, &$format_title, &$format_bold)
Creates an Excel worksheet for the detailed cumulated results of this question.
static _getOriginalId($question_id)
Returns the original id of a question.
formatSAQuestion($a_q)
Format self assessment question.
const TEXTGAP_RATING_LEVENSHTEIN5
static getScoringModesWithPointsByKeyword()
static doesSolutionRecordsExist($activeId, $pass, $questionId)
checks wether there are existing solution records for the given test active / pass and given question...
getPoints()
Returns the maximum available points for the question.
const TEXTGAP_RATING_LEVENSHTEIN2
const TEXTGAP_RATING_LEVENSHTEIN1
& getSolutionValues($active_id, $pass=NULL)
Loads solutions of a given user from the database an returns it.
Abstract basic class which is to be extended by the concrete assessment question type classes...
_getPass($active_id)
Retrieves the actual pass of a given user for a given test.
reworkWorkingData($active_id, $pass, $obligationsAnswered)
Reworks the allready saved working data if neccessary.
_convert_text($a_text, $a_target="has been removed")
isComplete()
Returns true, if a multiple choice question is complete for use.
createNewOriginalFromThisDuplicate($targetParentId, $targetQuestionTitle="")
ASS_AnswerBinaryStateImage is a class for answers with a binary state indicator (checked/unchecked, set/unset) and an image file.
setId($id=-1)
Sets the id of the assQuestion object.
loadFromDb($question_id)
Loads a assTextQuestion object from a database.
saveToDb($original_id="")
Saves a assTextQuestion object to a database.
copyObject($target_questionpool_id, $title="")
Copies an assTextQuestion object.
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.
static strToLower($a_string)
static getValidScoringModes()
toJSON()
Returns a JSON representation of the question.
calculateReachedPoints($active_id, $pass=NULL, $returndetails=FALSE)
Returns the points, a learner has reached answering the question.
setNrOfTries($a_nr_of_tries)
_enabledAssessmentLogging()
check wether assessment logging is enabled or not
setAdditionalContentEditingMode($additinalContentEditingMode)
setter for additional content editing mode for this question
isHTML($a_text)
Checks if a given string contains HTML or not.
setShuffle($shuffle=true)
Sets the shuffle flag.
getObjId()
Get the object id of the container object.
getShuffle()
Gets the shuffle flag.
Base Exception for all Exceptions relating to Modules/Test.
getMaximumPoints()
Returns the maximum points, a learner can reach answering the question.
fetchAssoc($a_set)
Fetch row as associative array from result set.
__construct( $title="", $comment="", $author="", $owner=-1, $question="")
assTextQuestion constructor
setAuthor($author="")
Sets the authors name of the assQuestion object.
isValidTextRating($textRating)
const TEXTGAP_RATING_LEVENSHTEIN3
Class for text questions.
duplicateAnswers($original_id)
flushAnswers()
Deletes all answers.
static getScoringModesWithPointsByQuestion()
const TEXTGAP_RATING_CASESENSITIVE
setKeywordRelation($a_relation)
This method implements a default behaviour.
setTextRating($a_text_rating)
Sets the rating option for text comparisons.
getQuestion()
Gets the question string of the question object.
setMaxNumOfChars($maxchars=0)
Sets the maximum number of characters for the text solution.
getQuestionType()
Returns the question type of the question.
isKeywordMatching($answertext, $a_keyword)
Checks if one of the keywords matches the answertext.
getAdditionalTableName()
Returns the name of the additional question data table in the database.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
getAnswer($index=0)
Returns an answer with a given index.
_getLogLanguage()
retrieve the log language for assessment logging
deleteAnswer($index=0)
Deletes an answer with a given index.
strPos($a_haystack, $a_needle, $a_offset=NULL)
setPoints($a_points)
Sets the maximum available points for the question.
addAnswer( $answertext="", $points=0.0, $points_unchecked=0.0, $order=0, $answerimage="")
Adds a possible answer for a multiple choice question.
saveQuestionDataToDb($original_id="")
setReachedPoints($active_id, $points, $pass=NULL)
Sets the points, a learner has reached answering the question.
static _replaceMediaObjectImageSrc($a_text, $a_direction=0)
replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
getMaxNumOfChars()
Gets the maximum number of characters for the text solution.
while($lm_rec=$ilDB->fetchAssoc($lm_set)) $data
getRTETextWithMediaObjects()
Collects all text in the question which could contain media objects which were created with the Rich ...
setQuestion($question="")
Sets the question string of the question object.
const TEXTGAP_RATING_LEVENSHTEIN4
saveWorkingData($active_id, $pass=NULL)
Saves the learners input of the question to the database.
setOriginalId($original_id)
logAction($logtext="", $active_id="", $question_id="")
Logs an action into the Test&Assessment log.
getTitle()
Gets the title string of the assQuestion object.
getTextRating()
Returns the rating option for text comparisons.
static subStr($a_str, $a_start, $a_length=NULL)
setTitle($title="")
Sets the title string of the assQuestion object.
setObjId($obj_id=0)
Set the object id of the container object.
setComment($comment="")
Sets the comment string of the assQuestion object.
static isObligationPossible($questionId)
returns boolean wether it is possible to set this question type as obligatory or not considering the ...
setOwner($owner="")
Sets the creator/owner ID of the assQuestion object.
const TEXTGAP_RATING_CASEINSENSITIVE
isAnswered($active_id, $pass)
returns boolean wether the question is answered during test pass or not
createRandomSolution($test_id, $user_id)