ILIAS  release_8 Revision v8.24
ilCourseObjectiveResult Class Reference

class ilcourseobjective More...

+ Collaboration diagram for ilCourseObjectiveResult:

Public Member Functions

 __construct (int $a_usr_id)
 
 getUserId ()
 
 getAccomplished (int $a_crs_id)
 
 getSuggested (int $a_crs_id, string $a_status=self::IL_OBJECTIVE_STATUS_FINAL)
 
 reset (int $a_course_id)
 
 getStatus (int $a_course_id)
 
 hasAccomplishedObjective (int $a_objective_id)
 
 readStatus (int $a_crs_id)
 

Static Public Member Functions

static _getAccomplished (int $a_user_id, int $a_crs_id)
 
static _getSuggested (int $a_user_id, int $a_crs_id, string $a_status=self::IL_OBJECTIVE_STATUS_FINAL)
 
static getSuggestedQuestions (int $a_usr_id, int $a_crs_id)
 
static _updateObjectiveResult (int $a_user_id, int $a_active_id, int $a_question_id)
 
static _readAssignedObjectivesOfQuestion (int $a_question_id)
 
static _readAssignedObjectives (array $a_all_objectives)
 
static _updateObjectiveStatus (int $a_user_id, array $objectives)
 
static __isFullfilled (array $question_points, array $objective_data)
 

Data Fields

const IL_OBJECTIVE_STATUS_EMPTY = 'empty'
 
const IL_OBJECTIVE_STATUS_PRETEST = 'pretest'
 
const IL_OBJECTIVE_STATUS_FINAL = 'final'
 
const IL_OBJECTIVE_STATUS_NONE = 'none'
 
const IL_OBJECTIVE_STATUS_FINISHED = 'finished'
 
const IL_OBJECTIVE_STATUS_PRETEST_NON_SUGGEST = 'pretest_non_suggest'
 

Protected Member Functions

 resetTestForUser (ilObjTest $a_test, int $a_user_id)
 

Static Protected Member Functions

static __updatePassed (int $a_user_id, array $objective_ids)
 

Protected Attributes

ilDBInterface $db
 

Private Attributes

int $user_id
 

Detailed Description

class ilcourseobjective

Author
Stefan Meyer meyer.nosp@m.@lei.nosp@m.fos.c.nosp@m.om

Definition at line 24 of file class.ilCourseObjectiveResult.php.

Constructor & Destructor Documentation

◆ __construct()

ilCourseObjectiveResult::__construct ( int  $a_usr_id)

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

38 {
39 global $DIC;
40
41 $this->db = $DIC->database();
42
43 $this->user_id = $a_usr_id;
44 }
global $DIC
Definition: feed.php:28

References $DIC.

Member Function Documentation

◆ __isFullfilled()

static ilCourseObjectiveResult::__isFullfilled ( array  $question_points,
array  $objective_data 
)
static

Definition at line 392 of file class.ilCourseObjectiveResult.php.

392 : bool
393 {
394 global $DIC;
395
396 if (!is_array($objective_data['questions'])) {
397 return false;
398 }
399 $max_points = 0;
400 $reached_points = 0;
401 foreach ($objective_data['questions'] as $question_id) {
402 if (array_key_exists($question_id, $question_points)) {
403 $max_points += $question_points[$question_id]['max_points'];
404 $reached_points += $question_points[$question_id]['reached_points'] ?? 0;
405 } else {
406 $DIC->logger()->crs()->warning('stale question in course objective assignment table id ' . $question_id);
407 }
408 }
409 if (!$max_points) {
410 return false;
411 }
412 return $reached_points >= $objective_data['tst_limit'];
413 }

References $DIC.

Referenced by _updateObjectiveStatus().

+ Here is the caller graph for this function:

◆ __updatePassed()

static ilCourseObjectiveResult::__updatePassed ( int  $a_user_id,
array  $objective_ids 
)
staticprotected

Definition at line 415 of file class.ilCourseObjectiveResult.php.

415 : void
416 {
417 global $DIC;
418
419 $ilDB = $DIC['ilDB'];
420
421 $passed = array();
422
423 $query = "SELECT COUNT(t1.crs_id) num,t1.crs_id FROM crs_objectives t1 " .
424 "JOIN crs_objectives t2 WHERE t1.crs_id = t2.crs_id and " .
425 $ilDB->in('t1.objective_id', $objective_ids, false, 'integer') . " " .
426 "GROUP BY t1.crs_id";
427 $res = $ilDB->query($query);
428 $crs_ids = array();
429 while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
430 $query = "SELECT COUNT(cs.objective_id) num_passed FROM crs_objective_status cs " .
431 "JOIN crs_objectives co ON cs.objective_id = co.objective_id " .
432 "WHERE crs_id = " . $ilDB->quote($row->crs_id, 'integer') . " " .
433 "AND user_id = " . $ilDB->quote($a_user_id, 'integer') . " ";
434
435 $user_res = $ilDB->query($query);
436 while ($user_row = $user_res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
437 if ((int) $user_row->num_passed === (int) $row->num) {
438 $passed[] = $row->crs_id;
439 }
440 }
441 $crs_ids[(int) $row->crs_id] = (int) $row->crs_id;
442 }
443 if ($passed !== []) {
444 foreach ($passed as $crs_id) {
446 $members->updatePassed($a_user_id, true);
447 }
448 }
449
450 // update tracking status
451 foreach ($crs_ids as $cid) {
452 ilLPStatusWrapper::_updateStatus($cid, $a_user_id);
453 }
454 }
static _getInstanceByObjId(int $a_obj_id)
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)
$res
Definition: ltiservices.php:69
$query

References $DIC, $ilDB, $query, $res, ilCourseParticipants\_getInstanceByObjId(), ilLPStatusWrapper\_updateStatus(), ilDBConstants\FETCHMODE_OBJECT, and ILIAS\Repository\int().

Referenced by _updateObjectiveStatus().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ _getAccomplished()

static ilCourseObjectiveResult::_getAccomplished ( int  $a_user_id,
int  $a_crs_id 
)
static

Definition at line 56 of file class.ilCourseObjectiveResult.php.

56 : array
57 {
58 global $DIC;
59
60 $ilDB = $DIC->database();
61
63 if (!is_array($objectives)) {
64 return array();
65 }
66 $query = "SELECT objective_id FROM crs_objective_status " .
67 "WHERE " . $ilDB->in('objective_id', $objectives, false, 'integer') . ' ' .
68 "AND user_id = " . $ilDB->quote($a_user_id, 'integer') . " ";
69 $res = $ilDB->query($query);
70 $accomplished = [];
71 while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
72 $accomplished[] = (int) $row->objective_id;
73 }
74 return $accomplished;
75 }
static _getObjectiveIds(int $course_id, bool $a_activated_only=false)
$objectives

References $DIC, $ilDB, $objectives, $query, $res, ilCourseObjective\_getObjectiveIds(), ilDBConstants\FETCHMODE_OBJECT, and ILIAS\Repository\int().

Referenced by getAccomplished().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ _getSuggested()

static ilCourseObjectiveResult::_getSuggested ( int  $a_user_id,
int  $a_crs_id,
string  $a_status = self::IL_OBJECTIVE_STATUS_FINAL 
)
static

Definition at line 82 of file class.ilCourseObjectiveResult.php.

86 : array {
87 global $DIC;
88
89 $ilDB = $DIC->database();
90
92 $finished = $suggested = [];
93 if (
94 $a_status == self::IL_OBJECTIVE_STATUS_FINAL ||
95 $a_status == self::IL_OBJECTIVE_STATUS_FINISHED
96 ) {
97 // check finished
98 $query = "SELECT objective_id FROM crs_objective_status " .
99 "WHERE " . $ilDB->in('objective_id', $objectives, false, 'integer') . " " .
100 "AND user_id = " . $ilDB->quote($a_user_id, 'integer') . " ";
101 $res = $ilDB->query($query);
102 while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
103 $finished[] = (int) $row->objective_id;
104 }
105 } else {
106 // Pretest
107 $query = "SELECT objective_id FROM crs_objective_status_p " .
108 "WHERE " . $ilDB->in('objective_id', $objectives, false, 'integer') . ' ' .
109 "AND user_id = " . $ilDB->quote($a_user_id, 'integer');
110 $res = $ilDB->query($query);
111 while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
112 $finished[] = (int) $row->objective_id;
113 }
114 }
115 foreach ($objectives as $objective_id) {
116 if (!in_array($objective_id, $finished)) {
117 $suggested[] = $objective_id;
118 }
119 }
120 return $suggested;
121 }

Referenced by getSuggested(), and ilCourseObjectiveResultCache\readSuggested().

+ Here is the caller graph for this function:

◆ _readAssignedObjectives()

static ilCourseObjectiveResult::_readAssignedObjectives ( array  $a_all_objectives)
static

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

295 : array
296 {
297 global $DIC;
298
299 $ilDB = $DIC['ilDB'];
300
301 // Read necessary points
302 $query = "SELECT t.objective_id obj,t.ref_id ref, question_id,tst_status,tst_limit " .
303 "FROM crs_objective_tst t JOIN crs_objective_qst q " .
304 "ON (t.objective_id = q.objective_id AND t.ref_id = q.ref_id) " .
305 "WHERE " . $ilDB->in('t.objective_id', $a_all_objectives, false, 'integer');
306
307 $res = $ilDB->query($query);
308 $objectives = array();
309 while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
310 $objectives[$row->obj . "_" . $row->tst_status]['questions'][(int) $row->question_id] = (int) $row->question_id;
311 $objectives[$row->obj . "_" . $row->tst_status]['tst_status'] = (int) $row->tst_status;
312 $objectives[$row->obj . "_" . $row->tst_status]['tst_limit'] = (int) $row->tst_limit;
313 $objectives[$row->obj . "_" . $row->tst_status]['objective_id'] = (int) $row->obj;
314 }
315 return $objectives;
316 }

References $DIC, $ilDB, $objectives, $query, $res, ilDBConstants\FETCHMODE_OBJECT, and ILIAS\Repository\int().

Referenced by getStatus(), and readStatus().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ _readAssignedObjectivesOfQuestion()

static ilCourseObjectiveResult::_readAssignedObjectivesOfQuestion ( int  $a_question_id)
static

Definition at line 270 of file class.ilCourseObjectiveResult.php.

270 : array
271 {
272 global $DIC;
273
274 $ilDB = $DIC['ilDB'];
275
276 // get all objtives and questions this current question is assigned to
277 $query = "SELECT q2.question_id qid,q2.objective_id ob FROM crs_objective_qst q1, " .
278 "crs_objective_qst q2 " .
279 "WHERE q1.question_id = " . $ilDB->quote($a_question_id, 'integer') . " " .
280 "AND q1.objective_id = q2.objective_id ";
281
282 $res = $ilDB->query($query);
283 $objectives = array();
284 while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
285 $objectives['all_objectives'][(int) $row->ob] = (int) $row->ob;
286 $objectives['all_questions'][(int) $row->qid] = (int) $row->qid;
287 }
288 if (count($objectives) === 0) {
289 return [];
290 }
291 $objectives['objectives'] = self::_readAssignedObjectives($objectives['all_objectives']);
292 return $objectives;
293 }
static _readAssignedObjectives(array $a_all_objectives)

References $DIC, $ilDB, $objectives, $query, $res, ilDBConstants\FETCHMODE_OBJECT, and ILIAS\Repository\int().

+ Here is the call graph for this function:

◆ _updateObjectiveResult()

static ilCourseObjectiveResult::_updateObjectiveResult ( int  $a_user_id,
int  $a_active_id,
int  $a_question_id 
)
static

Definition at line 259 of file class.ilCourseObjectiveResult.php.

259 : void
260 {
261 // find all objectives this question is assigned to
262 if (!$objectives = self::_readAssignedObjectivesOfQuestion($a_question_id)) {
263 // no objectives found. TODO user has passed a test. After that questions of that test are assigned to an objective.
264 // => User has not passed
265 return;
266 }
268 }
static _updateObjectiveStatus(int $a_user_id, array $objectives)

References $objectives.

Referenced by assQuestion\_setReachedPoints(), and assQuestion\calculateResultsFromSolution().

+ Here is the caller graph for this function:

◆ _updateObjectiveStatus()

static ilCourseObjectiveResult::_updateObjectiveStatus ( int  $a_user_id,
array  $objectives 
)
static

Definition at line 318 of file class.ilCourseObjectiveResult.php.

318 : bool
319 {
320 global $DIC;
321
322 $ilDB = $DIC['ilDB'];
323 $ilUser = $DIC['ilUser'];
324
325 if (
326 !count($objectives['all_questions']) ||
327 !count($objectives['all_objectives'])) {
328 return false;
329 }
330 // Read reachable points
331 $query = "SELECT question_id,points FROM qpl_questions " .
332 "WHERE " . $ilDB->in('question_id', (array) $objectives['all_questions'], false, 'integer');
333 $res = $ilDB->query($query);
334 while ($row = $ilDB->fetchAssoc($res)) {
335 $objectives['all_question_points'][(int) $row['question_id']]['max_points'] = (float) $row['points'];
336 }
337 // Read reached points
338 $query = "SELECT question_fi, MAX(points) as reached FROM tst_test_result " .
339 "JOIN tst_active ON (active_id = active_fi) " .
340 "WHERE user_fi = " . $ilDB->quote($a_user_id, 'integer') . " " .
341 "AND " . $ilDB->in('question_fi', (array) $objectives['all_questions'], false, 'integer') . " " .
342 "GROUP BY question_fi,user_fi";
343 $res = $ilDB->query($query);
344 while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
345 $objectives['all_question_points'][$row->question_fi]['reached_points'] = (float) $row->reached;
346 }
347
348 // Check accomplished
349 $fullfilled = array();
350 $pretest = array();
351 foreach ($objectives['objectives'] as $data) {
352 // objective does not allow to change status
353 if (ilCourseObjectiveResult::__isFullfilled($objectives['all_question_points'], $data)) {
354 // Status 0 means pretest fullfilled, status 1 means final test fullfilled
355 if ($data['tst_status']) {
356 $fullfilled[] = array($data['objective_id'], $ilUser->getId(), $data['tst_status']);
357 } else {
358 $pretest[] = array($data['objective_id'], $ilUser->getId());
359 }
360 }
361 }
362 if ($fullfilled !== []) {
363 foreach ($fullfilled as $fullfilled_arr) {
364 $ilDB->replace(
365 'crs_objective_status',
366 array(
367 'objective_id' => array('integer', $fullfilled_arr[0]),
368 'user_id' => array('integer', $fullfilled_arr[1])
369 ),
370 array(
371 'status' => array('integer', $fullfilled_arr[2])
372 )
373 );
374 }
375 ilCourseObjectiveResult::__updatePassed($a_user_id, $objectives['all_objectives']);
376 }
377 if ($pretest !== []) {
378 foreach ($pretest as $pretest_arr) {
379 $ilDB->replace(
380 'crs_objective_status_p',
381 array(
382 'objective_id' => array('integer', $pretest_arr[0]),
383 'user_id' => array('integer', $pretest_arr[1])
384 ),
385 array()
386 );
387 }
388 }
389 return true;
390 }
static __updatePassed(int $a_user_id, array $objective_ids)
static __isFullfilled(array $question_points, array $objective_data)
$ilUser
Definition: imgupload.php:34

References $data, $DIC, $ilDB, $ilUser, $objectives, $query, $res, __isFullfilled(), __updatePassed(), ilDBConstants\FETCHMODE_OBJECT, and ILIAS\Repository\int().

Referenced by readStatus().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getAccomplished()

ilCourseObjectiveResult::getAccomplished ( int  $a_crs_id)

Definition at line 51 of file class.ilCourseObjectiveResult.php.

51 : array
52 {
53 return ilCourseObjectiveResult::_getAccomplished($this->getUserId(), $a_crs_id);
54 }
static _getAccomplished(int $a_user_id, int $a_crs_id)

References _getAccomplished(), and getUserId().

+ Here is the call graph for this function:

◆ getStatus()

ilCourseObjectiveResult::getStatus ( int  $a_course_id)

Definition at line 202 of file class.ilCourseObjectiveResult.php.

202 : string
203 {
204 $objective_ids = ilCourseObjective::_getObjectiveIds($a_course_id, true);
206 $accomplished = $this->getAccomplished($a_course_id);
207 $suggested = $this->getSuggested($a_course_id);
208
209 if ($objective_ids === []) {
211 }
212
213 if (count($accomplished) == count($objective_ids)) {
215 }
216
217 $all_pretest_answered = false;
218 $all_final_answered = false;
219 foreach ($objectives as $data) {
220 if (assQuestion::_areAnswered($this->getUserId(), $data['questions'])) {
221 if ($data['tst_status']) {
222 $all_final_answered = true;
223 } else {
224 $all_pretest_answered = true;
225 }
226 }
227 }
228 if ($all_final_answered) {
230 }
231 if ($all_pretest_answered && $suggested === []) {
233 } elseif ($all_pretest_answered) {
235 }
237 }
static _areAnswered(int $a_user_id, array $a_question_ids)
Checks if an array of question ids is answered by a user or not.
getSuggested(int $a_crs_id, string $a_status=self::IL_OBJECTIVE_STATUS_FINAL)

References $data, $objectives, assQuestion\_areAnswered(), ilCourseObjective\_getObjectiveIds(), and _readAssignedObjectives().

+ Here is the call graph for this function:

◆ getSuggested()

ilCourseObjectiveResult::getSuggested ( int  $a_crs_id,
string  $a_status = self::IL_OBJECTIVE_STATUS_FINAL 
)

Definition at line 77 of file class.ilCourseObjectiveResult.php.

77 : array
78 {
79 return ilCourseObjectiveResult::_getSuggested($this->getUserId(), $a_crs_id, $a_status);
80 }
static _getSuggested(int $a_user_id, int $a_crs_id, string $a_status=self::IL_OBJECTIVE_STATUS_FINAL)

References _getSuggested(), and getUserId().

+ Here is the call graph for this function:

◆ getSuggestedQuestions()

static ilCourseObjectiveResult::getSuggestedQuestions ( int  $a_usr_id,
int  $a_crs_id 
)
static

Definition at line 123 of file class.ilCourseObjectiveResult.php.

123 : array
124 {
125 $qsts = [];
126 foreach (self::_getSuggested($a_usr_id, $a_crs_id) as $objective_id) {
127 $obj = new ilCourseObjectiveQuestion($objective_id);
128 foreach ($obj->getFinalTestQuestions() as $qst) {
129 $qsts[] = $qst['question_id'];
130 }
131 }
132 return $qsts;
133 }
class ilcourseobjectiveQuestion

◆ getUserId()

ilCourseObjectiveResult::getUserId ( )

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

46 : int
47 {
48 return $this->user_id;
49 }

References $user_id.

Referenced by getAccomplished(), and getSuggested().

+ Here is the caller graph for this function:

◆ hasAccomplishedObjective()

ilCourseObjectiveResult::hasAccomplishedObjective ( int  $a_objective_id)

Definition at line 239 of file class.ilCourseObjectiveResult.php.

239 : bool
240 {
241 $query = "SELECT status FROM crs_objective_status " .
242 "WHERE objective_id = " . $this->db->quote($a_objective_id, 'integer') . " " .
243 "AND user_id = " . $this->db->quote($this->getUserId(), 'integer') . "";
244
245 $res = $this->db->query($query);
246 while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
247 return true;
248 }
249 return false;
250 }

References $query, $res, and ilDBConstants\FETCHMODE_OBJECT.

◆ readStatus()

ilCourseObjectiveResult::readStatus ( int  $a_crs_id)

Definition at line 252 of file class.ilCourseObjectiveResult.php.

252 : void
253 {
254 $objective_ids = ilCourseObjective::_getObjectiveIds($a_crs_id, true);
257 }

References $objectives, ilCourseObjective\_getObjectiveIds(), _readAssignedObjectives(), and _updateObjectiveStatus().

+ Here is the call graph for this function:

◆ reset()

ilCourseObjectiveResult::reset ( int  $a_course_id)

Definition at line 148 of file class.ilCourseObjectiveResult.php.

148 : void
149 {
150 $assignments = ilLOTestAssignments::getInstance($a_course_id);
151 foreach (array_merge(
152 $assignments->getAssignmentsByType(ilLOSettings::TYPE_TEST_INITIAL),
153 $assignments->getAssignmentsByType(ilLOSettings::TYPE_TEST_QUALIFIED)
154 )
155 as $assignment) {
156 $tst = ilObjectFactory::getInstanceByRefId($assignment->getTestRefId(), false);
157 if ($tst instanceof ilObjTest) {
158 global $DIC;
159
160 $lng = $DIC['lng'];
161
162 $participantData = new ilTestParticipantData($this->db, $lng);
163 $participantData->setUserIdsFilter(array($this->getUserId()));
164 $participantData->load($tst->getTestId());
165 $tst->removeTestResults($participantData);
166 }
167 }
168
169 $initial = ilLOSettings::getInstanceByObjId($a_course_id)->getInitialTest();
170 $initial_tst = ilObjectFactory::getInstanceByRefId($initial, false);
171 if ($initial_tst instanceof ilObjTest) {
172 $this->resetTestForUser($initial_tst, $this->getUserId());
173 }
174
175 $qualified = ilLOSettings::getInstanceByObjId($a_course_id)->getQualifiedTest();
176 $qualified_tst = ilObjectFactory::getInstanceByRefId($qualified, false);
177 if ($qualified_tst instanceof ilObjTest) {
178 $this->resetTestForUser($qualified_tst, $this->getUserId());
179 }
180
182
183 if ($objectives !== []) {
184 $query = "DELETE FROM crs_objective_status " .
185 "WHERE " . $this->db->in('objective_id', $objectives, false, 'integer') . ' ' .
186 "AND user_id = " . $this->db->quote($this->getUserId(), 'integer') . " ";
187 $res = $this->db->manipulate($query);
188
189 $query = "DELETE FROM crs_objective_status_p " .
190 "WHERE " . $this->db->in('objective_id', $objectives, false, 'integer') . ' ' .
191 "AND user_id = " . $this->db->quote($this->getUserId(), ilDBConstants::T_INTEGER) . "";
192 $res = $this->db->manipulate($query);
193
194 $query = "DELETE FROM loc_user_results " .
195 "WHERE " . $this->db->in('objective_id', $objectives, false, 'integer') . ' ' .
196 "AND user_id = " . $this->db->quote($this->getUserId(), ilDBConstants::T_INTEGER) . "";
197 }
198 // update/reset LP for course
199 ilLPStatusWrapper::_updateStatus($a_course_id, $this->getUserId());
200 }
resetTestForUser(ilObjTest $a_test, int $a_user_id)
static getInstanceByObjId(int $a_obj_id)
static getInstance(int $a_container_id)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
$lng

References $DIC, $lng, $objectives, $query, $res, ilCourseObjective\_getObjectiveIds(), ilLPStatusWrapper\_updateStatus(), ilLOTestAssignments\getInstance(), ilLOSettings\getInstanceByObjId(), ilObjectFactory\getInstanceByRefId(), ilDBConstants\T_INTEGER, ilLOSettings\TYPE_TEST_INITIAL, and ilLOSettings\TYPE_TEST_QUALIFIED.

+ Here is the call graph for this function:

◆ resetTestForUser()

ilCourseObjectiveResult::resetTestForUser ( ilObjTest  $a_test,
int  $a_user_id 
)
protected

Definition at line 135 of file class.ilCourseObjectiveResult.php.

135 : void
136 {
137 // #15038
138 $test_lp = ilTestLP::getInstance($a_test->getId());
139 $test_lp->resetLPDataForUserIds(array($a_user_id));
140
141 // #15205 - see ilObjTestGUI::confirmDeleteSelectedUserDataObject()
142 $active_id = $a_test->getActiveIdOfUser($a_user_id);
143 if ($active_id) {
144 $a_test->removeTestActives(array($active_id));
145 }
146 }
removeTestActives($activeIds)
getActiveIdOfUser($user_id="", $anonymous_id="")
Gets the active id of a given user.
static getInstance(int $obj_id)

References ilObjTest\getActiveIdOfUser(), ilObject\getId(), ilObjectLP\getInstance(), and ilObjTest\removeTestActives().

+ Here is the call graph for this function:

Field Documentation

◆ $db

ilDBInterface ilCourseObjectiveResult::$db
protected

Definition at line 35 of file class.ilCourseObjectiveResult.php.

◆ $user_id

int ilCourseObjectiveResult::$user_id
private

Definition at line 33 of file class.ilCourseObjectiveResult.php.

Referenced by getUserId().

◆ IL_OBJECTIVE_STATUS_EMPTY

const ilCourseObjectiveResult::IL_OBJECTIVE_STATUS_EMPTY = 'empty'

◆ IL_OBJECTIVE_STATUS_FINAL

const ilCourseObjectiveResult::IL_OBJECTIVE_STATUS_FINAL = 'final'

◆ IL_OBJECTIVE_STATUS_FINISHED

const ilCourseObjectiveResult::IL_OBJECTIVE_STATUS_FINISHED = 'finished'

◆ IL_OBJECTIVE_STATUS_NONE

const ilCourseObjectiveResult::IL_OBJECTIVE_STATUS_NONE = 'none'

◆ IL_OBJECTIVE_STATUS_PRETEST

const ilCourseObjectiveResult::IL_OBJECTIVE_STATUS_PRETEST = 'pretest'

◆ IL_OBJECTIVE_STATUS_PRETEST_NON_SUGGEST

const ilCourseObjectiveResult::IL_OBJECTIVE_STATUS_PRETEST_NON_SUGGEST = 'pretest_non_suggest'

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