41 protected array
$cols_default = array(
"login",
"submission",
"idl",
"calc_deadline");
42 protected array
$cols_order = array(
"image",
"name",
"login",
"team_members",
43 "sent_time",
"submission",
"calc_deadline",
"idl",
"status",
"mark",
"status_time",
44 "feedback_time",
"comment",
"notice");
60 $this->ui_factory = $DIC->ui()->factory();
61 $this->ui_renderer = $DIC->ui()->renderer();
63 $this->
ctrl = $DIC->ctrl();
64 $this->
access = $DIC->access();
65 $this->tpl = $DIC[
"tpl"];
66 $this->
lng = $DIC->language();
68 $ilCtrl = $DIC->ctrl();
79 $this->
setRowTemplate(
"tpl.exc_members_row.html",
"Modules/Exercise");
82 if ($this->mode == self::MODE_BY_ASSIGNMENT) {
94 foreach ($this->cols_order as
$id) {
95 if (in_array($id, $this->cols_mandatory) ||
96 in_array($id, $selected)) {
97 if (array_key_exists($id, $columns)) {
113 $this->
addMultiCommand(
"compareTextAssignments", $this->
lng->txt(
"exc_compare_submissions"));
119 if ($this->mode == self::MODE_BY_ASSIGNMENT &&
120 $this->ass->hasActiveIDl() &&
121 !$this->ass->hasReadOnlyIDl()) {
122 $this->
addMultiCommand(
"setIndividualDeadline", $this->
lng->txt(
"exc_individual_deadline_action"));
125 if ($this->exc->hasTutorFeedbackMail() &&
126 $this->mode == self::MODE_BY_ASSIGNMENT) {
127 $this->
addMultiCommand(
"redirectFeedbackMail", $this->
lng->txt(
"exc_tbl_action_feedback_mail"));
132 if ($this->mode == self::MODE_BY_ASSIGNMENT &&
134 $this->ass->hasTeam()) {
139 if ($this->mode == self::MODE_BY_ASSIGNMENT) {
140 $this->
addMultiCommand(
"confirmDeassignMembers", $this->
lng->txt(
"exc_deassign_members"));
152 if ($this->mode == self::MODE_BY_ASSIGNMENT) {
154 $this->
filter[
"name"] = $item->getValue();
157 $this->
lng->loadLanguageModule(
"search");
159 "" => $this->
lng->txt(
"search_any"),
160 "notgraded" => $this->
lng->txt(
"exc_notgraded"),
161 "passed" => $this->
lng->txt(
"exc_passed"),
162 "failed" => $this->
lng->txt(
"exc_failed")
165 $item->setOptions($options);
166 $this->
filter[
"status"] = $item->getValue();
169 "" => $this->
lng->txt(
"search_any"),
170 "y" => $this->
lng->txt(
"exc_tbl_filter_has_submission"),
171 "n" => $this->
lng->txt(
"exc_tbl_filter_has_no_submission")
174 $item->setOptions($options);
175 $this->
filter[
"subm"] = $item->getValue();
178 abstract protected function initMode(
int $a_item_id): void;
180 abstract protected function parseData(): array;
189 foreach ($this->cols_order as
$id) {
190 if (in_array($id, $this->cols_mandatory)) {
194 if (array_key_exists($id, $columns)) {
195 $col = $columns[
$id];
199 "default" => in_array($id, $this->cols_default)
210 $cols[
"submission"] = array($this->
lng->txt(
"exc_tbl_submission_date"),
"submission");
212 $cols[
"status"] = array($this->
lng->txt(
"exc_tbl_status"),
"status");
213 $cols[
"mark"] = array($this->
lng->txt(
"exc_tbl_mark"),
"mark");
214 $cols[
"status_time"] = array($this->
lng->txt(
"exc_tbl_status_time"),
"status_time");
216 $cols[
"sent_time"] = array($this->
lng->txt(
"exc_tbl_sent_time"),
"sent_time");
218 if ($this->exc->hasTutorFeedbackText() ||
219 $this->exc->hasTutorFeedbackMail() ||
220 $this->exc->hasTutorFeedbackFile()) {
221 $cols[
"feedback_time"] = array($this->
lng->txt(
"exc_tbl_feedback_time"),
"feedback_time");
224 if ($this->exc->hasTutorFeedbackText()) {
225 $cols[
"comment"] = array($this->
lng->txt(
"exc_tbl_comment"),
"comment");
228 $cols[
"notice"] = array($this->
lng->txt(
"exc_tbl_notice"),
"notice");
238 protected function parseRow(
246 $has_no_team_yet = ($a_ass->
hasTeam() &&
252 if ($this->mode == self::MODE_BY_ASSIGNMENT) {
254 $this->tpl->setVariable(
"VAL_NAME", $a_row[
"name"]);
257 if (!$ilAccess->checkAccessOfUser($a_user_id,
"read",
"", $this->exc->getRefId()) &&
258 is_array($info = $ilAccess->getInfo())) {
259 $this->tpl->setCurrentBlock(
'access_warning');
260 $this->tpl->setVariable(
'PARENT_ACCESS', $info[0][
"text"]);
261 $this->tpl->parseCurrentBlock();
264 asort($a_row[
"team"]);
265 foreach ($a_row[
"team"] as $team_member_id => $team_member_name) {
266 if (count($a_row[
"team"]) > 1) {
267 $ilCtrl->setParameterByClass(
"ilExSubmissionTeamGUI",
"id", $team_member_id);
268 $url = $ilCtrl->getLinkTargetByClass(
"ilExSubmissionTeamGUI",
"confirmRemoveTeamMember");
269 $ilCtrl->setParameterByClass(
"ilExSubmissionTeamGUI",
"id",
"");
271 $this->tpl->setCurrentBlock(
"team_member_removal_bl");
272 $this->tpl->setVariable(
"URL_TEAM_MEMBER_REMOVAL",
$url);
273 $this->tpl->setVariable(
274 "TXT_TEAM_MEMBER_REMOVAL",
277 $this->tpl->parseCurrentBlock();
281 if (!$ilAccess->checkAccessOfUser($team_member_id,
"read",
"", $this->exc->getRefId()) &&
282 is_array($info = $ilAccess->getInfo())) {
283 $this->tpl->setCurrentBlock(
'team_access_warning');
284 $this->tpl->setVariable(
'TEAM_PARENT_ACCESS', $info[0][
"text"]);
285 $this->tpl->parseCurrentBlock();
288 $this->tpl->setCurrentBlock(
"team_member");
289 $this->tpl->setVariable(
"TXT_MEMBER_NAME", $team_member_name);
290 $this->tpl->parseCurrentBlock();
293 $this->tpl->setCurrentBlock(
"team_info");
294 if ($has_no_team_yet) {
296 $this->tpl->setVariable(
"TXT_TEAM_INFO", $this->
lng->txt(
"exc_no_team_yet"));
298 $this->tpl->setVariable(
"TXT_TEAM_INFO",
"(" . $a_row[
"submission_obj"]->getTeam()->
getId() .
")");
302 $this->tpl->setVariable(
"VAL_NAME", $a_row[
"name"]);
306 if (!$has_no_team_yet) {
308 $this->tpl->setVariable(
"SEL_" . strtoupper($a_row[
"status"] ??
""),
' selected="selected" ');
309 $this->tpl->setVariable(
"TXT_NOTGRADED", $this->
lng->txt(
"exc_notgraded"));
310 $this->tpl->setVariable(
"TXT_PASSED", $this->
lng->txt(
"exc_passed"));
311 $this->tpl->setVariable(
"TXT_FAILED", $this->
lng->txt(
"exc_failed"));
317 $this->tpl->setVariable(
"NO_TEAM_COLSPAN", $nt_colspan);
322 $comment_id =
"excasscomm_" . $a_ass->
getId() .
"_" . $a_user_id;
323 if ($this->exc->hasTutorFeedbackText()) {
325 $modal->setId($comment_id);
326 $modal->setHeading($this->
lng->txt(
"exc_tbl_action_feedback_text"));
329 $lcomment_form->setId($comment_id);
330 $lcomment_form->setPreventDoubleSubmission(
false);
332 $lcomment =
new ilTextAreaInputGUI($this->
lng->txt(
"exc_comment_for_learner"),
"lcomment_" . $a_ass->
getId() .
"_" . $a_user_id);
333 $lcomment->
setInfo($this->
lng->txt(
"exc_comment_for_learner_info"));
334 $lcomment->setValue((
string) ($a_row[
"comment"] ??
""));
335 $lcomment->setRows(10);
336 $lcomment_form->addItem($lcomment);
338 $lcomment_form->addCommandButton(
"save", $this->
lng->txt(
"save"));
341 $modal->setBody($lcomment_form->getHTML());
343 $this->comment_modals[] = $modal->getHTML();
351 $include_seconds =
false;
357 $this->tpl->setVariable(
"VAL_IMAGE", $usr_obj->getPersonalPicturePath(
"xxsmall"));
358 $this->tpl->setVariable(
"TXT_IMAGE", $this->
lng->txt(
"personal_picture"));
365 if (count($a_row[
"team"]) === 0) {
366 $this->tpl->setVariable(
"VAL_TEAM_MEMBER", $this->
lng->txt(
"exc_no_team_yet"));
368 foreach ($a_row[
"team"] as
$name) {
369 $this->tpl->setCurrentBlock(
"team_member_bl");
370 $this->tpl->setVariable(
"VAL_TEAM_MEMBER", $name);
371 $this->tpl->parseCurrentBlock();
375 $this->tpl->setVariable(
"VAL_TEAM_MEMBER",
" ");
379 case "calc_deadline":
382 $this->tpl->setVariable(
383 "VAL_" . strtoupper($col),
391 if (!$has_no_team_yet) {
392 $this->tpl->setVariable(
393 "VAL_" . strtoupper($col),
401 $this->tpl->setVariable(
402 "VAL_" . strtoupper($col),
409 $this->tpl->setVariable(
"LCOMMENT_ID", $comment_id .
"_snip");
412 $this->tpl->setVariable(
"VAL_" . strtoupper($col), (trim($a_row[$col] ??
"") !==
"")
413 ? nl2br(trim($a_row[$col]))
417 case "feedback_time":
421 if ($col ==
"submission" && $a_row[
"submission_obj"]) {
422 $include_seconds =
true;
423 foreach ($a_row[
"submission_obj"]->getFiles() as $file) {
425 $this->tpl->setVariable(
"TXT_LATE", $this->
lng->txt(
"exc_late_submission"));
430 $this->tpl->setVariable(
431 "VAL_" . strtoupper($col),
432 ($a_row[$col] ??
false)
445 $this->tpl->setVariable(
"VAL_" . strtoupper($col), $a_row[$col]
452 $this->tpl->setVariable(
"VAL_" . strtoupper($col), $a_row[$col]
464 $file_info = $a_row[
"submission_obj"]->getDownloadedFilesInfoForTableGUIS();
466 $counter = $file_info[
"files"][
"count"];
468 if (isset($file_info[
"files"][
"download_url"])) {
469 $items[] = $this->ui_factory->button()->shy(
470 $file_info[
"files"][
"download_txt"] .
" (" . $counter .
")",
471 $file_info[
"files"][
"download_url"]
475 if (isset($file_info[
"files"][
"download_new_url"])) {
476 $items[] = $this->ui_factory->button()->shy(
477 $file_info[
"files"][
"download_new_txt"],
478 $file_info[
"files"][
"download_new_url"]
483 if ($this->ass_type != null && $this->ass_type->supportsWebDirAccess() && $a_row[
'submission_obj']->hasSubmittedPrintVersion()) {
485 $items[] = $this->ui_factory->link()->standard($this->
lng->txt(
"exc_tbl_action_open_submission"),
$url)->withOpenInNewViewport(
true);
486 if ($a_row[
'submission_obj']->hasSubmittedPrintVersion()) {
488 $items[] = $this->ui_factory->link()->standard($this->
lng->txt(
"exc_print_pdf"),
$url)->withOpenInNewViewport(
true);
492 if (!$has_no_team_yet &&
495 (!is_null($a_row[
"calc_deadline"] ?? null) || $a_ass->
getDeadline())) {
500 $this->tpl->setVariable(
"VAL_IDL_ID", $a_ass->
getId() .
"_" . $idl_id);
502 $assignment_id = $a_ass->
getId();
503 $items[] = $this->ui_factory->button()->shy($this->
lng->txt(
"exc_individual_deadline_action"),
"#")
505 return "$('#$id').on('click', function() {il.ExcIDl.trigger('$idl_id', '$assignment_id'); return false;})";
510 if ($this->exc->hasTutorFeedbackMail()) {
511 $items[] = $this->ui_factory->button()->shy(
512 $this->
lng->txt(
"exc_tbl_action_feedback_mail"),
513 $ilCtrl->getLinkTarget($this->parent_obj,
"redirectFeedbackMail")
519 if ($this->exc->hasTutorFeedbackFile()) {
523 ?
" (" . $counter .
")" 526 $items[] = $this->ui_factory->button()->shy(
527 $this->
lng->txt(
"exc_tbl_action_feedback_file") . $counter,
528 $ilCtrl->getLinkTargetByClass(
"ilfilesystemgui",
"listFiles")
533 if ($this->exc->hasTutorFeedbackText()) {
534 $items[] = $this->ui_factory->button()->shy($this->
lng->txt(
"exc_tbl_action_feedback_text"),
"#")
536 return "$('#$id').on('click', function() {il.ExcManagement.showComment('$comment_id'); return false;})";
542 if (($peer_review = $a_row[
"submission_obj"]->getPeerReview()) && $a_ass->
afterDeadlineStrict()) {
543 $counter = $peer_review->countGivenFeedback(
true, $a_user_id);
545 ?
" (" . $counter .
")" 547 $items[] = $this->ui_factory->button()->shy(
548 $this->
lng->txt(
"exc_tbl_action_peer_review_given") . $counter,
549 $ilCtrl->getLinkTargetByClass(
"ilexpeerreviewgui",
"showGivenPeerReview")
552 $counter = count($peer_review->getPeerReviewsByPeerId($a_user_id,
true));
553 $counter = $counter !== 0
554 ?
" (" . $counter .
")" 557 $items[] = $this->ui_factory->button()->shy(
558 $this->
lng->txt(
"exc_tbl_action_peer_review_received") . $counter,
559 $ilCtrl->getLinkTargetByClass(
"ilexpeerreviewgui",
"showReceivedPeerReview")
564 if ($has_no_team_yet) {
565 $items[] = $this->ui_factory->button()->shy(
566 $this->
lng->txt(
"exc_create_team"),
567 $ilCtrl->getLinkTargetByClass(
"ilExSubmissionTeamGUI",
"createSingleMemberTeam")
570 $items[] = $this->ui_factory->button()->shy(
571 $this->
lng->txt(
"exc_tbl_action_team_log"),
572 $ilCtrl->getLinkTargetByClass(
"ilExSubmissionTeamGUI",
"showTeamLog")
576 $actions = $this->ui_factory->dropdown()->standard($items)->withLabel($this->
lng->txt(
"actions"));
578 $this->tpl->setVariable(
"ACTIONS", $this->ui_renderer->render($actions));
585 $tpl = $DIC->ui()->mainTemplate();
587 $url = $ilCtrl->getLinkTarget($this->
getParentObject(),
"saveCommentForLearners",
"",
true,
false);
589 $tpl->addJavaScript(
"Modules/Exercise/js/ilExcManagement.js");
590 $tpl->addOnLoadCode(
'il.ExcManagement.init("' .
$url .
'");');
592 return parent::render() .
593 implode(
"\n", $this->comment_modals);
An entity that renders components to a string output.
canParticipantReceiveFeedback(int $part_id)
setFormAction(string $a_form_action, bool $a_multipart=false)
static get(string $a_glyph, string $a_text="")
setResetCommand(string $a_val, string $a_caption="")
afterDeadlineStrict(bool $a_include_personal=true)
setShowTemplates(bool $a_value)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
setFormName(string $a_name="")
withOnLoadCode(Closure $binder)
countFeedbackFiles(string $a_user_id)
addFilterItemByMetaType(string $id, int $type=self::FILTER_TEXT, bool $a_optional=false, string $caption="")
Add filter by standard type.
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setFilterCommand(string $a_val, string $a_caption="")
Exercise submission table.
setDefaultOrderDirection(string $a_defaultorderdirection)
static getTeamId(int $a_assignment_id, int $a_user_id, bool $a_create_on_demand=false)
__construct(object $a_parent_obj, string $a_parent_cmd, ilObjExercise $a_exc, int $a_item_id)
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilExAssignmentTypes $ass_types
ilExAssignmentTypeInterface $ass_type
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
addMultiCommand(string $a_cmd, string $a_text)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...