19 $this->mode = self::MODE_BY_USER;
22 $this->
setId(
"exc_part");
26 if (trim(
$name[
"login"])) {
30 $name[
"lastname"] .
", " .
$name[
"firstname"] .
" [" .
$name[
"login"] .
"]");
52 if (!$ilAccess->checkAccessOfUser($this->user->getId(),
"read",
"", $this->exc->getRefId()) &&
53 is_array($info = $ilAccess->getInfo())) {
54 $this->
setDescription(
'<span class="warning">' . $info[0][
'text'] .
'</span>');
61 $member_status = $ass->getMemberStatus($this->
user->getId());
64 if ($this->filter[
"status"] &&
65 $member_status->getStatus() != $this->filter[
"status"]) {
70 $idl = $ass->getIndividualDeadlines();
72 if ($this->filter[
"subm"]) {
73 if ($this->filter[
"subm"] ==
"y" &&
74 !$submission->getLastSubmission()) {
76 } elseif ($this->filter[
"subm"] ==
"n" &&
77 $submission->getLastSubmission()) {
84 "submission_obj" => $submission,
85 "name" => $ass->getTitle(),
86 "status" => $member_status->getStatus(),
87 "mark" => $member_status->getMark(),
88 "sent_time" => $member_status->getSentTime(),
89 "status_time" => $member_status->getStatusTime(),
90 "feedback_time" => $member_status->getFeedbackTime(),
91 "submission" => $submission->getLastSubmission(),
92 "notice" => $member_status->getNotice(),
93 "comment" => $member_status->getComment(),
94 "order_nr" => $ass->getOrderNr()
97 if ($ass->hasTeam()) {
100 $row[
"team"] = array();
101 foreach ($submission->getTeam()->getMembers() as $user_id) {
106 $team_id = $team_map[$this->
user->getId()];
107 if (is_numeric($team_id)) {
108 $idl_team_id =
"t" . $team_id;
109 if (array_key_exists($idl_team_id, $idl)) {
110 $row[
"idl"] = $idl[$idl_team_id];
114 if (array_key_exists($this->
user->getId(), $idl)) {
115 $row[
"idl"] = $idl[$this->
user->getId()];
129 $cols[
"name"] = array($this->lng->txt(
"exc_assignment"),
"order_nr");
130 $cols[
"team_members"] = array($this->lng->txt(
"exc_tbl_team"));
131 $cols[
"idl"] = array($this->lng->txt(
"exc_tbl_individual_deadline"),
"idl");
139 $ilCtrl->setParameter($this->parent_obj,
"member_id", $this->
user->getId());
140 $ilCtrl->setParameter($this->parent_obj,
"ass_id", $a_item[
"ass"]->
getId());
143 $this->tpl->setVariable(
"NAME_ID",
"ass");
144 $this->tpl->setVariable(
"VAL_ID", $a_item[
"ass"]->
getId());
146 $this->
parseRow($this->
user->getId(), $a_item[
"ass"], $a_item);
148 $ilCtrl->setParameter($this->parent_obj,
"ass_id",
"");
149 $ilCtrl->setParameter($this->parent_obj,
"member_id", $this->
user->getId());
157 if (in_array($a_field, [
"order_nr"])) {
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
static _lookupName($a_user_id)
lookup user name
setDescription($a_val)
Set description.
static getAssignmentTeamMap($a_ass_id)
Get team structure for assignment.
numericOrdering($a_field)
static _lookupFullname($a_user_id)
Lookup Full Name.
Exercise participant table.
getParentCmd()
Get parent command.
getParentObject()
Get parent object.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
setSelectAllCheckbox($a_select_all_checkbox, $a_select_all_on_top=false)
Set the name of the checkbox that should be toggled with a select all button.
static getInstancesByExercise($a_exc_id)
Exercise submission table.
parseRow($a_user_id, ilExAssignment $a_ass, array $a_row)
Exercise submission //TODO: This class has to much static methods related to delivered "files"...