ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilExSubmissionBaseGUI.php
Go to the documentation of this file.
1 <?php
2 
22 
31 abstract class ilExSubmissionBaseGUI
32 {
33  protected \ILIAS\Exercise\Notification\NotificationManager $notification;
34  protected \ILIAS\Exercise\InternalDomainService $domain;
35  protected \ILIAS\Exercise\InternalGUIService $gui;
36  protected ilCtrl $ctrl;
37  protected ilTabsGUI $tabs_gui;
38  protected ilLanguage $lng;
46  protected int $requested_ref_id;
47  protected GUIRequest $request;
48 
52  public function __construct(
53  ilObjExercise $a_exercise,
54  ilExSubmission $a_submission
55  ) {
56  global $DIC;
57 
58  $service = $DIC->exercise()->internal();
59  $this->gui = $service->gui();
60  $this->domain = $service->domain();
61 
62  $this->ctrl = $this->gui->ctrl();
63  $this->tabs_gui = $this->gui->tabs();
64  $this->lng = $this->domain->lng();
65  $this->tpl = $this->gui->ui()->mainTemplate();
66 
67  $this->exercise = $a_exercise;
68  $this->submission = $a_submission;
69  $this->assignment = $a_submission->getAssignment();
70 
71  $this->mandatory_manager = $this->domain
72  ->assignment()
73  ->mandatoryAssignments($this->exercise);
74 
75  $this->request = $this->gui->request();
76  $this->requested_ref_id = $this->request->getRefId();
77  $this->notification = $this->domain->notification($this->requested_ref_id);
78 
79  $this->type_guis = $this->gui->assignment()->types();
80  $this->tool_context = $DIC->globalScreen()->tool()->context();
81  $this->gui = $DIC->exercise()
82  ->internal()
83  ->gui();
84  }
85 
86  abstract public static function getOverviewContent(
87  ilInfoScreenGUI $a_info,
88  ilExSubmission $a_submission
89  ): void;
90 
91  protected function handleTabs(): void
92  {
93  return;
94  $this->tabs_gui->clearTargets();
95  $this->tabs_gui->setBackTarget(
96  $this->lng->txt("back"),
97  $this->ctrl->getLinkTarget($this, "returnToParent")
98  );
99 
100  $this->tabs_gui->addTab(
101  "submission",
102  $this->lng->txt("exc_submission"),
103  $this->ctrl->getLinkTarget($this, "")
104  );
105  $this->tabs_gui->activateTab("submission");
106 
107  if ($this->assignment->hasTeam()) {
109  }
110  }
111 
112  public function returnToParentObject(): void
113  {
114  if ($this->request->getFromOverview()) {
115  $this->ctrl->redirectByClass(ilObjExerciseGUI::class, "showOverview");
116  }
117  $this->ctrl->returnToParent($this);
118  }
119 
120 
121  //
122  // RETURNED/EXERCISE STATUS
123  //
124 
125  protected function handleNewUpload(
126  bool $a_no_notifications = false
127  ): void {
128  $has_submitted = $this->submission->hasSubmitted();
129 
130  $this->exercise->processExerciseStatus(
131  $this->assignment,
132  $this->submission->getUserIds(),
133  $has_submitted,
134  $this->submission->validatePeerReviews()
135  );
136 
137  if ($has_submitted &&
138  !$a_no_notifications) {
139  $this->notification->sendUploadNotification($this->assignment->getId());
140  }
141  }
142 
143  protected function handleRemovedUpload(): void
144  {
145  // #16532 - always send notifications
146  $this->handleNewUpload();
147  }
148 
149  protected function triggerAssignmentTool(): void
150  {
151  $ass_ids = [$this->assignment->getId()];
152  $this->tool_context->current()->addAdditionalData(ilExerciseGSToolProvider::SHOW_EXC_ASSIGNMENT_INFO, true);
153  $this->tool_context->current()->addAdditionalData(ilExerciseGSToolProvider::EXC_ASS_IDS, $ass_ids);
154  }
155 }
static getOverviewContent(ilInfoScreenGUI $a_info, ilExSubmission $a_submission)
handleNewUpload(bool $a_no_notifications=false)
ILIAS Exercise InternalGUIService $gui
Exercise assignment.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Exercise submission base gui.
ilGlobalTemplateInterface $tpl
notification()
description: > Example for rendring a notification glyph.
Class ilObjExercise.
MandatoryAssignmentsManager $mandatory_manager
ILIAS Exercise Notification NotificationManager $notification
global $DIC
Definition: shib_login.php:22
ilExAssignmentTypesGUI $type_guis
Exercise submission //TODO: This class has many static methods related to delivered "files"...
ILIAS Exercise InternalDomainService $domain
Exercise gui request wrapper.
$service
Definition: ltiservices.php:40
__construct(ilObjExercise $a_exercise, ilExSubmission $a_submission)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...