19 declare(strict_types=1);
38 ILIAS\Exercise\Notification\NotificationManager $notification
42 $lng = $domain->lng();
43 $lng->loadLanguageModule(
"exc");
50 $ctrl = $this->gui->ctrl();
52 $next_class = $ctrl->getNextClass($this);
53 $cmd = $ctrl->getCmd(
"showFeedbackForm");
55 switch ($next_class) {
59 "validateAndSubmitFeedbackForm",
60 "saveCommentForLearners" 69 $lng = $this->domain->lng();
70 $ctrl = $this->gui->ctrl();
72 $ctrl->setParameter($this,
"ass_id", $ass_id);
73 $ctrl->setParameter($this,
"member_id", $usr_id);
77 ->modal(
$lng->txt(
"exc_tbl_action_feedback_text"))
78 ->getAsyncTriggerButtonComponents(
79 $lng->txt(
"exc_tbl_action_feedback_text"),
80 $ctrl->getLinkTarget($this,
"showFeedbackForm",
"",
true),
89 $lng = $this->domain->lng();
91 ->modal(
$lng->txt(
"exc_tbl_action_feedback_text"))
98 $lng = $this->domain->lng();
99 $ctrl = $this->gui->ctrl();
100 $request = $this->gui->request();
102 $ass_id = $request->getAssId();
103 $ass = $this->domain->assignment()->getAssignment(
$ass_id);
106 $ctrl->setParameter($this,
"ass_id",
$ass_id);
107 $ctrl->setParameter($this,
"member_id",
$user_id);
111 ->form(self::class,
"validateAndSubmitFeedbackForm")
115 $lng->txt(
"exc_comment_for_learner"),
116 $lng->txt(
"exc_comment_for_learner_info"),
117 $ass->getMemberStatus(
$user_id)->getComment()
125 $lng = $this->domain->lng();
126 $ctrl = $this->gui->ctrl();
127 $request = $this->gui->request();
129 if (!$form->isValid()) {
130 $this->gui->modal(
$lng->txt(
"exc_tbl_action_feedback_text"))
136 $ass_id = $request->getAssId();
137 $comment = $form->getData(
"comment");
139 $ctrl->setParameter($this,
"member_id",
$user_id);
140 $ctrl->setParameter($this,
"ass_id",
$ass_id);
141 $ctrl->setParameter($this,
"comment",
$comment);
143 $target = $ctrl->getLinkTarget($this,
"saveCommentForLearners");
144 $this->gui->send(
"<script>window.location.href = '" . $target .
"';</script>");
149 $ctrl = $this->gui->ctrl();
150 $request = $this->gui->request();
152 $ass_id = $request->getAssId();
153 $ass = $this->domain->assignment()->getAssignment(
$ass_id);
155 $comment = trim($request->getComment());
159 $user_ids = $submission->getUserIds();
162 $all_members = $all_members->getMembers();
166 if (in_array($user_id, $all_members)) {
167 $member_status = $ass->getMemberStatus($user_id);
169 $member_status->setFeedback(
true);
170 $member_status->update();
178 if ($reci_ids !== []) {
189 $ctrl->redirectByClass(
"ilexercisemanagementgui", $request->getParticipantId()
Exercise UI frontend presentation service class.
Interface Observer Contains several chained tasks and infos about them.
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
__construct(InternalDomainService $domain, InternalGUIService $gui, ?ilObjExercise $exercise, ILIAS\Exercise\Notification\NotificationManager $notification)
ILIAS Exercise Notification NotificationManager $notification
notification()
description: > Example for rendring a notification glyph.
getComponents(int $ass_id, int $usr_id)
form( $class_path, string $cmd, string $submit_caption="")
Exercise submission //TODO: This class has many static methods related to delivered "files"...
validateAndSubmitFeedbackForm()
InternalDomainService $domain
catch(ilCmiXapiException $e) send($response)