1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
<?PHP // $Id: view.php,v 1.25 2004/08/22 14:38:38 gustav_delius Exp $
require_once("../../config.php");
require_once("lib.php");
optional_variable($id); // Course Module ID
optional_variable($a); // Assignment ID
if ($id) {
if (! $cm = get_record("course_modules", "id", $id)) {
error("Course Module ID was incorrect");
}
if (! $course = get_record("course", "id", $cm->course)) {
error("Course is misconfigured");
}
if (! $assignment = get_record("assignment", "id", $cm->instance)) {
error("Course module is incorrect");
}
} else {
if (! $assignment = get_record("assignment", "id", $a)) {
error("Course module is incorrect");
}
if (! $course = get_record("course", "id", $assignment->course)) {
error("Course is misconfigured");
}
if (! $cm = get_coursemodule_from_instance("assignment", $assignment->id, $course->id)) {
error("Course Module ID was incorrect");
}
}
require_course_login($course);
add_to_log($course->id, "assignment", "view", "view.php?id=$cm->id", $assignment->id, $cm->id);
$strassignments = get_string("modulenameplural", "assignment");
$strassignment = get_string("modulename", "assignment");
print_header_simple($assignment->name, "",
"<A HREF=index.php?id=$course->id>$strassignments</A> -> $assignment->name",
"", "", true, update_module_button($cm->id, $course->id, $strassignment), navmenu($course, $cm));
if (isteacher($course->id)) {
echo '<p align="right">';
if ($assignment->type == OFFLINE) {
echo "<a href=\"submissions.php?id=$assignment->id\">".
get_string("viewfeedback", "assignment")."</a>";
} else {
$currentgroup = get_current_group($course->id);
if ($currentgroup and isteacheredit($course->id)) {
$group = get_record("groups", "id", $currentgroup);
$groupname = " ($group->name)";
} else {
$groupname = "";
}
$count = assignment_count_real_submissions($assignment, $currentgroup);
echo "<a href=\"submissions.php?id=$assignment->id\">".
get_string("viewsubmissions", "assignment", $count)."</a>$groupname";
}
echo '</p>';
} else if (!$cm->visible) {
notice(get_string("activityiscurrentlyhidden"));
}
print_simple_box_start("CENTER");
print_heading($assignment->name, "CENTER");
$timedifference = $assignment->timedue - time();
if ($timedifference < 31536000) { // Don't bother showing dates over a year in the future
$strdifference = format_time($timedifference);
if ($timedifference < 0) {
$strdifference = "<font color=\"red\">$strdifference</font>";
}
$strduedate = userdate($assignment->timedue)." ($strdifference)";
echo "<b>".get_string("duedate", "assignment")."</b>: $strduedate<br />";
}
if ($assignment->grade < 0) {
$scaleid = - ($assignment->grade);
if ($scale = get_record("scale", "id", $scaleid)) {
$scalegrades = make_menu_from_list($scale->scale);
echo "<b>".get_string("grade")."</b>: $scale->name ";
print_scale_menu_helpbutton($course->id, $scale);
echo "<br />";
}
} else if ($assignment->grade > 0) {
echo "<b>".get_string("maximumgrade")."</b>: $assignment->grade<br>";
}
echo "<br />";
echo format_text($assignment->description, $assignment->format);
print_simple_box_end();
echo "<br />";
if (isstudent($course->id)) {
$submission = assignment_get_submission($assignment, $USER);
if ($assignment->type == OFFLINE) {
if ($submission->timemarked) {
if (isset($scalegrades)) {
$submission->grade = $scalegrades[$submission->grade];
}
assignment_print_feedback($course, $submission, $assignment);
}
} else {
if ($submission and $submission->timemodified) {
print_simple_box_start("center");
echo "<center>";
print_heading(get_string("yoursubmission","assignment").":", "center");
echo "<p><font size=-1><b>".get_string("lastmodified")."</b>: ".userdate($submission->timemodified)."</font></p>";
assignment_print_user_files($assignment, $USER);
print_simple_box_end();
} else {
print_heading(get_string("notsubmittedyet","assignment"));
}
echo "<hr size=1 noshade>";
if ($submission and $submission->timemarked) {
print_heading(get_string("submissionfeedback", "assignment").":", "center");
if (isset($scalegrades)) {
$submission->grade = $scalegrades[$submission->grade];
}
assignment_print_feedback($course, $submission, $assignment);
}
if (!$submission->timemarked or $assignment->resubmit) {
if ($submission and $submission->timemodified) {
echo "<p align=\"center\">".get_string("overwritewarning", "assignment")."</p>";
}
print_heading(get_string("submitassignment", "assignment").":", "center");
assignment_print_upload_form($assignment);
}
}
}
print_footer($course);
?>
|