30 protected \ILIAS\MediaObjects\MediaType\MediaTypeManager
$media_type;
52 $request = $DIC->exercise()->internal()->gui()->request();
53 $this->requested_ass_id = $request->getAssId();
55 $this->
lng = $DIC->language();
56 $this->
user = $DIC->user();
57 $this->
ctrl = $DIC->ctrl();
58 $this->
ui = $DIC->ui();
62 $this->mandatory_manager = $service->
domain()->assignment()->mandatoryAssignments($this->exc);
63 $this->media_type = $DIC->mediaObjects()->internal()->domain()->mediaType();
79 $tpl =
new ilTemplate(
"tpl.assignment_head.html",
true,
true,
"Modules/Exercise");
84 if ($state->exceededOfficialDeadline()) {
85 $tpl->setCurrentBlock(
"prop");
86 $tpl->setVariable(
"PROP", $lng->
txt(
"exc_ended_on"));
87 $tpl->setVariable(
"PROP_VAL", $state->getCommonDeadlinePresentation());
88 $tpl->parseCurrentBlock();
91 if ($state->getPeerReviewDeadline()) {
92 $tpl->setCurrentBlock(
"prop");
93 $tpl->setVariable(
"PROP", $lng->
txt(
"exc_peer_review_deadline"));
94 $tpl->setVariable(
"PROP_VAL", $state->getPeerReviewDeadlinePresentation());
95 $tpl->parseCurrentBlock();
97 } elseif (!$state->hasGenerallyStarted()) {
98 $tpl->setCurrentBlock(
"prop");
99 if ($state->getRelativeDeadline()) {
100 $tpl->setVariable(
"PROP", $lng->
txt(
"exc_earliest_start_time"));
102 $tpl->setVariable(
"PROP", $lng->
txt(
"exc_starting_on"));
104 $tpl->setVariable(
"PROP_VAL", $state->getGeneralStartPresentation());
105 $tpl->parseCurrentBlock();
107 if ($state->getCommonDeadline() > 0) {
108 $tpl->setCurrentBlock(
"prop");
109 $tpl->setVariable(
"PROP", $lng->
txt(
"exc_time_to_send"));
110 $tpl->setVariable(
"PROP_VAL", $state->getRemainingTimePresentation());
111 $tpl->parseCurrentBlock();
113 $tpl->setCurrentBlock(
"prop");
114 $tpl->setVariable(
"PROP", $lng->
txt(
"exc_edit_until"));
115 $tpl->setVariable(
"PROP_VAL", $state->getCommonDeadlinePresentation());
116 $tpl->parseCurrentBlock();
117 } elseif ($state->getRelativeDeadline()) {
118 $tpl->setCurrentBlock(
"prop");
119 $tpl->setVariable(
"PROP", $lng->
txt(
"exc_rem_time_after_start"));
120 $tpl->setVariable(
"PROP_VAL", $state->getRelativeDeadlinePresentation());
121 $tpl->parseCurrentBlock();
123 if ($state->getLastSubmissionOfRelativeDeadline()) {
124 $tpl->setCurrentBlock(
"prop");
125 $tpl->setVariable(
"PROP", $lng->
txt(
"exc_rel_last_submission"));
126 $tpl->setVariable(
"PROP_VAL", $state->getLastSubmissionOfRelativeDeadlinePresentation());
127 $tpl->parseCurrentBlock();
132 if ($state->getIndividualDeadline() > 0) {
133 $tpl->setCurrentBlock(
"prop");
134 $tpl->setVariable(
"PROP", $lng->
txt(
"exc_individual_deadline"));
135 $tpl->setVariable(
"PROP_VAL", $state->getIndividualDeadlinePresentation());
136 $tpl->parseCurrentBlock();
141 if ($this->mandatory_manager->isMandatoryForUser($a_ass->
getId(), $this->
user->getId())) {
142 $mand =
" (" . $lng->
txt(
"exc_mandatory") .
")";
144 $tpl->setVariable(
"TITLE", $a_ass->
getTitle() . $mand);
171 $this->current_ass_id = $a_ass->
getId();
173 $tpl =
new ilTemplate(
"tpl.assignment_body.html",
true,
true,
"Modules/Exercise");
178 $info->setTableClass(
"");
179 if ($state->areInstructionsVisible()) {
186 if ($state->hasSubmissionStarted()) {
190 $tpl->setVariable(
"CONTENT", $info->getHTML());
203 if (count($inst) > 0) {
204 $a_info->
addSection($inst[
"instruction"][
"txt"]);
205 $a_info->
addProperty(
"", $inst[
"instruction"][
"value"]);
226 if ($state->getGeneralStart() > 0) {
227 $a_info->
addProperty($schedule[
"start_time"][
"txt"], $schedule[
"start_time"][
"value"]);
231 if ($state->getCommonDeadline()) {
232 $a_info->
addProperty($schedule[
"until"][
"txt"], $schedule[
"until"][
"value"]);
233 } elseif ($state->getRelativeDeadline()) {
235 if ($state->hasGenerallyStarted()) {
236 $ilCtrl->setParameterByClass(
"ilobjexercisegui",
"ass_id", $a_ass->
getId());
237 $but = $this->
ui->factory()->button()->primary($lng->
txt(
"exc_start_assignment"), $ilCtrl->getLinkTargetByClass(
"ilobjexercisegui",
"startAssignment"));
238 $ilCtrl->setParameterByClass(
"ilobjexercisegui",
"ass_id", $this->requested_ass_id);
239 $but = $this->
ui->renderer()->render($but);
242 $a_info->
addProperty($schedule[
"time_after_start"][
"txt"], $schedule[
"time_after_start"][
"value"] .
" " . $but);
243 if ($state->getLastSubmissionOfRelativeDeadline()) {
245 $lng->
txt(
"exc_rel_last_submission"),
246 $state->getLastSubmissionOfRelativeDeadlinePresentation()
251 if ($state->getOfficialDeadline() > $state->getCommonDeadline()) {
252 $a_info->
addProperty($schedule[
"individual_deadline"][
"txt"], $schedule[
"individual_deadline"][
"value"]);
255 if ($state->hasSubmissionStarted()) {
256 $a_info->
addProperty($schedule[
"time_to_send"][
"txt"], $schedule[
"time_to_send"][
"value"]);
270 if ($state->hasSubmissionEnded()) {
272 $button->setCaption(
"exc_list_submission");
275 $a_info->
addProperty($lng->
txt(
"exc_public_submission"), $button->render());
278 $lng->
txt(
"exc_public_submission"),
279 $lng->
txt(
"exc_msg_public_submission")
291 if (count($files) > 0) {
298 foreach ($files as $file) {
303 $ui_factory = $DIC->ui()->factory();
304 $ui_renderer = $DIC->ui()->renderer();
306 $output_filename = htmlspecialchars($file[
'name']);
308 if ($this->media_type->isImage($mime)) {
309 $item_id =
"il-ex-modal-img-" . $a_ass->
getId() .
"-" . $cnt;
312 $image = $ui_renderer->render($ui_factory->image()->responsive($file[
'fullpath'], $output_filename));
316 $modal->setId($item_id);
318 $modal->setBody($image);
319 $modal->setHeading($output_filename);
320 $modal = $modal->getHTML();
322 $img_tpl =
new ilTemplate(
"tpl.image_file.html",
true,
true,
"Modules/Exercise");
323 $img_tpl->setCurrentBlock(
"image_content");
324 $img_tpl->setVariable(
"MODAL", $modal);
325 $img_tpl->setVariable(
"ITEM_ID", $item_id);
326 $img_tpl->setVariable(
"IMAGE", $image);
327 $img_tpl->setvariable(
"IMAGE_LENS", $image_lens);
328 $img_tpl->setvariable(
"ALT_LENS", $lng->
txt(
"exc_fullscreen"));
329 $img_tpl->parseCurrentBlock();
331 $a_info->
addProperty($output_filename, $img_tpl->get());
332 } elseif ($this->media_type->isAudio($mime) || $this->media_type->isVideo($mime)) {
333 $media_tpl =
new ilTemplate(
"tpl.media_file.html",
true,
true,
"Modules/Exercise");
335 if ($this->media_type->isAudio($mime)) {
336 $p = $ui_factory->player()->audio($file[
'fullpath']);
338 $p = $ui_factory->player()->video($file[
'fullpath']);
340 $media_tpl->setVariable(
"MEDIA", $ui_renderer->render($p));
342 $but = $ui_factory->button()->shy(
343 $lng->
txt(
"download"),
344 $this->
getSubmissionLink(
"downloadFile", array(
"file" => urlencode($file[
"name"])))
346 $media_tpl->setVariable(
"DOWNLOAD_BUTTON", $ui_renderer->render($but));
347 $a_info->
addProperty($output_filename, $media_tpl->get());
372 ilExSubmissionGUI::getOverviewContent($a_info, $submission, $this->exc);
375 if ($submission->hasSubmitted()) {
376 $last_sub = $submission->getLastSubmission();
379 $a_info->
addProperty($lng->
txt(
"exc_last_submission"), $last_sub);
383 if ($this->exc->getShowSubmissions()) {
391 $show_global_feedback = ($state->hasSubmissionEndedForAllUsers() && $a_ass->
getFeedbackFile());
407 string $a_feedback_id,
408 bool $a_show_global_feedback
419 if ($lpcomment !=
"" ||
421 $status !=
"notgraded" ||
423 $a_show_global_feedback) {
425 if ($lpcomment !=
"") {
427 $lng->
txt(
"exc_comment"),
433 $lng->
txt(
"exc_mark"),
438 if ($status !=
"" && $status !=
"notgraded") {
442 $img .
" " . $lng->
txt(
"exc_" . $status)
446 if ($cnt_files > 0) {
448 '<a id="fb' . $a_ass->
getId() .
'"></a>');
450 if ($cnt_files > 0) {
451 $files = $storage->getFeedbackFiles($a_feedback_id);
452 foreach ($files as $file) {
455 $lng->
txt(
"download"),
456 $this->
getSubmissionLink(
"downloadFeedbackFile", array(
"file" => urlencode($file)))
463 if ($a_show_global_feedback) {
468 $lng->
txt(
"download"),
483 if ($a_deadline == 0) {
484 return $lng->
txt(
"exc_submit_convenience_no_deadline");
487 if ($a_deadline - time() <= 0) {
488 $time_str = $lng->
txt(
"exc_time_over_short");
498 array $a_params = null
502 if (is_array($a_params)) {
503 foreach ($a_params as
$name => $value) {
508 $ilCtrl->setParameterByClass(
"ilexsubmissiongui",
"ass_id", $this->current_ass_id);
509 $url = $ilCtrl->getLinkTargetByClass(
"ilexsubmissiongui", $a_cmd);
510 $ilCtrl->setParameterByClass(
"ilexsubmissiongui",
"ass_id",
"");
512 if (is_array($a_params)) {
513 foreach ($a_params as
$name => $value) {
514 $ilCtrl->setParameterByClass(
"ilexsubmissiongui",
$name,
"");
531 return $icons->renderIcon(
532 $icons->getImagePathCompleted(),
533 $lng->
txt(
"exc_" . $status)
537 return $icons->renderIcon(
538 $icons->getImagePathFailed(),
539 $lng->
txt(
"exc_" . $status)
543 return $icons->renderIcon(
544 $icons->getImagePathNotAttempted(),
545 $lng->
txt(
"exc_" . $status)
addSubmissionFeedback(ilInfoScreenGUI $a_info, ilExAssignment $a_ass, string $a_feedback_id, bool $a_show_global_feedback)
static getOverviewContent(ilInfoScreenGUI $a_info, ilExSubmission $a_submission)
addPublicSubmissions(ilInfoScreenGUI $a_info, ilExAssignment $a_ass)
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...
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
getMemberStatus(?int $a_user_id=null)
addProperty(string $a_name, string $a_value, string $a_link="")
add a property to current section
MandatoryAssignmentsManager $mandatory_manager
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
static getInstance(int $variant=ilLPStatusIcons::ICON_VARIANT_DEFAULT, ?\ILIAS\UI\Renderer $renderer=null, ?\ILIAS\UI\Factory $factory=null)
Exercise internal service.
addInstructions(ilInfoScreenGUI $a_info, ilExAssignment $a_ass)
setParameterByClass(string $a_class, string $a_parameter, $a_value)
loadLanguageModule(string $a_module)
Load language module.
addSchedule(ilInfoScreenGUI $a_info, ilExAssignment $a_ass)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
GUI class for exercise assignments.
countFeedbackFiles(string $a_user_id)
Provides fluid interface to RBAC services.
getOverviewBody(ilExAssignment $a_ass)
Get assignment body for overview.
addFiles(ilInfoScreenGUI $a_info, ilExAssignment $a_ass)
static getInstanceByIds(int $a_ass_id, int $a_user_id=0)
addSection(string $a_title)
getOverviewHeader(ilExAssignment $a_ass)
Get assignment header for overview.
const FEEDBACK_DATE_DEADLINE
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addSubmission(ilInfoScreenGUI $a_info, ilExAssignment $a_ass)
__construct(Container $dic, ilPlugin $plugin)
getTimeString(int $a_deadline)
Get time string for deadline.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Manages random mandatory assignments of an exercise.
const FEEDBACK_DATE_CUSTOM
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
getIconForStatus(string $status, int $variant=ilLPStatusIcons::ICON_VARIANT_LONG)
Get the rendered icon for a status (failed, passed or not graded).
ILIAS MediaObjects MediaType MediaTypeManager $media_type
getSubmissionLink(string $a_cmd, array $a_params=null)