47 $this->lng = $DIC->language();
48 $this->
user = $DIC->user();
49 $this->ctrl = $DIC->ctrl();
50 $this->
ui = $DIC->ui();
65 $lng->loadLanguageModule(
"exc");
69 $tpl =
new ilTemplate(
"tpl.assignment_head.html",
true,
true,
"Modules/Exercise");
79 if ($state->exceededOfficialDeadline()) {
80 $tpl->setCurrentBlock(
"prop");
81 $tpl->setVariable(
"PROP",
$lng->txt(
"exc_ended_on"));
82 $tpl->setVariable(
"PROP_VAL", $state->getCommonDeadlinePresentation());
83 $tpl->parseCurrentBlock();
86 if ($state->getPeerReviewDeadline()) {
87 $tpl->setCurrentBlock(
"prop");
88 $tpl->setVariable(
"PROP",
$lng->txt(
"exc_peer_review_deadline"));
89 $tpl->setVariable(
"PROP_VAL", $state->getPeerReviewDeadlinePresentation());
90 $tpl->parseCurrentBlock();
92 } elseif (!$state->hasGenerallyStarted()) {
93 if ($state->getRelativeDeadline()) {
94 $tpl->setCurrentBlock(
"prop");
95 $tpl->setVariable(
"PROP",
$lng->txt(
"exc_earliest_start_time"));
96 $tpl->setVariable(
"PROP_VAL", $state->getGeneralStartPresentation());
97 $tpl->parseCurrentBlock();
99 $tpl->setCurrentBlock(
"prop");
100 $tpl->setVariable(
"PROP",
$lng->txt(
"exc_starting_on"));
101 $tpl->setVariable(
"PROP_VAL", $state->getGeneralStartPresentation());
102 $tpl->parseCurrentBlock();
105 if ($state->getCommonDeadline() > 0) {
106 $tpl->setCurrentBlock(
"prop");
107 $tpl->setVariable(
"PROP",
$lng->txt(
"exc_time_to_send"));
108 $tpl->setVariable(
"PROP_VAL", $state->getRemainingTimePresentation());
109 $tpl->parseCurrentBlock();
111 $tpl->setCurrentBlock(
"prop");
112 $tpl->setVariable(
"PROP",
$lng->txt(
"exc_edit_until"));
113 $tpl->setVariable(
"PROP_VAL", $state->getCommonDeadlinePresentation());
114 $tpl->parseCurrentBlock();
115 } elseif ($state->getRelativeDeadline()) {
116 $tpl->setCurrentBlock(
"prop");
117 $tpl->setVariable(
"PROP",
$lng->txt(
"exc_rem_time_after_start"));
118 $tpl->setVariable(
"PROP_VAL", $state->getRelativeDeadlinePresentation());
119 $tpl->parseCurrentBlock();
121 if ($state->getLastSubmissionOfRelativeDeadline()) {
122 $tpl->setCurrentBlock(
"prop");
123 $tpl->setVariable(
"PROP",
$lng->txt(
"exc_rel_last_submission"));
124 $tpl->setVariable(
"PROP_VAL", $state->getLastSubmissionOfRelativeDeadlinePresentation());
125 $tpl->parseCurrentBlock();
130 if ($state->getIndividualDeadline() > 0) {
131 $tpl->setCurrentBlock(
"prop");
132 $tpl->setVariable(
"PROP",
$lng->txt(
"exc_individual_deadline"));
133 $tpl->setVariable(
"PROP_VAL", $state->getIndividualDeadlinePresentation());
134 $tpl->parseCurrentBlock();
139 if ($this->mandatory_manager->isMandatoryForUser($a_ass->
getId(), $this->
user->getId())) {
140 $mand =
" (" .
$lng->txt(
"exc_mandatory") .
")";
142 $tpl->setVariable(
"TITLE", $a_ass->
getTitle() . $mand);
148 $tpl->setVariable(
"ALT_STATUS",
$lng->txt(
"exc_" . $stat));
162 $this->current_ass_id = $a_ass->
getId();
164 $tpl =
new ilTemplate(
"tpl.assignment_body.html",
true,
true,
"Modules/Exercise");
169 $info->setTableClass(
"");
171 if ($state->areInstructionsVisible()) {
178 if ($state->hasSubmissionStarted()) {
182 $tpl->setVariable(
"CONTENT", $info->getHTML());
194 if (count($inst) > 0) {
195 $a_info->
addSection($inst[
"instruction"][
"txt"]);
196 $a_info->
addProperty(
"", $inst[
"instruction"][
"value"]);
212 if ($state->getGeneralStart() > 0) {
213 $a_info->
addProperty($schedule[
"start_time"][
"txt"], $schedule[
"start_time"][
"value"]);
217 if ($state->getCommonDeadline()) {
218 $a_info->
addProperty($schedule[
"until"][
"txt"], $schedule[
"until"][
"value"]);
219 } elseif ($state->getRelativeDeadline()) {
221 if ($state->hasGenerallyStarted()) {
222 $ilCtrl->setParameterByClass(
"ilobjexercisegui",
"ass_id", $a_ass->
getId());
223 $but = $this->
ui->factory()->button()->primary(
$lng->txt(
"exc_start_assignment"),
$ilCtrl->getLinkTargetByClass(
"ilobjexercisegui",
"startAssignment"));
224 $ilCtrl->setParameterByClass(
"ilobjexercisegui",
"ass_id",
$_GET[
"ass_id"]);
225 $but = $this->
ui->renderer()->render($but);
228 $a_info->
addProperty($schedule[
"time_after_start"][
"txt"], $schedule[
"time_after_start"][
"value"] .
" " . $but);
229 if ($state->getLastSubmissionOfRelativeDeadline()) {
231 $lng->txt(
"exc_rel_last_submission"),
232 $state->getLastSubmissionOfRelativeDeadlinePresentation()
237 if ($state->getOfficialDeadline() > $state->getCommonDeadline()) {
238 $a_info->
addProperty($schedule[
"individual_deadline"][
"txt"], $schedule[
"individual_deadline"][
"value"]);
241 if ($state->hasSubmissionStarted()) {
242 $a_info->
addProperty($schedule[
"time_to_send"][
"txt"], $schedule[
"time_to_send"][
"value"]);
255 if ($state->hasSubmissionEnded()) {
257 $button->setCaption(
"exc_list_submission");
260 $a_info->
addProperty(
$lng->txt(
"exc_public_submission"), $button->render());
263 $lng->txt(
"exc_public_submission"),
264 $lng->txt(
"exc_msg_public_submission")
274 $lng->loadLanguageModule(
"exc");
278 if (count($files) > 0) {
285 foreach ($files as $file) {
292 $ui_factory = $DIC->ui()->factory();
293 $ui_renderer = $DIC->ui()->renderer();
295 $output_filename = htmlspecialchars($file[
'name']);
297 if (in_array($mime, array(
"image/jpeg",
"image/svg+xml",
"image/gif",
"image/png"))) {
298 $item_id =
"il-ex-modal-img-" . $a_ass->
getId() .
"-" . $cnt;
301 $image = $ui_renderer->render($ui_factory->image()->responsive($file[
'fullpath'], $output_filename));
305 $modal->setId($item_id);
307 $modal->setBody($image);
308 $modal->setHeading($output_filename);
309 $modal = $modal->getHTML();
311 $img_tpl =
new ilTemplate(
"tpl.image_file.html",
true,
true,
"Modules/Exercise");
312 $img_tpl->setCurrentBlock(
"image_content");
313 $img_tpl->setVariable(
"MODAL", $modal);
314 $img_tpl->setVariable(
"ITEM_ID", $item_id);
315 $img_tpl->setVariable(
"IMAGE", $image);
316 $img_tpl->setvariable(
"IMAGE_LENS", $image_lens);
317 $img_tpl->setvariable(
"ALT_LENS",
$lng->txt(
"exc_fullscreen"));
318 $img_tpl->parseCurrentBlock();
320 $a_info->
addProperty($output_filename, $img_tpl->get());
321 } elseif (in_array($mime, array(
"audio/mpeg",
"audio/ogg",
"video/mp4",
"video/x-flv",
"video/webm"))) {
322 $media_tpl =
new ilTemplate(
"tpl.media_file.html",
true,
true,
"Modules/Exercise");
324 $mp->setFile($file[
'fullpath']);
325 $media_tpl->setVariable(
"MEDIA", $mp->getMediaPlayerHtml());
327 $but = $ui_factory->button()->shy(
328 $lng->txt(
"download"),
329 $this->
getSubmissionLink(
"downloadFile", array(
"file" => urlencode($file[
"name"])))
331 $media_tpl->setVariable(
"DOWNLOAD_BUTTON", $ui_renderer->render($but));
332 $a_info->
addProperty($output_filename, $media_tpl->get());
355 if ($submission->hasSubmitted()) {
356 $last_sub = $submission->getLastSubmission();
363 if ($this->exc->getShowSubmissions()) {
371 $show_global_feedback = ($state->hasSubmissionEndedForAllUsers() && $a_ass->
getFeedbackFile());
396 if ($lpcomment !=
"" ||
398 $status !=
"notgraded" ||
400 $a_show_global_feedback) {
402 if ($lpcomment !=
"") {
404 $lng->txt(
"exc_comment"),
410 $lng->txt(
"exc_mark"),
418 } elseif ($status !=
"notgraded") {
420 ' alt="' .
$lng->txt(
"exc_" . $status) .
'" title="' .
$lng->txt(
"exc_" . $status) .
424 $img .
" " .
$lng->txt(
"exc_" . $status)
428 if ($cnt_files > 0) {
430 '<a name="fb' . $a_ass->
getId() .
'"></a>');
432 if ($cnt_files > 0) {
433 $files = $storage->getFeedbackFiles($a_feedback_id);
434 foreach ($files as $file) {
437 $lng->txt(
"download"),
438 $this->
getSubmissionLink(
"downloadFeedbackFile", array(
"file" => urlencode($file)))
445 if ($a_show_global_feedback) {
450 $lng->txt(
"download"),
464 if ($a_deadline == 0) {
465 return $lng->txt(
"exc_submit_convenience_no_deadline");
468 if ($a_deadline - time() <= 0) {
469 $time_str =
$lng->txt(
"exc_time_over_short");
481 if (is_array($a_params)) {
482 foreach ($a_params as
$name => $value) {
483 $ilCtrl->setParameterByClass(
"ilexsubmissiongui",
$name, $value);
487 $ilCtrl->setParameterByClass(
"ilexsubmissiongui",
"ass_id", $this->current_ass_id);
488 $url =
$ilCtrl->getLinkTargetByClass(
"ilexsubmissiongui", $a_cmd);
489 $ilCtrl->setParameterByClass(
"ilexsubmissiongui",
"ass_id",
"");
491 if (is_array($a_params)) {
492 foreach ($a_params as
$name => $value) {
493 $ilCtrl->setParameterByClass(
"ilexsubmissiongui",
$name,
"");
addSubmissionFeedback(ilInfoScreenGUI $a_info, ilExAssignment $a_ass, $a_feedback_id, $a_show_global_feedback)
static getOverviewContent(ilInfoScreenGUI $a_info, ilExSubmission $a_submission)
getMemberStatus($a_user_id=null)
getPersonalDeadline($a_user_id)
Get individual deadline (max of common or idl (team) deadline = Official Deadline) ...
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
addPublicSubmissions(ilInfoScreenGUI $a_info, ilExAssignment $a_ass)
getFeedbackDate()
Get (global) feedback file availability date.
getId()
Get assignment id.
getMandatoryAssignmentManager(ilObjExercise $exercise)
Get random assignment manager.
static getOverviewContent(ilInfoScreenGUI $a_info, ilExSubmission $a_submission, ilObjExercise $a_exc)
getDeadline()
Get deadline (timestamp)
addInstructions(ilInfoScreenGUI $a_info, ilExAssignment $a_ass)
addSection($a_title)
add a new section
addSchedule(ilInfoScreenGUI $a_info, ilExAssignment $a_ass)
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
static getInstanceByIds($a_ass_id, $a_user_id=0)
Get instance by IDs (recommended for consumer code)
__construct(ilObjExercise $a_exc, ilExerciseInternalService $service)
Constructor.
GUI class for exercise assignments.
getExerciseId()
Get exercise id.
getOverviewBody(ilExAssignment $a_ass)
Get assignment body for overview.
getTimeString($a_deadline)
Get time string for deadline.
addFiles(ilInfoScreenGUI $a_info, ilExAssignment $a_ass)
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static period2String(ilDateTime $a_from, $a_to=null)
Return a string of time period.
getFeedbackFile()
Get (global) feedback file.
getInstructionInfo()
Get instruction info.
getOverviewHeader(ilExAssignment $a_ass)
Get assignment header for overview.
const FEEDBACK_DATE_DEADLINE
static getInstance()
Get instance.
addProperty($a_name, $a_value, $a_link="")
add a property to current section
addSubmission(ilInfoScreenGUI $a_info, ilExAssignment $a_ass)
Exercise submission //TODO: This class has to much static methods related to delivered "files"...
const FEEDBACK_DATE_CUSTOM
countFeedbackFiles($a_user_id)
Count number of feedback files for a user.
getSubmissionLink($a_cmd, array $a_params=null)