19 declare(strict_types=0);
29 $userIds = self::getUserIdsByResultArrayStatus(
38 $userIds = self::getUserIdsByResultArrayStatus($a_obj_id,
'passed');
44 return self::getUserIdsByResultArrayStatus($a_obj_id,
'not_attempted');
49 return self::getUserIdsByResultArrayStatus($a_obj_id,
'failed');
60 foreach ($status_info[
'results'] as $user_data) {
61 if (isset($user_data[$resultArrayStatus]) && $user_data[$resultArrayStatus]) {
62 $user_ids[] = (
int) $user_data[
'user_id'];
81 $status = self::LP_STATUS_NOT_ATTEMPTED_NUM;
83 $res = $this->db->query(
85 SELECT tst_active.active_id, tst_active.tries, count(tst_sequence.active_fi) " . $this->db->quoteIdentifier(
87 ) .
", tst_active.last_finished_pass, 89 (tst_tests.nr_of_tries - 1) = tst_active.last_finished_pass 94 LEFT JOIN tst_sequence 95 ON tst_sequence.active_fi = tst_active.active_id 97 ON tst_tests.test_id = tst_active.test_fi 98 WHERE tst_active.user_fi = {$this->db->quote($a_usr_id, "integer
")} 99 AND tst_active.test_fi = {$this->db->quote(ilObjTestAccess::_getTestIDFromObjectID($a_obj_id), ilDBConstants::T_INTEGER)} 100 GROUP BY tst_active.active_id, tst_active.tries, is_last_pass 105 ($rec = $this->db->fetchAssoc(
$res))
106 && $rec[
'sequences'] > 0
108 $test_obj =
new ilObjTest($a_obj_id,
false);
112 $is_finished =
false;
113 if ($rec[
'last_finished_pass'] !==
null && $rec[
'sequences'] - 1 === $rec[
'last_finished_pass']) {
121 $status = self::LP_STATUS_IN_PROGRESS_NUM;
123 if ($rec[
'last_finished_pass'] !==
null) {
129 if ($old_status !==
null 130 && $old_status !== self::LP_STATUS_NOT_ATTEMPTED_NUM
131 && $status === self::LP_STATUS_IN_PROGRESS_NUM) {
142 $status = self::LP_STATUS_IN_PROGRESS_NUM;
153 $status = self::LP_STATUS_FAILED_NUM;
156 $status = self::LP_STATUS_COMPLETED_NUM;
165 ?
object $a_obj =
null 167 $set = $this->db->query(
168 "SELECT tst_result_cache.*, tst_active.user_fi FROM " .
169 "tst_result_cache JOIN tst_active ON (tst_active.active_id = tst_result_cache.active_fi)" .
170 " JOIN tst_tests ON (tst_tests.test_id = tst_active.test_fi) " .
171 " WHERE tst_tests.obj_fi = " . $this->db->quote(
175 " AND tst_active.user_fi = " . $this->db->quote(
181 if ($rec = $this->db->fetchAssoc($set)) {
182 if ($rec[
"max_points"] > 0) {
185 100 / $rec[
"max_points"] * $rec[
"reached_points"]
determineStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null)
static _getFailed(int $a_obj_id)
static _getStatusInfo(int $a_obj_id)
Reads informations about the object e.g test results, tlt, number of visits.
static _isPassed($user_id, $a_obj_id)
Returns TRUE if the user with the user id $user_id passed the test with the object id $a_obj_id...
determineLpStatus(bool $passed)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getUserIdsByResultArrayStatus( $objId, $resultArrayStatus)
static _getInProgress(int $a_obj_id)
static _getCompleted(int $a_obj_id)
determinePercentage(int $a_obj_id, int $a_usr_id, ?object $a_obj=null)
determineStatusForScoreLastPassTests(bool $is_finished, bool $passed)
static _getStatusInfo(int $a_obj_id)
static _getPassedUsers($a_obj_id)
Returns an array containing the users who passed the test.
static _lookupStatus(int $a_obj_id, int $a_user_id, bool $a_create=true)
Lookup status.
static _getNotAttempted(int $a_obj_id)