27 protected \ILIAS\Exercise\Assignment\DomainService
$ass_domain;
51 $this->db = $DIC->database();
52 $this->ass_id = $a_ass_id;
53 $this->user_id = $a_user_id;
56 $this->ass_domain = $DIC->exercise()->internal()->domain()->assignment();
61 $this->notice = $a_value;
73 $this->returned_update =
true;
75 $this->returned = $a_value;
88 $this->solved = $a_value;
102 $this->status_time = $a_value;
112 if ($a_value && $a_value != $this->sent) {
115 $this->sent = $a_value;
126 $this->sent_time = $a_value;
136 if ($a_value != $this->sent) {
139 $this->feedback = $a_value;
150 $this->feedback_time = $a_value;
160 if ($a_value != $this->status) {
162 $this->status = $a_value;
163 $this->status_update =
true;
172 public function setMark(
string $a_value): void
174 if ($a_value != $this->mark) {
177 $this->mark = $a_value;
195 protected function read(): void
199 $set =
$ilDB->query(
"SELECT * FROM exc_mem_ass_status" .
200 " WHERE ass_id = " .
$ilDB->quote($this->ass_id,
"integer") .
201 " AND usr_id = " .
$ilDB->quote($this->user_id,
"integer"));
202 if (
$ilDB->numRows($set)) {
203 $row =
$ilDB->fetchAssoc($set);
206 $this->notice = (string) $row[
"notice"];
207 $this->returned = (bool) $row[
"returned"];
208 $this->solved = (bool) $row[
"solved"];
209 $this->status_time = (string) $row[
"status_time"];
210 $this->sent = (bool) $row[
"sent"];
211 $this->sent_time = (string) $row[
"sent_time"];
212 $this->feedback_time = (string) $row[
"feedback_time"];
213 $this->feedback = (bool) $row[
"feedback"];
214 $this->status = (string) $row[
"status"];
215 $this->mark = (string) $row[
"mark"];
216 $this->
comment = (string) $row[
"u_comment"];
217 $this->db_exists =
true;
224 "notice" => array(
"text", $this->
getNotice())
225 ,
"returned" => array(
"integer", (
int) $this->
getReturned())
226 ,
"solved" => array(
"integer", $this->
getSolved())
228 ,
"sent" => array(
"integer", $this->
getSent())
229 ,
"sent_time" => array(
"timestamp", $this->
getSentTime())
231 ,
"feedback" => array(
"integer", (
int) $this->
getFeedback())
232 ,
"status" => array(
"text", $this->
getStatus())
233 ,
"mark" => array(
"text", $this->
getMark())
234 ,
"u_comment" => array(
"text", $this->
getComment())
246 "ass_id" => array(
"integer", $this->ass_id)
247 ,
"usr_id" => array(
"integer", $this->user_id)
250 if (!$this->db_exists) {
251 $fields = array_merge($keys, $fields);
252 $ilDB->insert(
"exc_mem_ass_status", $fields);
253 $this->ass_domain->tutorFeedbackFile($this->ass_id)->createCollection($this->user_id);
255 $ilDB->update(
"exc_mem_ass_status", $fields, $keys);
258 if ($this->returned_update) {
261 if ($this->status_update) {
274 $set =
$ilDB->query(
"SELECT fb_cron, fb_date, fb_file" .
275 " FROM exc_assignment" .
276 " WHERE id = " .
$ilDB->quote($this->ass_id,
"integer"));
277 $row =
$ilDB->fetchAssoc($set);
278 if ($row[
"fb_cron"] &&
302 return "scorm/passed.svg";
305 return "scorm/failed.svg";
308 return "scorm/not_attempted.svg";
317 $ilDB = $DIC->database();
319 $q =
"SELECT count(*) AS cnt" .
320 " FROM exc_mem_ass_status" .
321 " WHERE NOT sent_time IS NULL" .
322 " AND ass_id = " .
$ilDB->quote($a_ass_id,
"integer");
324 $rec =
$ilDB->fetchAssoc($set);
325 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.
static sendFeedbackNotifications(int $a_ass_id, ?int $a_user_id=null)
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)
ILIAS Exercise Assignment DomainService $ass_domain
setSentTime(string $a_value)
setStatusTime(string $a_value)
setComment(string $a_value)
setNotice(string $a_value)
setStatus(string $a_value)