69 public function __construct(
int $a_id = 0,
bool $a_call_by_reference =
true)
74 $this->db = $DIC->database();
75 $this->app_event_handler = $DIC[
"ilAppEventHandler"];
76 $this->
lng = $DIC->language();
77 $this->
user = $DIC->user();
80 $this->webFilesystem = $DIC->filesystem()->web();
81 $this->service = $DIC->exercise()->internal();
84 $this->mandatory_manager = $this->service->domain()->assignment()->mandatoryAssignments($this);
90 public function setId(
int $a_id): void
94 $this->mandatory_manager = $this->service->domain()->assignment()->mandatoryAssignments($this);
104 $this->hour = $a_hour;
105 $this->minutes = $a_minutes;
107 $this->month = $a_month;
108 $this->year = $a_year;
109 $this->timestamp = mktime($this->hour, $this->minutes, 0, $this->month, $this->day, $this->year);
120 $this->timestamp = $a_timestamp;
124 string $a_instruction
126 $this->instruction = $a_instruction;
139 $this->pass_mode = $a_val;
152 $this->pass_nr = $a_val;
165 $this->show_submissions = $a_val;
178 $this->nr_random_mand = $a_val;
188 return $this->hour == (
int) date(
"H", $this->timestamp) and
189 $this->minutes == (
int) date(
"i", $this->timestamp) and
190 $this->day == (
int) date(
"d", $this->timestamp) and
191 $this->month == (
int) date(
"m", $this->timestamp) and
192 $this->year == (
int) date(
"Y", $this->timestamp);
197 return $this->tutor_feedback & self::TUTOR_FEEDBACK_TEXT;
202 return $this->tutor_feedback & self::TUTOR_FEEDBACK_MAIL;
207 return $this->tutor_feedback & self::TUTOR_FEEDBACK_FILE;
217 $this->tutor_feedback = $a_value;
224 $ilDB->insert(
"exc_data", array(
225 "obj_id" => array(
"integer", $this->
getId()),
227 "time_stamp" => array(
"integer", $this->
getTimestamp()),
228 "pass_mode" => array(
"text", $this->
getPassMode()),
230 "pass_nr" => array(
"text", $this->
getPassNr()),
248 public function cloneObject(
int $a_target_id,
int $a_copy_id = 0,
bool $a_omit_tree =
false): ?
ilObject 254 $new_obj = parent::cloneObject($a_target_id, $a_copy_id, $a_omit_tree);
259 $new_obj->saveData();
270 $crit_cat_map = array();
272 $new_id = $crit_cat->cloneObject($new_obj->getId());
273 $crit_cat_map[$crit_cat->getId()] = $new_id;
281 $obj_settings->cloneSettings($new_obj->getId());
282 unset($obj_settings);
291 $this->webFilesystem,
296 $cloneAction->cloneCertificate($this, $new_obj);
308 $orgu_object_settings->update();
316 public function delete():
bool 322 if (!parent::delete()) {
328 $ass->delete($this,
false);
336 $ilDB->manipulate(
"DELETE FROM exc_data " .
337 "WHERE obj_id = " .
$ilDB->quote($this->getId(),
"integer"));
346 $ilAppEventHandler->raise(
349 array(
'obj_id' => $this->
getId())
365 $query =
"SELECT * FROM exc_data " .
366 "WHERE obj_id = " .
$ilDB->quote($this->
getId(),
"integer");
369 while ($row =
$ilDB->fetchObject(
$res)) {
372 $pm = ($row->pass_mode ==
"")
375 $this->setPassMode((
string) $pm);
377 if ($row->pass_mode ==
"nr") {
398 $ilDB->update(
"exc_data", array(
400 "time_stamp" => array(
"integer", $this->
getTimestamp()),
401 "pass_mode" => array(
"text", $this->
getPassMode()),
402 "pass_nr" => array(
"integer", $this->
getPassNr()),
408 "obj_id" => array(
"integer", $this->
getId())
424 public function sendAssignment(
ilExAssignment $a_ass, array $a_members):
void 442 $body .=
$lng->
txt(
"exc_edit_until") .
": ";
444 ?
$lng->
txt(
"exc_no_deadline_specified")
452 $file_names = array();
458 foreach ($files as $file) {
459 $mfile_obj->copyAttachmentFile($file[
"fullpath"], $file[
"name"]);
460 $file_names[] = $file[
"name"];
465 $recipients = array();
466 foreach ($a_members as $member_id) {
469 $recipients[] = $tmp_obj->getLogin();
472 $recipients = implode(
",", $recipients);
476 $tmp_mail_obj->enqueue(
484 unset($tmp_mail_obj);
487 if (count($file_names) && $mfile_obj) {
488 $mfile_obj->unlinkFiles($file_names);
493 foreach ($a_members as $member_id) {
495 $member_status->setSent(
true);
496 $member_status->update();
504 public function determinStatusOfUser(
int $a_user_id = 0): array
510 if ($a_user_id == 0) {
516 $passed_all_mandatory =
true;
517 $failed_a_mandatory =
false;
522 foreach ($ass as
$a) {
523 $stat = $a->getMemberStatus($a_user_id)->getStatus();
525 if ($mandatory && ($stat ==
"failed" || $stat ==
"notgraded")) {
526 $passed_all_mandatory =
false;
528 if ($mandatory && ($stat ==
"failed")) {
529 $failed_a_mandatory =
true;
531 if ($stat ==
"passed") {
534 if ($stat ==
"notgraded") {
539 if (count($ass) == 0) {
540 $passed_all_mandatory =
false;
542 $overall_stat =
"notgraded";
544 $overall_stat =
"notgraded";
545 if ($failed_a_mandatory) {
546 $overall_stat =
"failed";
547 } elseif ($passed_all_mandatory && $cnt_passed > 0) {
548 $overall_stat =
"passed";
550 } elseif ($this->
getPassMode() == self::PASS_MODE_NR) {
552 $overall_stat =
"notgraded";
553 if ($failed_a_mandatory || ($cnt_passed + $cnt_notgraded < $min_nr)) {
554 $overall_stat =
"failed";
555 } elseif ($passed_all_mandatory && $cnt_passed >= $min_nr) {
556 $overall_stat =
"passed";
558 } elseif ($this->
getPassMode() == self::PASS_MODE_RANDOM) {
559 $overall_stat =
"notgraded";
560 if ($failed_a_mandatory) {
561 $overall_stat =
"failed";
562 } elseif ($passed_all_mandatory && $cnt_passed > 0) {
563 $overall_stat =
"passed";
568 "overall_status" => $overall_stat,
569 "failed_a_mandatory" => $failed_a_mandatory);
580 if ($a_user_id == 0) {
584 $st = $this->determinStatusOfUser($a_user_id);
589 $st[
"overall_status"]
599 if (!isset($this->members_obj)) {
603 $mems = $this->members_obj->getMembers();
604 foreach ($mems as $mem) {
619 $excel->addSheet($this->
lng->txt(
"exc_status"));
627 $excel->setCell($row, 0, $this->
lng->txt(
"name"));
628 foreach ($ass_data as $ass) {
629 $excel->setCell($row, $cnt++, ($cnt / 2) .
" - " . $this->
lng->txt(
"exc_tbl_status"));
630 $excel->setCell($row, $cnt++, (($cnt - 1) / 2) .
" - " . $this->
lng->txt(
"exc_tbl_mark"));
632 $excel->setCell($row, $cnt++, $this->
lng->txt(
"exc_total_exc"));
633 $excel->setCell($row, $cnt++, $this->
lng->txt(
"exc_mark"));
634 $excel->setCell($row++, $cnt, $this->
lng->txt(
"exc_comment_for_learner"));
635 $excel->setBold(
"A1:" . $excel->getColumnCoord($cnt) .
"1");
640 $filtered_members =
$GLOBALS[
'DIC']->access()->filterUserIdsByRbacOrPositionOfCurrentUser(
641 'edit_submissions_grades',
642 'edit_submissions_grades',
644 $mem_obj->getMembers()
647 foreach ((array) $filtered_members as $user_id) {
652 foreach ($mems as $user_id =>
$d) {
656 $excel->setCell($row, $col++,
$d[
"lastname"] .
", " .
$d[
"firstname"] .
" [" .
$d[
"login"] .
"]");
659 foreach ($ass_data as $ass) {
660 $status = $ass->getMemberStatus($user_id)->getStatus();
661 $mark = $ass->getMemberStatus($user_id)->getMark();
662 $excel->setCell($row, $col++, $this->
lng->txt(
"exc_" . $status));
663 $excel->setCell($row, $col++, $mark);
668 $excel->setCell($row, $col++, $this->
lng->txt(
"exc_" . $status));
672 $excel->setCell($row, $col++, $marks_obj->getMark());
673 $excel->setCell($row++, $col, $marks_obj->getComment());
681 $excel->addSheet($this->
lng->txt(
"exc_mark"));
685 $excel->setCell($row, 0, $this->
lng->txt(
"name"));
686 foreach ($ass_data as $ass) {
687 $excel->setCell($row, $cnt++, $cnt - 1);
689 $excel->setCell($row++, $cnt++, $this->
lng->txt(
"exc_total_exc"));
690 $excel->setBold(
"A1:" . $excel->getColumnCoord($cnt) .
"1");
694 foreach ($mems as $user_id =>
$d) {
699 $excel->setCell($row, $col++,
$d[
"lastname"] .
", " .
$d[
"firstname"] .
" [" .
$d[
"login"] .
"]");
702 foreach ($ass_data as $ass) {
703 $excel->setCell($row, $col++, $ass->getMemberStatus($user_id)->getMark());
711 $excel->sendToClient($exc_name);
716 string $a_feedback_file,
719 bool $a_is_text_feedback =
false 721 $type = $a_is_text_feedback
726 $not->setType(
$type);
727 $not->setAssignmentId($a_ass_id);
728 $not->setObjId($this->
getId());
732 $not->setRecipients($user_ids);
745 $this->completion_by_submission = $bool;
756 bool $a_has_submitted,
757 array $a_valid_submissions = null
759 foreach ($a_user_ids as $user_id) {
761 $member_status->setReturned($a_has_submitted);
762 $member_status->update();
769 foreach ($a_user_ids as $user_id) {
770 $status =
'notgraded';
771 if ($a_has_submitted) {
772 if (!is_array($a_valid_submissions) ||
773 $a_valid_submissions[$user_id]) {
779 $member_status->setStatus($status);
780 $member_status->update();
794 $ilDB = $DIC->database();
796 $set =
$ilDB->query(
"SELECT obj_id, status FROM exc_members" .
797 " WHERE usr_id = " .
$ilDB->quote($a_user_id,
"integer") .
798 " AND (status = " .
$ilDB->quote(
"passed",
"text") .
799 " OR status = " .
$ilDB->quote(
"failed",
"text") .
")");
802 while ($row =
$ilDB->fetchAssoc($set)) {
803 $all[$row[
"obj_id"]] = ($row[
"status"] ==
"passed");
814 return (strlen($this->certificate_visibility) !== 0) ? $this->certificate_visibility : 0;
822 $this->certificate_visibility = $a_value;
834 "UPDATE exc_data SET certificate_visibility = %s WHERE obj_id = %s",
835 array(
'integer',
'integer'),
836 array($a_value, $this->
getId())
static _writeStatus(int $a_obj_id, int $a_user_id, string $a_status)
Write user status This information is determined by the assignment status and saved redundantly in th...
static cloneAssignmentsOfExercise(int $a_old_exc_id, int $a_new_exc_id, array $a_crit_cat_map)
Clone assignments of exercise.
setActive(bool $a_status)
Set active for object.
isMandatoryForUser(int $ass_id, int $user_id)
static _writeReturned(int $a_obj_id, int $a_user_id, int $a_status)
Write returned status.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
MandatoryAssignmentsManager $mandatory_manager
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
getCertificateVisibility()
setCompletionBySubmission(bool $bool)
__construct(int $id=0, bool $reference=true)
This class handles all operations on files (attachments) in directory ilias_data/mail.
Filesystem $webFilesystem
setPassMode(string $a_val)
getMemberStatus(?int $a_user_id=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
sendFeedbackFileNotification(string $a_feedback_file, array $user_ids, int $a_ass_id, bool $a_is_text_feedback=false)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
int $certificate_visibility
static _lookupName(int $a_user_id)
lookup user name
Exercise internal service.
static getInstancesByParentId(int $a_parent_id)
setTimestamp(int $a_timestamp)
loadLanguageModule(string $a_module)
Load language module.
const TYPE_FEEDBACK_TEXT_ADDED
setCertificateVisibility(int $a_value)
const TYPE_FEEDBACK_FILE_ADDED
static getASCIIFilename(string $a_filename)
const TUTOR_FEEDBACK_FILE
const TUTOR_FEEDBACK_TEXT
updateAllUsersStatus()
Update status of all users.
ilAppEventHandler $app_event_handler
static getAssignmentDataOfExercise(int $a_exc_id)
updateUserStatus(int $a_user_id=0)
Update exercise status of user.
const TUTOR_FEEDBACK_MAIL
static _lookupFinishedUserExercises(int $a_user_id)
Get all finished exercises for user.
ilExerciseMembers $members_obj
processExerciseStatus(ilExAssignment $a_ass, array $a_user_ids, bool $a_has_submitted, array $a_valid_submissions=null)
saveCertificateVisibility(int $a_value)
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
static _lookupStatus(int $a_obj_id, int $a_user_id)
Lookup current status (notgraded|passed|failed)
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
const TYPE_EXERCISE_SUBMISSION
static _writeContainerSetting(int $a_id, string $a_keyword, string $a_value)
static getInstancesByExercise(int $a_exc_id)
isCompletionBySubmissionEnabled()
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
static _lookupMark(int $a_usr_id, int $a_obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
bool $completion_by_submission
setNrMandatoryRandom(int $a_val)
setShowSubmissions(bool $a_val)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
static removeForObject(int $type, int $id)
Remove all notifications for given object.
exportGradesExcel()
Exports grades as excel.
Manages random mandatory assignments of an exercise.
setInstruction(string $a_instruction)
setDate(int $a_hour, int $a_minutes, int $a_day, int $a_month, int $a_year)
static _getContainerSettings(int $a_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class FlySystemFileAccessTest disabled disabled disabled.
for($i=6; $i< 13; $i++) for($i=1; $i< 13; $i++) $d
setTutorFeedback(int $a_value)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)