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';
106 $this->
setId($question_id);
115 require_once
'./Services/RTE/classes/class.ilRTE.php';
129 $result = $ilDB->queryF(
"SELECT * FROM qpl_num_range WHERE question_fi = %s ORDER BY aorder ASC",
134 require_once
'./Modules/TestQuestionPool/classes/class.assNumericRange.php';
146 parent::loadFromDb($question_id);
168 $this_id = $this->
getId();
172 require_once
'./Modules/TestQuestionPool/classes/class.assQuestion.php';
176 if( (
int)$testObjId > 0 )
178 $clone->setObjId($testObjId);
205 $clone->copyPageOfQuestion($this_id);
207 $clone->copyXHTMLMediaObjectsOfQuestion($this_id);
209 $clone->onDuplicate($thisObjId, $this_id, $clone->getObjId(), $clone->getId());
231 include_once (
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
234 $source_questionpool_id = $this->
getObjId();
235 $clone->setObjId($target_questionpool_id);
247 $clone->onCopy($source_questionpool_id,
$original_id, $clone->getObjId(), $clone->getId());
260 include_once (
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
263 $sourceParentId = $this->
getObjId();
269 $clone->setObjId($targetParentId);
271 if ($targetQuestionTitle)
273 $clone->setTitle($targetQuestionTitle);
278 $clone->copyPageOfQuestion($sourceQuestionId);
280 $clone->copyXHTMLMediaObjectsOfQuestion($sourceQuestionId);
282 $clone->onCopy($sourceParentId, $sourceQuestionId, $clone->getObjId(), $clone->getId());
299 $a_limit = str_replace(
',',
'.', $a_limit);
300 $this->lower_limit = $a_limit;
305 $a_limit = str_replace(
',',
'.', $a_limit);
306 $this->upper_limit = $a_limit;
335 throw new ilTestException(
'return details not implemented for '.__METHOD__);
341 $found_values = array();
346 $result = $this->getCurrentSolutionResultSet($active_id,
$pass);
349 $enteredvalue =
$data[
"value1"];
383 require_once
'./Services/Math/classes/class.EvalMath.php';
385 $eval->suppress_errors = TRUE;
401 return trim(str_replace(
",",
".",
$_POST[
"numeric_result"]));
406 require_once
'./Services/Math/classes/class.EvalMath.php';
408 $math->suppress_errors = TRUE;
409 $result = $math->evaluate($numeric_solution);
412 (
$result === FALSE ||
$result === TRUE) && strlen($numeric_solution) > 0
431 require_once
'./Modules/Test/classes/class.ilObjTest.php';
444 $returnvalue =
false;
449 $result = $this->getCurrentSolutionResultSet($active_id,
$pass);
452 $update =
$row[
"solution_id"];
455 if (strlen($numeric_result))
457 $ilDB->update(
"tst_solutions", array(
458 "value1" => array(
"clob", trim($numeric_result)),
459 "tstamp" => array(
"integer", time())
462 "solution_id" => array(
"integer", $update)
470 $ilDB->manipulateF(
"DELETE FROM tst_solutions WHERE solution_id = %s",
478 if (strlen($numeric_result))
480 $this->saveCurrentSolution($active_id,
$pass, trim($numeric_result), null);
489 require_once
'./Modules/Test/classes/class.ilObjAssessmentFolder.php';
494 "log_user_entered_values",
504 include_once (
"./Modules/Test/classes/class.ilObjAssessmentFolder.php");
509 "log_user_not_entered_values",
541 array( $this->
getId() )
545 ) .
" (question_fi, maxnumofchars) VALUES (%s, %s)",
546 array(
"integer",
"integer" ),
560 $ilDB->manipulateF(
"DELETE FROM qpl_num_range WHERE question_fi = %s",
562 array( $this->
getId() )
565 $next_id = $ilDB->nextId(
'qpl_num_range' );
566 $ilDB->manipulateF(
"INSERT INTO qpl_num_range (range_id, question_fi, lowerlimit, upperlimit, points, aorder, tstamp) 567 VALUES (%s, %s, %s, %s, %s, %s, %s)",
568 array(
'integer',
'integer',
'text',
'text',
'float',
'integer',
'integer' ),
623 return "qpl_qst_numeric";
632 return parent::getRTETextWithMediaObjects();
649 include_once (
"./Services/Excel/classes/class.ilExcelUtils.php");
655 if (strlen($solutions[0][
"value1"]))
660 return $startrow + $i + 1;
673 require_once
"./Modules/TestQuestionPool/classes/class.ilOperatorsExpressionMapping.php";
704 $data = $ilDB->queryF(
705 "SELECT value1 FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s AND step = ( 706 SELECT MAX(step) FROM tst_solutions WHERE active_fi = %s AND pass = %s AND question_fi = %s 708 array(
"integer",
"integer",
"integer",
"integer",
"integer",
"integer"),
getRTETextWithMediaObjects()
Collects all text in the question which could contain media objects which were created with the Rich ...
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.
const PercentageResultExpression
Class iQuestionCondition.
__construct( $title="", $comment="", $author="", $owner=-1, $question="")
assNumeric constructor
getExpressionTypes()
Get all available expression types for a specific question.
saveAdditionalQuestionDataToDb()
Saves a record to the question types additional data table.
getPoints()
Returns the maximum available points for the question.
getMaxChars()
Returns the maximum number of characters for the numeric input field.
& 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.
_convert_text($a_text, $a_target="has been removed")
setId($id=-1)
Sets the id of the assQuestion 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 from given hour, minute and second. ...
calculateReachedPointsFromPreviewSession(ilAssQuestionPreviewSession $previewSession)
getParticipantsSolution()
getUserQuestionResult($active_id, $pass)
Get the user solution for a question by active_id and the test pass.
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
getQuestionType()
Returns the question type of the question.
loadFromDb($question_id)
Loads the question from the database.
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.
getAvailableAnswerOptions($index=null)
If index is null, the function returns an array with all anwser options Else it returns the specific ...
Base Exception for all Exceptions relating to Modules/Test.
setMaxChars($maxchars)
Sets the maximum number of characters for the numeric input field.
setParticipantsSolution($participantSolution)
setAuthor($author="")
Sets the authors name of the assQuestion object.
Class ilUserQuestionResult.
const NumericResultExpression
Interface ilObjAnswerScoringAdjustable.
duplicate($for_test=true, $title="", $author="", $owner="", $testObjId=null)
Duplicates an assNumericQuestion.
reworkWorkingData($active_id, $pass, $obligationsAnswered)
Reworks the allready saved working data if neccessary.
saveToDb($original_id="")
Saves a assNumeric object to a database.
getAdditionalTableName()
Returns the name of the additional question data table in the database.
getOperators($expression)
Get all available operations for a specific question.
_getLogLanguage()
retrieve the log language for assessment logging
static getOperatorsByExpression($expression)
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
saveAnswerSpecificDataToDb()
Saves the answer specific records into a question types answer table.
copyObject($target_questionpool_id, $title="")
Copies an assNumeric object.
setPoints($a_points)
Sets the maximum available points for the question.
saveQuestionDataToDb($original_id="")
isValidSolutionSubmit($numeric_solution)
calculateReachedPoints($active_id, $pass=NULL, $returndetails=FALSE)
Returns the points, a learner has reached answering the question.
isComplete()
Returns true, if a numeric question is complete for use.
Class for numeric questions.
setQuestion($question="")
Sets the question string of the question object.
Interface ilObjQuestionScoringAdjustable.
getMaximumPoints()
Returns the maximum points, a learner can reach answering the question.
setOriginalId($original_id)
createNewOriginalFromThisDuplicate($targetParentId, $targetQuestionTitle="")
logAction($logtext="", $active_id="", $question_id="")
Logs an action into the Test&Assessment log.
getTitle()
Gets the title string of the assQuestion object.
setTitle($title="")
Sets the title string of the assQuestion object.
setObjId($obj_id=0)
Set the object id of the container object.
savePreviewData(ilAssQuestionPreviewSession $previewSession)
setComment($comment="")
Sets the comment string of the assQuestion object.
contains($value)
Checks for a given value within the range.
saveWorkingData($active_id, $pass=NULL)
Saves the learners input of the question to the database.
setOwner($owner="")
Sets the creator/owner ID of the assQuestion object.
const EmptyAnswerExpression