3 require_once("$CFG->dirroot/files/mimetypes.php");
5 define("OFFLINE", "0");
6 define("UPLOADSINGLE", "1");
8 $ASSIGNMENT_TYPE = array (OFFLINE => get_string("typeoffline", "assignment"),
9 UPLOADSINGLE => get_string("typeuploadsingle", "assignment") );
12 function assignment_add_instance($assignment) {
13 // Given an object containing all the necessary data,
14 // (defined by the form in mod.html) this function
15 // will create a new instance and return the id number
16 // of the new instance.
18 $assignment->timemodified = time();
20 $assignment->timedue = make_timestamp($assignment->dueyear, $assignment->duemonth, $assignment->dueday,
21 $assignment->duehour, $assignment->dueminute);
23 return insert_record("assignment", $assignment);
27 function assignment_update_instance($assignment) {
28 // Given an object containing all the necessary data,
29 // (defined by the form in mod.html) this function
30 // will update an existing instance with new data.
32 $assignment->timemodified = time();
33 $assignment->timedue = make_timestamp($assignment->dueyear, $assignment->duemonth, $assignment->dueday,
34 $assignment->duehour, $assignment->dueminute);
35 $assignment->id = $assignment->instance;
37 return update_record("assignment", $assignment);
41 function assignment_delete_instance($id) {
42 // Given an ID of an instance of this module,
43 // this function will permanently delete the instance
44 // and any data that depends on it.
46 if (! $assignment = get_record("assignment", "id", "$id")) {
52 if (! delete_records("assignment_submissions", "assignment", "$assignment->id")) {
56 if (! delete_records("assignment", "id", "$assignment->id")) {
63 function assignment_user_outline($course, $user, $mod, $assignment) {
64 if ($submission = assignment_get_submission($assignment, $user)) {
66 if ($submission->grade) {
67 $result->info = get_string("grade").": $submission->grade";
69 $result->time = $submission->timemodified;
75 function assignment_user_complete($course, $user, $mod, $assignment) {
76 if ($submission = assignment_get_submission($assignment, $user)) {
77 if ($basedir = assignment_file_area($assignment, $user)) {
78 if ($files = get_directory_list($basedir)) {
79 $countfiles = count($files)." ".get_string("uploadedfiles", "assignment");
80 foreach ($files as $file) {
81 $countfiles .= "; $file";
86 print_simple_box_start();
87 echo "<P><FONT SIZE=1>";
88 echo get_string("lastmodified").": ";
89 echo userdate($submission->timemodified);
90 echo assignment_print_difference($assignment->timedue - $submission->timemodified);
93 assignment_print_user_files($assignment, $user);
97 assignment_print_feedback($course, $submission);
99 print_simple_box_end();
102 print_string("notsubmittedyet", "assignment");
107 function assignment_cron () {
108 // Function to be run periodically according to the moodle cron
109 // Finds all assignment notifications that have yet to be mailed out, and mails them
113 $cutofftime = time() - $CFG->maxeditingtime;
115 if ($submissions = assignment_get_unmailed_submissions($cutofftime)) {
118 foreach ($submissions as $submission) {
120 echo "Processing assignment submission $submission->id\n";
122 if (! $user = get_record("user", "id", "$submission->userid")) {
123 echo "Could not find user $post->userid\n";
127 $USER->lang = $user->lang;
129 if (! $course = get_record("course", "id", "$submission->course")) {
130 echo "Could not find course $submission->course\n";
134 if (! isstudent($course->id, $user->id) and !isteacher($course->id, $user->id)) {
135 echo "$user->firstname $user->lastname not an active participant in $course->shortname\n";
139 if (! $teacher = get_record("user", "id", "$submission->teacher")) {
140 echo "Could not find teacher $submission->teacher\n";
144 if (! $mod = get_coursemodule_from_instance("assignment", $submission->assignment, $course->id)) {
145 echo "Could not find course module for assignment id $submission->assignment\n";
149 $strassignments = get_string("modulenameplural", "assignment");
150 $strassignment = get_string("modulename", "assignment");
152 $postsubject = "$course->shortname: $strassignments: $submission->name";
153 $posttext = "$course->shortname -> $strassignments -> $submission->name\n";
154 $posttext .= "---------------------------------------------------------------------\n";
155 $posttext .= "$teacher->firstname $teacher->lastname has posted some feedback on your\n";
156 $posttext .= "assignment submission for '$submission->name'\n\n";
157 $posttext .= "You can see it appended to your assignment submission:\n";
158 $posttext .= " $CFG->wwwroot/mod/assignment/view.php?id=$mod->id\n";
159 $posttext .= "---------------------------------------------------------------------\n";
160 if ($user->mailformat == 1) { // HTML
161 $posthtml = "<P><FONT FACE=sans-serif>".
162 "<A HREF=\"$CFG->wwwroot/course/view.php?id=$course->id\">$course->shortname</A> ->".
163 "<A HREF=\"$CFG->wwwroot/mod/assignment/index.php?id=$course->id\">$strassignments</A> ->".
164 "<A HREF=\"$CFG->wwwroot/mod/assignment/view.php?id=$mod->id\">$submission->name</A></FONT></P>";
165 $posthtml .= "<HR><FONT FACE=sans-serif>";
166 $posthtml .= "<P>$teacher->firstname $teacher->lastname has posted some feedback on your";
167 $posthtml .= " assignment submission for '<B>$submission->name</B>'</P>";
168 $posthtml .= "<P>You can see it <A HREF=\"$CFG->wwwroot/mod/assignment/view.php?id=$mod->id\">";
169 $posthtml .= "appended to your assignment submission</A>.</P></FONT><HR>";
174 if (! email_to_user($user, $teacher, $postsubject, $posttext, $posthtml)) {
175 echo "Error: assignment cron: Could not send out mail for id $submission->id to user $user->id ($user->email)\n";
177 if (! set_field("assignment_submissions", "mailed", "1", "id", "$submission->id")) {
178 echo "Could not update the mailed field for id $submission->id\n";
186 function assignment_print_recent_activity(&$logs, $isteacher=false) {
187 global $CFG, $COURSE_TEACHER_COLOR;
192 foreach ($logs as $log) {
193 if ($log->module == "assignment" and $log->action == "upload") {
194 $assignments[$log->info] = assignment_log_info($log);
195 $assignments[$log->info]->time = $log->time;
196 $assignments[$log->info]->url = $log->url;
201 $strftimerecent = get_string("strftimerecent");
203 print_headline(get_string("newsubmissions", "assignment").":");
204 foreach ($assignments as $assignment) {
205 $date = userdate($assignment->time, $strftimerecent);
206 echo "<P><FONT SIZE=1>$date - $assignment->firstname $assignment->lastname<BR>";
207 echo "\"<A HREF=\"$CFG->wwwroot/mod/assignment/$assignment->url\">";
208 echo "$assignment->name";
209 echo "</A>\"</FONT></P>";
216 function assignment_grades($assignmentid) {
217 /// Must return an array of grades, indexed by user, and a max grade.
219 $return->grades = get_records_menu("assignment_submissions", "assignment",
220 $assignmentid, "", "userid,grade");
221 $return->maxgrade = get_field("assignment", "grade", "id", "$assignmentid");
225 /// SQL STATEMENTS //////////////////////////////////////////////////////////////////
227 function assignment_log_info($log) {
229 return get_record_sql("SELECT a.name, u.firstname, u.lastname
230 FROM {$CFG->prefix}assignment a,
232 WHERE a.id = '$log->info'
233 AND u.id = '$log->userid'");
236 function assignment_get_all_submissions($assignment) {
237 /// Return all assignment submissions by ENROLLED students
239 return get_records_sql("SELECT a.*
240 FROM {$CFG->prefix}assignment_submissions a,
241 {$CFG->prefix}user_students s
242 WHERE a.userid = s.userid
243 AND s.course = '$assignment->course'
244 AND a.assignment = '$assignment->id'
245 ORDER BY a.timemodified DESC");
248 function assignment_get_users_done($assignment) {
249 /// Return list of users who have done an assignment
251 return get_records_sql("SELECT u.*
252 FROM {$CFG->prefix}user u,
253 {$CFG->prefix}user_students s,
254 {$CFG->prefix}assignment_submissions a
255 WHERE s.course = '$assignment->course'
258 AND a.assignment = '$assignment->id'
259 ORDER BY a.timemodified DESC");
262 function assignment_get_unmailed_submissions($cutofftime) {
263 /// Return list of marked submissions that have not been mailed out for currently enrolled students
265 return get_records_sql("SELECT s.*, a.course, a.name
266 FROM {$CFG->prefix}assignment_submissions s,
267 {$CFG->prefix}assignment a,
268 {$CFG->prefix}user_students us
270 AND s.timemarked < $cutofftime
272 AND s.assignment = a.id
273 AND s.userid = us.userid
274 AND a.course = us.course");
278 //////////////////////////////////////////////////////////////////////////////////////
280 function assignment_file_area_name($assignment, $user) {
281 // Creates a directory file name, suitable for make_upload_directory()
284 return "$assignment->course/$CFG->moddata/assignment/$assignment->id/$user->id";
287 function assignment_file_area($assignment, $user) {
288 return make_upload_directory( assignment_file_area_name($assignment, $user) );
291 function assignment_get_submission($assignment, $user) {
292 return get_record("assignment_submissions", "assignment", $assignment->id, "userid", $user->id);
295 function assignment_print_difference($time) {
297 $timetext = get_string("late", "assignment", format_time($time));
298 return " (<FONT COLOR=RED>$timetext</FONT>)";
300 $timetext = get_string("early", "assignment", format_time($time));
301 return " ($timetext)";
305 function assignment_print_submission($assignment, $user, $submission, $teachers, $grades) {
306 global $THEME, $USER;
308 echo "\n<TABLE BORDER=1 CELLSPACING=0 valign=top cellpadding=10 align=center>";
311 if ($assignment->type == OFFLINE) {
312 echo "\n<TD BGCOLOR=\"$THEME->body\" WIDTH=35 VALIGN=TOP>";
314 echo "\n<TD ROWSPAN=2 BGCOLOR=\"$THEME->body\" WIDTH=35 VALIGN=TOP>";
316 print_user_picture($user->id, $assignment->course, $user->picture);
318 echo "<TD NOWRAP BGCOLOR=\"$THEME->cellheading\">$user->firstname $user->lastname";
319 if ($submission->timemodified) {
320 echo " <FONT SIZE=1>".get_string("lastmodified").": ";
321 echo userdate($submission->timemodified);
322 echo assignment_print_difference($assignment->timedue - $submission->timemodified);
327 if ($assignment->type != OFFLINE) {
328 echo "\n<TR><TD BGCOLOR=\"$THEME->cellcontent\">";
329 if ($submission->timemodified) {
330 assignment_print_user_files($assignment, $user);
332 print_string("notsubmittedyet", "assignment");
338 echo "<TD WIDTH=35 VALIGN=TOP>";
339 if (!$submission->teacher) {
340 $submission->teacher = $USER->id;
342 print_user_picture($submission->teacher, $assignment->course, $teachers[$submission->teacher]->picture);
343 if ($submission->timemodified > $submission->timemarked) {
344 echo "<TD BGCOLOR=\"$THEME->cellheading2\">";
346 echo "<TD BGCOLOR=\"$THEME->cellheading\">";
348 echo get_string("feedback", "assignment").":";
349 choose_from_menu($grades, "g$submission->id", $submission->grade, get_string("grade")."...");
350 if ($submission->timemarked) {
351 echo " <FONT SIZE=1>".userdate($submission->timemarked)."</FONT>";
353 echo "<BR><TEXTAREA NAME=\"c$submission->id\" ROWS=6 COLS=60 WRAP=virtual>";
354 p($submission->comment);
355 echo "</TEXTAREA><BR>";
358 echo "</TABLE><BR CLEAR=ALL>\n";
361 function assignment_print_feedback($course, $submission) {
362 global $CFG, $THEME, $RATING;
364 if (! $teacher = get_record("user", "id", $submission->teacher)) {
365 error("Weird assignment error");
368 echo "\n<TABLE BORDER=0 CELLPADDING=1 CELLSPACING=1 ALIGN=CENTER><TR><TD BGCOLOR=#888888>";
369 echo "\n<TABLE BORDER=0 CELLPADDING=3 CELLSPACING=0 VALIGN=TOP>";
372 echo "\n<TD ROWSPAN=3 BGCOLOR=\"$THEME->body\" WIDTH=35 VALIGN=TOP>";
373 print_user_picture($teacher->id, $course->id, $teacher->picture);
375 echo "<TD NOWRAP WIDTH=100% BGCOLOR=\"$THEME->cellheading\">$teacher->firstname $teacher->lastname";
376 echo " <FONT SIZE=2><I>".userdate($submission->timemarked)."</I>";
379 echo "\n<TR><TD WIDTH=100% BGCOLOR=\"$THEME->cellcontent\">";
381 echo "<P ALIGN=RIGHT><FONT SIZE=-1><I>";
382 if ($submission->grade) {
383 echo get_string("grade").": $submission->grade";
385 echo get_string("nograde");
387 echo "</I></FONT></P>";
389 echo text_to_html($submission->comment);
390 echo "</TD></TR></TABLE>";
391 echo "</TD></TR></TABLE>";
395 function assignment_print_user_files($assignment, $user) {
396 // Arguments are objects
400 $filearea = assignment_file_area_name($assignment, $user);
402 if ($basedir = assignment_file_area($assignment, $user)) {
403 if ($files = get_directory_list($basedir)) {
404 foreach ($files as $file) {
405 $icon = mimeinfo("icon", $file);
406 if ($CFG->slasharguments) {
407 $ffurl = "file.php/$filearea/$file";
409 $ffurl = "file.php?file=/$filearea/$file";
412 echo "<IMG SRC=\"$CFG->wwwroot/files/pix/$icon\" HEIGHT=16 WIDTH=16 BORDER=0 ALT=\"File\">";
413 echo " <A TARGET=\"uploadedfile\" HREF=\"$CFG->wwwroot/$ffurl\">$file</A>";
420 function assignment_delete_user_files($assignment, $user, $exception) {
421 // Deletes all the user files in the assignment area for a user
422 // EXCEPT for any file named $exception
424 if ($basedir = assignment_file_area($assignment, $user)) {
425 if ($files = get_directory_list($basedir)) {
426 foreach ($files as $file) {
427 if ($file != $exception) {
428 unlink("$basedir/$file");
429 notify("Existing file '$file' has been deleted!");
436 function assignment_print_upload_form($assignment) {
437 // Arguments are objects
439 echo "<DIV ALIGN=CENTER>";
440 echo "<FORM ENCTYPE=\"multipart/form-data\" METHOD=\"POST\" ACTION=upload.php>";
441 echo " <INPUT TYPE=hidden NAME=MAX_FILE_SIZE value=\"$assignment->maxbytes\">";
442 echo " <INPUT TYPE=hidden NAME=id VALUE=\"$assignment->id\">";
443 echo " <INPUT NAME=\"newfile\" TYPE=\"file\" size=\"50\">";
444 echo " <INPUT TYPE=submit NAME=save VALUE=\"".get_string("uploadthisfile")."\">";