50 $this->db = $DIC->database();
51 $this->ass_id = $a_ass_id;
52 $this->user_id = $a_user_id;
59 $this->notice = $a_value;
71 $this->returned_update =
true;
73 $this->returned = $a_value;
86 $this->solved = $a_value;
100 $this->status_time = $a_value;
110 if ($a_value && $a_value != $this->sent) {
113 $this->sent = $a_value;
124 $this->sent_time = $a_value;
134 if ($a_value != $this->sent) {
137 $this->feedback = $a_value;
148 $this->feedback_time = $a_value;
158 if ($a_value != $this->status) {
160 $this->status = $a_value;
161 $this->status_update =
true;
170 public function setMark(
string $a_value): void
172 if ($a_value != $this->mark) {
175 $this->mark = $a_value;
193 protected function read(): void
197 $set =
$ilDB->query(
"SELECT * FROM exc_mem_ass_status" .
198 " WHERE ass_id = " .
$ilDB->quote($this->ass_id,
"integer") .
199 " AND usr_id = " .
$ilDB->quote($this->user_id,
"integer"));
200 if (
$ilDB->numRows($set)) {
201 $row =
$ilDB->fetchAssoc($set);
204 $this->notice = (string) $row[
"notice"];
205 $this->returned = (bool) $row[
"returned"];
206 $this->solved = (bool) $row[
"solved"];
207 $this->status_time = (string) $row[
"status_time"];
208 $this->sent = (bool) $row[
"sent"];
209 $this->sent_time = (string) $row[
"sent_time"];
210 $this->feedback_time = (string) $row[
"feedback_time"];
211 $this->feedback = (bool) $row[
"feedback"];
212 $this->status = (string) $row[
"status"];
213 $this->mark = (string) $row[
"mark"];
214 $this->
comment = (string) $row[
"u_comment"];
215 $this->db_exists =
true;
222 "notice" => array(
"text", $this->
getNotice())
223 ,
"returned" => array(
"integer", (
int) $this->
getReturned())
224 ,
"solved" => array(
"integer", $this->
getSolved())
226 ,
"sent" => array(
"integer", $this->
getSent())
227 ,
"sent_time" => array(
"timestamp", $this->
getSentTime())
229 ,
"feedback" => array(
"integer", (
int) $this->
getFeedback())
230 ,
"status" => array(
"text", $this->
getStatus())
231 ,
"mark" => array(
"text", $this->
getMark())
232 ,
"u_comment" => array(
"text", $this->
getComment())
244 "ass_id" => array(
"integer", $this->ass_id)
245 ,
"usr_id" => array(
"integer", $this->user_id)
248 if (!$this->db_exists) {
249 $fields = array_merge(
$keys, $fields);
250 $ilDB->insert(
"exc_mem_ass_status", $fields);
252 $ilDB->update(
"exc_mem_ass_status", $fields,
$keys);
255 if ($this->returned_update) {
258 if ($this->status_update) {
271 $set =
$ilDB->query(
"SELECT fb_cron, fb_date, fb_file" .
272 " FROM exc_assignment" .
273 " WHERE id = " .
$ilDB->quote($this->ass_id,
"integer"));
274 $row =
$ilDB->fetchAssoc($set);
275 if ($row[
"fb_cron"] &&
299 return "scorm/passed.svg";
302 return "scorm/failed.svg";
305 return "scorm/not_attempted.svg";
314 $ilDB = $DIC->database();
316 $q =
"SELECT count(*) AS cnt" .
317 " FROM exc_mem_ass_status" .
318 " WHERE NOT sent_time IS NULL" .
319 " AND ass_id = " .
$ilDB->quote($a_ass_id,
"integer");
320 $set =
$ilDB->query($q);
321 $rec =
$ilDB->fetchAssoc($set);
322 return ($rec[
"cnt"] > 0);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const FEEDBACK_DATE_SUBMISSION
static now()
Return current timestamp in Y-m-d H:i:s format.
updateUserStatus(int $a_user_id=0)
Update exercise status of user.
setReturned(bool $a_value)
setFeedbackTime(string $a_value)
setFeedback(bool $a_value)
__construct(int $a_ass_id, int $a_user_id)
static lookupAnyExerciseSent(int $a_ass_id)
setSentTime(string $a_value)
setStatusTime(string $a_value)
setComment(string $a_value)
setNotice(string $a_value)
setStatus(string $a_value)
static sendFeedbackNotifications(int $a_ass_id, int $a_user_id=null)