19 declare(strict_types=1);
65 $query =
'SELECT * FROM lti_consumer_grades' 66 .
' WHERE obj_id = ' . $DIC->database()->quote($objId,
'integer');
69 $query .=
' AND usr_id = ' . $DIC->database()->quote($usrID,
'integer');
72 if ($activity_progress != null) {
73 $query .=
' AND activity_progress = ' . $DIC->database()->quote($activity_progress,
'text');
76 if ($grading_progress != null) {
77 $query .=
' AND grading_progress = ' . $DIC->database()->quote($grading_progress,
'text');
81 $query .=
' AND lti_timestamp >= ' . $DIC->database()->quote($startDate->get(
IL_CAL_DATETIME),
'timestamp');
85 $query .=
' AND lti_timestamp <= ' . $DIC->database()->quote($endDate->get(
IL_CAL_DATETIME),
'timestamp');
88 $query .=
' ORDER BY lti_timestamp DESC';
94 while ($row = $DIC->database()->fetchAssoc(
$res)) {
static getGradesForObject(int $objId, ?int $usrID=null, ?string $activity_progress=null, ?string $grading_progress=null, ?ilDateTime $startDate=null, ?ilDateTime $endDate=null)