Skip to content

Commit

Permalink
MDL-30481 Advanced upload assignment: Fixed assignment available date…
Browse files Browse the repository at this point in the history
… string to appropriately identify past or future availability
  • Loading branch information
Rossiani Wijaya committed Feb 26, 2013
1 parent f29e62c commit b9509a1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions mod/assignment/lang/en/assignment.php
Expand Up @@ -58,6 +58,7 @@
$string['cannotdeletefiles'] = 'An error occurred and files could not be deleted';
$string['cannotviewassignment'] = 'You can not view this assignment';
$string['changegradewarning'] = 'This assignment has graded submissions and changing the grade will not automatically re-calculate existing submission grades. You must re-grade all existing submissions, if you wish to change the grade.';
$string['closedassignment'] = 'The submission date for this assignment has been closed.';
$string['comment'] = 'Comment';
$string['commentinline'] = 'Comment inline';
$string['commentinline_help'] = 'If enabled, the submission text will be copied into the feedback comment field during grading, making it easier to comment inline (using a different colour, perhaps) or to edit the original text.';
Expand Down Expand Up @@ -105,6 +106,7 @@
$string['feedbackupdated'] = 'Submissions feedback updated for {$a} people';
$string['finalize'] = 'Prevent submission updates';
$string['finalizeerror'] = 'An error occurred and that submission could not be finalised';
$string['futureaassignment'] = 'This assignment is not yet available.';
$string['graded'] = 'Graded';
$string['guestnosubmit'] = 'Sorry, guests are not allowed to submit an assignment. You have to log in/ register before you can submit your answer.';
$string['guestnoupload'] = 'Sorry, guests are not allowed to upload';
Expand Down
7 changes: 5 additions & 2 deletions mod/assignment/type/upload/assignment.class.php
Expand Up @@ -184,8 +184,11 @@ function view_final_submission() {
echo '</form>';
echo '</div>';
} else if (!$this->isopen()) {
echo $OUTPUT->heading(get_string('nomoresubmissions','assignment'), 3);

if ($this->assignment->timeavailable < time()) {
echo $OUTPUT->heading(get_string('closedassignment','assignment'), 3);
} else {
echo $OUTPUT->heading(get_string('futureaassignment','assignment'), 3);
}
} else if ($this->drafts_tracked() and $state = $this->is_finalized($submission)) {
if ($state == ASSIGNMENT_STATUS_SUBMITTED) {
echo $OUTPUT->heading(get_string('submitedformarking','assignment'), 3);
Expand Down

0 comments on commit b9509a1

Please sign in to comment.