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.iQuestionCondition.php';
8 require_once
'./Modules/TestQuestionPool/classes/class.ilUserQuestionResult.php';
41 require_once
'Modules/TestQuestionPool/classes/feedback/class.ilAssConfigurableMultiOptionQuestionFeedback.php';
43 $this->minAutoComplete = self::MIN_LENGTH_AUTOCOMPLETE;
45 $this->ilDB = $DIC->database();
46 $this->identical_scoring = 1;
151 return $this->minAutoComplete ? $this->minAutoComplete : self::MIN_LENGTH_AUTOCOMPLETE;
156 if (strlen($this->title)
158 && $this->long_menu_text
159 &&
sizeof($this->answers) > 0
160 &&
sizeof($this->correct_answers) > 0
195 if (!is_array($correct_answers_row[0]) ||
sizeof($correct_answers_row[0]) == 0) {
198 if ($correct_answers_row[1] > 0) {
199 array_push(
$points, $correct_answers_row[1]);
221 foreach (
$answers[0] as $key => $answer) {
222 if (!in_array($answer, $answer_options)) {
251 $this->ilDB->manipulateF(
254 array( $this->
getId() )
256 $this->ilDB->manipulateF(
258 ) .
" (question_fi, long_menu_text, feedback_setting, min_auto_complete, identical_scoring) VALUES (%s, %s, %s, %s, %s)",
259 array(
"integer",
"text",
"integer",
"integer",
"integer"),
278 foreach ($gap[0] as $position => $answer) {
279 if ($type_array == null) {
282 $type = $type_array[$gap_number];
287 'question_fi' => array(
'integer', (
int) $this->
getId()),
288 'gap_number' => array(
'integer', (
int) $gap_number),
289 'position' => array(
'integer', (
int) $position)
292 'answer_text' => array(
'text', $answer),
293 'points' => array(
'float', $gap[1]),
294 'type' => array(
'integer', (
int)
$type)
307 foreach ($array as $gap => $values) {
309 if (is_array($values)) {
310 foreach ($values as $key => $value) {
311 $file_content .= $value .
"\n";
313 $file_content = rtrim($file_content,
"\n");
315 fwrite($file, $file_content);
325 if ($files ===
false) {
331 foreach ($files as $file) {
332 $gap = str_replace(
'.txt',
'', basename($file));
333 $answers[(int) $gap] = explode(
"\n", file_get_contents($file));
348 throw new ilException(
'Cannot create export directory');
352 !is_dir($folder_name) ||
353 !is_readable($folder_name) ||
354 !is_writable($folder_name)
356 throw new ilException(
'Cannot create export directory');
369 $this->
setId($question_id);
379 include_once(
"./Services/RTE/classes/class.ilRTE.php");
385 if (isset(
$data[
'feedback_setting'])) {
403 parent::loadFromDb($question_id);
408 $res = $this->db->queryF(
409 "SELECT * FROM {$this->getAnswerTableName()} WHERE question_fi = %s ORDER BY gap_number, position ASC",
415 while (
$data = $this->ilDB->fetchAssoc(
$res)) {
427 $res = $this->db->queryF(
428 'SELECT gap_number, answer_text FROM ' . $this->
getAnswerTableName() .
' WHERE question_fi = %s',
432 while (
$data = $this->ilDB->fetchAssoc(
$res)) {
446 $res = $this->db->queryF(
447 'SELECT answer_text FROM ' . $this->
getAnswerTableName() .
' WHERE question_fi = %s AND gap_number = %s',
448 array(
'integer',
'integer'),
449 array($question_id, $gap_id)
451 while (
$data = $this->ilDB->fetchAssoc(
$res)) {
460 $res = $this->db->queryF(
461 'SELECT points FROM ' . $this->
getAnswerTableName() .
' WHERE question_fi = %s AND gap_number = %s GROUP BY gap_number, points',
462 array(
'integer',
'integer'),
463 array($question_id, $gap_id)
465 while (
$data = $this->ilDB->fetchAssoc(
$res)) {
485 if ($this->
id <= 0) {
491 $this_id = $this->
getId();
495 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
499 if ((
int) $testObjId > 0) {
500 $clone->setObjId($testObjId);
520 $clone->copyPageOfQuestion($this_id);
521 $clone->copyXHTMLMediaObjectsOfQuestion($this_id);
522 $clone->onDuplicate($thisObjId, $this_id, $clone->getObjId(), $clone->getId());
529 if ($this->
id <= 0) {
535 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
538 $source_questionpool_id = $this->
getObjId();
539 $clone->setObjId($target_questionpool_id);
548 $clone->onCopy($source_questionpool_id,
$original_id, $clone->getObjId(), $clone->getId());
555 if ($this->
id <= 0) {
560 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
563 $sourceParentId = $this->
getObjId();
569 $clone->setObjId($targetParentId);
571 if ($targetQuestionTitle) {
572 $clone->setTitle($targetQuestionTitle);
576 $clone->copyPageOfQuestion($sourceQuestionId);
577 $clone->copyXHTMLMediaObjectsOfQuestion($sourceQuestionId);
579 $clone->onCopy($sourceParentId, $sourceQuestionId, $clone->getObjId(), $clone->getId());
598 if ($returndetails) {
599 throw new ilTestException(
'return details not implemented for ' . __METHOD__);
602 $found_values = array();
603 if (is_null(
$pass)) {
608 $found_values[(int)
$data[
'value1']] =
$data[
'value2'];
619 $solution_values_text = array();
620 foreach ($found_values as $key => $answer) {
627 if ((in_array($answer, $solution_values_text)) && (
$points > 0)) {
632 array_push($solution_values_text, $answer);
649 if (is_null(
$pass)) {
650 include_once
"./Modules/Test/classes/class.ilObjTest.php";
656 $this->
getProcessLocker()->executeUserSolutionUpdateLockOperation(
function () use (&$entered_values, $active_id,
$pass, $authorized) {
661 if (strlen($value)) {
668 if ($entered_values) {
669 include_once(
"./Modules/Test/classes/class.ilObjAssessmentFolder.php");
674 include_once(
"./Modules/Test/classes/class.ilObjAssessmentFolder.php");
692 $ilDB = $DIC[
'ilDB'];
695 'authorized' =>
false,
696 'intermediate' =>
false 700 SELECT authorized, COUNT(*) cnt 702 WHERE active_fi = " .
$ilDB->quote($activeId,
'integer') .
" 703 AND question_fi = " .
$ilDB->quote($this->
getId(),
'integer') .
" 704 AND pass = " .
$ilDB->quote(
$pass,
'integer') .
" 708 if ($this->
getStep() !== null) {
719 if ($row[
'authorized']) {
720 $return[
'authorized'] = $row[
'cnt'] > 0;
722 $return[
'intermediate'] = $row[
'cnt'] > 0;
732 $solutionSubmit = array();
735 foreach ($answer as $key => $value) {
736 $solutionSubmit[$key] = $value;
739 return $solutionSubmit;
744 if (array_key_exists(
'answer',
$_POST)) {
758 return "assLongMenu";
768 return 'qpl_qst_lome';
785 parent::setExportDetailsXLS($worksheet, $startrow, $active_id,
$pass);
791 $worksheet->setCell($startrow +
$i, 0, $this->lng->txt(
'assLongMenu') .
" $i");
792 $worksheet->setBold($worksheet->getColumnCoord(0) . ($startrow +
$i));
793 foreach ($solution as $solutionvalue) {
794 if ($gap_index == $solutionvalue[
"value1"]) {
796 case self::ANSWER_TYPE_SELECT_VAL:
797 $value = $solutionvalue[
"value2"];
801 $worksheet->setCell($startrow +
$i, 1, $value);
803 case self::ANSWER_TYPE_TEXT_VAL:
804 $worksheet->setCell($startrow +
$i, 1, $solutionvalue[
"value2"]);
812 return $startrow +
$i + 1;
855 $this->ilDB->manipulateF(
858 array( $question_id )
881 include_once(
"./Services/RTE/classes/class.ilRTE.php");
892 'onenotcorrect' => $this->
formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(),
false)),
893 'allcorrect' => $this->
formatSAQuestion($this->feedbackOBJ->getGenericFeedbackTestPresentation($this->getId(),
true))
905 return ($this->identical_scoring) ? 1 : 0;
913 $this->identical_scoring = ($a_identical_scoring) ? 1 : 0;
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.
static _getPass($active_id)
Retrieves the actual pass of a given user for a given test.
getPoints()
Returns the maximum available points for the question.
Abstract basic class which is to be extended by the concrete assessment question type classes...
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.
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. ...
migrateToLmContent($content)
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.
getShuffle()
Gets the shuffle flag.
Base Exception for all Exceptions relating to Modules/Test.
setParticipantsSolution($participantSolution)
static _getLogLanguage()
retrieve the log language for assessment logging
setAuthor($author="")
Sets the authors name of the assQuestion object.
static _enabledAssessmentLogging()
check wether assessment logging is enabled or not
foreach($_POST as $key=> $value) $res
Class ilUserQuestionResult.
saveCurrentSolution($active_id, $pass, $value1, $value2, $authorized=true, $tstamp=null)
static stripSlashesRecursive($a_data, $a_strip_html=true, $a_allow="")
Strip slashes from array and sub-arrays.
getQuestion()
Gets the question string of the question object.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
setPoints($a_points)
Sets the maximum available points for the question.
saveQuestionDataToDb($original_id="")
static getDataDir()
get data directory (outside webspace)
setQuestion($question="")
Sets the question string of the question object.
const FEEDBACK_SETTING_ALL
Interface ilObjQuestionScoringAdjustable.
removeCurrentSolution($active_id, $pass, $authorized=true)
__construct(Container $dic, ilPlugin $plugin)
setOriginalId($original_id)
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)
getTitle()
Gets the title string of the assQuestion object.
getHtmlQuestionContentPurifier()
setTitle($title="")
Sets the title string of the assQuestion object.
setObjId($obj_id=0)
Set the object id of the container object.
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
setComment($comment="")
Sets the comment string of the assQuestion object.
static getDraftInstance()
setOwner($owner="")
Sets the creator/owner ID of the assQuestion object.