37 $ilUser = $DIC->user();
38 $ilLog = $DIC[
"ilLog"];
39 $ilDB = $DIC->database();
40 $ilLog->write($a_type);
42 $ilLog->write($a_answer);
43 $answer = json_decode($a_answer,
false, 512, JSON_THROW_ON_ERROR);
44 $passed = $answer->passed;
45 $choice = $answer->choice ?? [];
46 $points = self::calculatePoints($a_type, $a_id, $choice);
47 $ilLog->write(
"Points: " . $points);
50 "SELECT * FROM page_qst_answer WHERE " .
51 " qst_id = " .
$ilDB->quote($a_id,
"integer") .
" AND " .
52 " user_id = " .
$ilDB->quote($ilUser->getId(),
"integer")
56 if (!
$ilDB->fetchAssoc($set)) {
60 "qst_id" => array(
"integer", $a_id),
61 "user_id" => array(
"integer", $ilUser->getId())
64 "try" => array(
"integer", 1),
65 "passed" => array(
"integer", $passed),
66 "points" => array(
"float", $points)
71 "UPDATE page_qst_answer SET " .
73 " passed = " .
$ilDB->quote($passed,
"integer") .
"," .
74 " points = " .
$ilDB->quote($points,
"float") .
75 " WHERE qst_id = " .
$ilDB->quote($a_id,
"integer") .
76 " AND user_id = " .
$ilDB->quote($ilUser->getId(),
"integer")
86 $ilDB = $DIC->database();
89 "SELECT count(user_id) usr_cnt FROM page_qst_answer WHERE " .
90 " qst_id = " .
$ilDB->quote($a_q_id,
"integer")
92 $rec =
$ilDB->fetchAssoc($set);
93 $all = $rec[
"usr_cnt"];
97 $third_or_more =
false;
101 "SELECT count(user_id) usr_cnt FROM page_qst_answer WHERE " .
102 " qst_id = " .
$ilDB->quote($a_q_id,
"integer") .
" AND " .
103 " passed = " .
$ilDB->quote(1,
"integer") .
" AND " .
104 " try = " .
$ilDB->quote(1,
"integer")
106 $rec =
$ilDB->fetchAssoc($set);
107 $first = $rec[
"usr_cnt"];
110 "SELECT count(user_id) usr_cnt FROM page_qst_answer WHERE " .
111 " qst_id = " .
$ilDB->quote($a_q_id,
"integer") .
" AND " .
112 " passed = " .
$ilDB->quote(1,
"integer") .
" AND " .
113 " try = " .
$ilDB->quote(2,
"integer")
115 $rec =
$ilDB->fetchAssoc($set);
116 $second = $rec[
"usr_cnt"];
119 $q =
"SELECT count(user_id) usr_cnt FROM page_qst_answer WHERE " .
120 " qst_id = " .
$ilDB->quote($a_q_id,
"integer") .
" AND " .
121 " passed = " .
$ilDB->quote(1,
"integer") .
" AND " .
122 " try >= " .
$ilDB->quote(3,
"integer")
124 $rec =
$ilDB->fetchAssoc($set);
125 $third_or_more = $rec[
"usr_cnt"];
128 return array(
"all" => $all,
"first" => $first,
"second" => $second,
"third_or_more" => $third_or_more);
146 case "assSingleChoice":
148 $q->loadFromDb($a_id);
150 foreach (
$q->getAnswers() as $key => $answer) {
151 if (isset($a_choice[0]) && $key == $a_choice[0]) {
152 $points += $answer->getPoints();
157 case "assMultipleChoice":
159 $q->loadFromDb($a_id);
161 foreach (
$q->getAnswers() as $key => $answer) {
162 if (is_array($a_choice) && in_array($key, $a_choice)) {
163 $points += $answer->getPoints();
165 $points += $answer->getPointsUnchecked();
172 $q->loadFromDb($a_id);
174 foreach (
$q->getGaps() as
$id => $gap) {
175 $choice = $a_choice[
$id];
176 switch ($gap->getType()) {
179 for ($order = 0; $order < $gap->getItemCount(); $order++) {
180 $answer = $gap->getItem($order);
181 $gotpoints =
$q->getTextgapPoints(
182 $answer->getAnswertext(),
186 if ($gotpoints > $gappoints) {
187 $gappoints = $gotpoints;
190 $points += $gappoints;
196 for ($order = 0; $order < $gap->getItemCount(); $order++) {
197 $answer = $gap->getItem($order);
198 $gotpoints =
$q->getNumericgapPoints(
199 $answer->getAnswertext(),
201 $answer->getPoints(),
202 $answer->getLowerBound(),
203 $answer->getUpperBound()
205 if ($gotpoints > $gappoints) {
206 $gappoints = $gotpoints;
209 $points += $gappoints;
214 for ($order = 0; $order < $gap->getItemCount(); $order++) {
215 $answer = $gap->getItem($order);
216 if ($choice == $answer->getOrder()) {
217 $answerpoints = $answer->getPoints();
218 $points += $answerpoints;
227 case "assMatchingQuestion":
229 $q->loadFromDb($a_id);
231 for ($i = 0; $i <
$q->getMatchingPairCount(); $i++) {
232 $pair =
$q->getMatchingPair($i);
233 if (is_array($a_choice) && in_array($pair->getDefinition()->getIdentifier() .
"-" . $pair->getTerm()->getIdentifier(), $a_choice)) {
234 $points += $pair->points;
239 case "assOrderingQuestion":
244 $q->loadFromDb($a_id);
248 foreach (
$q->getOrderElements() as $answer) {
249 if ($a_choice[$cnt - 1] != $cnt) {
255 $points =
$q->getPoints();
259 case "assImagemapQuestion":
261 $q->loadFromDb($a_id);
264 foreach (
$q->getAnswers() as $key => $answer) {
265 if (is_array($a_choice) && in_array($key, $a_choice)) {
266 $points += $answer->getPoints();
276 return (
int) $points;
288 $ilDB = $DIC->database();
290 $qst = (is_array($a_q_id))
291 ?
$ilDB->in(
"qst_id", $a_q_id,
false,
"integer")
292 :
" qst_id = " .
$ilDB->quote($a_q_id,
"integer");
294 $and = ($a_user_id > 0)
295 ?
" AND user_id = " .
$ilDB->quote($a_user_id,
"integer")
299 "SELECT * FROM page_qst_answer WHERE " .
304 if (is_array($a_q_id) || $a_user_id == 0) {
306 while ($rec =
$ilDB->fetchAssoc($set)) {
307 $key = ($a_user_id == 0)
308 ? $rec[
"qst_id"] .
":" . $rec[
"user_id"]
315 if ($rec =
$ilDB->fetchAssoc($set)) {
333 $ilDB = $DIC->database();
336 $q =
"UPDATE page_qst_answer SET " .
337 " try = " .
$ilDB->quote(0,
"integer") .
"," .
338 " passed = " .
$ilDB->quote(0,
"integer") .
"," .
339 " points = " .
$ilDB->quote(0,
"integer") .
"," .
340 " unlocked = " .
$ilDB->quote(0,
"integer") .
341 " WHERE qst_id = " .
$ilDB->quote($a_q_id,
"integer") .
342 " AND user_id = " .
$ilDB->quote($a_user_id,
"integer")
355 $ilDB = $DIC->database();
358 $q =
"UPDATE page_qst_answer SET " .
359 " unlocked = " .
$ilDB->quote(1,
"integer") .
360 " WHERE qst_id = " .
$ilDB->quote($a_q_id,
"integer") .
361 " AND user_id = " .
$ilDB->quote($a_user_id,
"integer")
static resetTries(int $a_q_id, int $a_user_id)
Reset tries for user and question.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getAnswerStatus( $a_q_id, int $a_user_id=0)
static saveQuestionAnswer(string $a_type, int $a_id, string $a_answer)
Class for multiple choice tests.
Class for matching questions.
Class for single choice questions.
static getQuestionStatistics(int $a_q_id)
Class for image map questions.
static unlock(int $a_q_id, int $a_user_id)
Unlock question for user.
static calculatePoints(string $a_type, int $a_id, array $a_choice)
Calculate points.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Class for ordering questions.