3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * assignment_base is the base class for assignment types
21 * This class provides all the functionality for an assignment
23 * @package mod-assignment
24 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 /** Include eventslib.php */
29 require_once($CFG->libdir.'/eventslib.php');
30 /** Include formslib.php */
31 require_once($CFG->libdir.'/formslib.php');
32 /** Include calendar/lib.php */
33 require_once($CFG->dirroot.'/calendar/lib.php');
35 /** ASSIGNMENT_COUNT_WORDS = 1 */
36 define('ASSIGNMENT_COUNT_WORDS', 1);
37 /** ASSIGNMENT_COUNT_LETTERS = 2 */
38 define('ASSIGNMENT_COUNT_LETTERS', 2);
41 * Standard base class for all assignment submodules (assignment types).
43 * @package mod-assignment
44 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
45 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
47 class assignment_base {
50 const FILTER_SUBMITTED = 1;
51 const FILTER_REQUIRE_GRADING = 2;
72 * @todo document this var
76 * @todo document this var
83 * Constructor for the base assignment class
85 * Constructor for the base assignment class.
86 * If cmid is set create the cm, course, assignment objects.
87 * If the assignment is hidden and the user is not a teacher then
88 * this prints a page header and notice.
92 * @param int $cmid the current course module id - not set for new assignments
93 * @param object $assignment usually null, but if we have it we pass it to save db access
94 * @param object $cm usually null, but if we have it we pass it to save db access
95 * @param object $course usually null, but if we have it we pass it to save db access
97 function assignment_base($cmid='staticonly', $assignment=NULL, $cm=NULL, $course=NULL) {
100 if ($cmid == 'staticonly') {
101 //use static functions only!
109 } else if (! $this->cm = get_coursemodule_from_id('assignment', $cmid)) {
110 print_error('invalidcoursemodule');
113 $this->context = get_context_instance(CONTEXT_MODULE, $this->cm->id);
116 $this->course = $course;
117 } else if ($this->cm->course == $COURSE->id) {
118 $this->course = $COURSE;
119 } else if (! $this->course = $DB->get_record('course', array('id'=>$this->cm->course))) {
120 print_error('invalidid', 'assignment');
124 $this->assignment = $assignment;
125 } else if (! $this->assignment = $DB->get_record('assignment', array('id'=>$this->cm->instance))) {
126 print_error('invalidid', 'assignment');
129 $this->assignment->cmidnumber = $this->cm->idnumber; // compatibility with modedit assignment obj
130 $this->assignment->courseid = $this->course->id; // compatibility with modedit assignment obj
132 $this->strassignment = get_string('modulename', 'assignment');
133 $this->strassignments = get_string('modulenameplural', 'assignment');
134 $this->strsubmissions = get_string('submissions', 'assignment');
135 $this->strlastmodified = get_string('lastmodified');
136 $this->pagetitle = strip_tags($this->course->shortname.': '.$this->strassignment.': '.format_string($this->assignment->name,true));
138 // visibility handled by require_login() with $cm parameter
139 // get current group only when really needed
141 /// Set up things for a HTML editor if it's needed
142 $this->defaultformat = editors_get_preferred_format();
146 * Display the assignment, used by view.php
148 * This in turn calls the methods producing individual parts of the page
152 $context = get_context_instance(CONTEXT_MODULE,$this->cm->id);
153 require_capability('mod/assignment:view', $context);
155 add_to_log($this->course->id, "assignment", "view", "view.php?id={$this->cm->id}",
156 $this->assignment->id, $this->cm->id);
158 $this->view_header();
164 $this->view_feedback();
166 $this->view_footer();
170 * Display the header and top of a page
172 * (this doesn't change much for assignment types)
173 * This is used by the view() method to print the header of view.php but
174 * it can be used on other pages in which case the string to denote the
175 * page in the navigation trail should be passed as an argument
178 * @param string $subpage Description of subpage to be used in navigation trail
180 function view_header($subpage='') {
181 global $CFG, $PAGE, $OUTPUT;
184 $PAGE->navbar->add($subpage);
187 $PAGE->set_title($this->pagetitle);
188 $PAGE->set_heading($this->course->fullname);
190 echo $OUTPUT->header();
192 groups_print_activity_menu($this->cm, $CFG->wwwroot . '/mod/assignment/view.php?id=' . $this->cm->id);
194 echo '<div class="reportlink">'.$this->submittedlink().'</div>';
195 echo '<div class="clearer"></div>';
200 * Display the assignment intro
202 * This will most likely be extended by assignment type plug-ins
203 * The default implementation prints the assignment description in a box
205 function view_intro() {
207 echo $OUTPUT->box_start('generalbox boxaligncenter', 'intro');
208 echo format_module_intro('assignment', $this->assignment, $this->cm->id);
209 echo $OUTPUT->box_end();
213 * Display the assignment dates
215 * Prints the assignment start and end dates in a box.
216 * This will be suitable for most assignment types
218 function view_dates() {
220 if (!$this->assignment->timeavailable && !$this->assignment->timedue) {
224 echo $OUTPUT->box_start('generalbox boxaligncenter', 'dates');
226 if ($this->assignment->timeavailable) {
227 echo '<tr><td class="c0">'.get_string('availabledate','assignment').':</td>';
228 echo ' <td class="c1">'.userdate($this->assignment->timeavailable).'</td></tr>';
230 if ($this->assignment->timedue) {
231 echo '<tr><td class="c0">'.get_string('duedate','assignment').':</td>';
232 echo ' <td class="c1">'.userdate($this->assignment->timedue).'</td></tr>';
235 echo $OUTPUT->box_end();
240 * Display the bottom and footer of a page
242 * This default method just prints the footer.
243 * This will be suitable for most assignment types
245 function view_footer() {
247 echo $OUTPUT->footer();
251 * Display the feedback to the student
253 * This default method prints the teacher picture and name, date when marked,
254 * grade and teacher submissioncomment.
259 * @param object $submission The submission object or NULL in which case it will be loaded
261 function view_feedback($submission=NULL) {
262 global $USER, $CFG, $DB, $OUTPUT;
263 require_once($CFG->libdir.'/gradelib.php');
265 if (!is_enrolled($this->context, $USER, 'mod/assignment:view')) {
266 // can not submit assignments -> no feedback
270 if (!$submission) { /// Get submission for this assignment
271 $submission = $this->get_submission($USER->id);
273 // Check the user can submit
274 $cansubmit = has_capability('mod/assignment:submit', $this->context, $USER->id, false);
275 // If not then check if the user still has the view cap and has a previous submission
276 $cansubmit = $cansubmit || (!empty($submission) && has_capability('mod/assignment:view', $this->context, $USER->id, false));
279 // can not submit assignments -> no feedback
283 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, $USER->id);
284 $item = $grading_info->items[0];
285 $grade = $item->grades[$USER->id];
287 if ($grade->hidden or $grade->grade === false) { // hidden or error
291 if ($grade->grade === null and empty($grade->str_feedback)) { /// Nothing to show yet
295 $graded_date = $grade->dategraded;
296 $graded_by = $grade->usermodified;
298 /// We need the teacher info
299 if (!$teacher = $DB->get_record('user', array('id'=>$graded_by))) {
300 print_error('cannotfindteacher');
303 /// Print the feedback
304 echo $OUTPUT->heading(get_string('feedbackfromteacher', 'assignment', fullname($teacher)));
306 echo '<table cellspacing="0" class="feedback">';
309 echo '<td class="left picture">';
311 echo $OUTPUT->user_picture($teacher);
314 echo '<td class="topic">';
315 echo '<div class="from">';
317 echo '<div class="fullname">'.fullname($teacher).'</div>';
319 echo '<div class="time">'.userdate($graded_date).'</div>';
325 echo '<td class="left side"> </td>';
326 echo '<td class="content">';
327 echo '<div class="grade">';
328 echo get_string("grade").': '.$grade->str_long_grade;
330 echo '<div class="clearer"></div>';
332 echo '<div class="comment">';
333 echo $grade->str_feedback;
337 if ($this->type == 'uploadsingle') { //@TODO: move to overload view_feedback method in the class or is uploadsingle merging into upload?
338 $responsefiles = $this->print_responsefiles($submission->userid, true);
339 if (!empty($responsefiles)) {
341 echo '<td class="left side"> </td>';
342 echo '<td class="content">';
352 * Returns a link with info about the state of the assignment submissions
354 * This is used by view_header to put this link at the top right of the page.
355 * For teachers it gives the number of submitted assignments with a link
356 * For students it gives the time of their submission.
357 * This will be suitable for most assignment types.
361 * @param bool $allgroup print all groups info if user can access all groups, suitable for index.php
364 function submittedlink($allgroups=false) {
369 $urlbase = "{$CFG->wwwroot}/mod/assignment/";
371 $context = get_context_instance(CONTEXT_MODULE,$this->cm->id);
372 if (has_capability('mod/assignment:grade', $context)) {
373 if ($allgroups and has_capability('moodle/site:accessallgroups', $context)) {
376 $group = groups_get_activity_group($this->cm);
378 if ($count = $this->count_real_submissions($group)) {
379 $submitted = '<a href="'.$urlbase.'submissions.php?id='.$this->cm->id.'">'.
380 get_string('viewsubmissions', 'assignment', $count).'</a>';
382 $submitted = '<a href="'.$urlbase.'submissions.php?id='.$this->cm->id.'">'.
383 get_string('noattempts', 'assignment').'</a>';
387 if ($submission = $this->get_submission($USER->id)) {
388 if ($submission->timemodified) {
389 if ($submission->timemodified <= $this->assignment->timedue || empty($this->assignment->timedue)) {
390 $submitted = '<span class="early">'.userdate($submission->timemodified).'</span>';
392 $submitted = '<span class="late">'.userdate($submission->timemodified).'</span>';
404 * @todo Document this function
406 function setup_elements(&$mform) {
411 * Any preprocessing needed for the settings form for
412 * this assignment type
414 * @param array $default_values - array to fill in with the default values
415 * in the form 'formelement' => 'value'
416 * @param object $form - the form that is to be displayed
419 function form_data_preprocessing(&$default_values, $form) {
423 * Any extra validation checks needed for the settings
424 * form for this assignment type
426 * See lib/formslib.php, 'validation' function for details
428 function form_validation($data, $files) {
433 * Create a new assignment activity
435 * Given an object containing all the necessary data,
436 * (defined by the form in mod_form.php) this function
437 * will create a new instance and return the id number
438 * of the new instance.
439 * The due data is added to the calendar
440 * This is common to all assignment types.
444 * @param object $assignment The data from the form on mod_form.php
445 * @return int The id of the assignment
447 function add_instance($assignment) {
450 $assignment->timemodified = time();
451 $assignment->courseid = $assignment->course;
453 $returnid = $DB->insert_record("assignment", $assignment);
454 $assignment->id = $returnid;
456 if ($assignment->timedue) {
457 $event = new object();
458 $event->name = $assignment->name;
459 $event->description = format_module_intro('assignment', $assignment, $assignment->coursemodule);
460 $event->courseid = $assignment->course;
463 $event->modulename = 'assignment';
464 $event->instance = $returnid;
465 $event->eventtype = 'due';
466 $event->timestart = $assignment->timedue;
467 $event->timeduration = 0;
469 calendar_event::create($event);
472 assignment_grade_item_update($assignment);
478 * Deletes an assignment activity
480 * Deletes all database records, files and calendar events for this assignment.
484 * @param object $assignment The assignment to be deleted
485 * @return boolean False indicates error
487 function delete_instance($assignment) {
490 $assignment->courseid = $assignment->course;
494 // now get rid of all files
495 $fs = get_file_storage();
496 if ($cm = get_coursemodule_from_instance('assignment', $assignment->id)) {
497 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
498 $fs->delete_area_files($context->id);
501 if (! $DB->delete_records('assignment_submissions', array('assignment'=>$assignment->id))) {
505 if (! $DB->delete_records('event', array('modulename'=>'assignment', 'instance'=>$assignment->id))) {
509 if (! $DB->delete_records('assignment', array('id'=>$assignment->id))) {
512 $mod = $DB->get_field('modules','id',array('name'=>'assignment'));
514 assignment_grade_item_delete($assignment);
520 * Updates a new assignment activity
522 * Given an object containing all the necessary data,
523 * (defined by the form in mod_form.php) this function
524 * will update the assignment instance and return the id number
525 * The due date is updated in the calendar
526 * This is common to all assignment types.
530 * @param object $assignment The data from the form on mod_form.php
531 * @return bool success
533 function update_instance($assignment) {
536 $assignment->timemodified = time();
538 $assignment->id = $assignment->instance;
539 $assignment->courseid = $assignment->course;
541 $DB->update_record('assignment', $assignment);
543 if ($assignment->timedue) {
544 $event = new object();
546 if ($event->id = $DB->get_field('event', 'id', array('modulename'=>'assignment', 'instance'=>$assignment->id))) {
548 $event->name = $assignment->name;
549 $event->description = format_module_intro('assignment', $assignment, $assignment->coursemodule);
550 $event->timestart = $assignment->timedue;
552 $calendarevent = calendar_event::load($event->id);
553 $calendarevent->update($event);
555 $event = new object();
556 $event->name = $assignment->name;
557 $event->description = format_module_intro('assignment', $assignment, $assignment->coursemodule);
558 $event->courseid = $assignment->course;
561 $event->modulename = 'assignment';
562 $event->instance = $assignment->id;
563 $event->eventtype = 'due';
564 $event->timestart = $assignment->timedue;
565 $event->timeduration = 0;
567 calendar_event::create($event);
570 $DB->delete_records('event', array('modulename'=>'assignment', 'instance'=>$assignment->id));
573 // get existing grade item
574 assignment_grade_item_update($assignment);
580 * Update grade item for this submission.
582 function update_grade($submission) {
583 assignment_update_grades($this->assignment, $submission->userid);
587 * Top-level function for handling of submissions called by submissions.php
589 * This is for handling the teacher interaction with the grading interface
590 * This should be suitable for most assignment types.
593 * @param string $mode Specifies the kind of teacher interaction taking place
595 function submissions($mode) {
596 ///The main switch is changed to facilitate
597 ///1) Batch fast grading
598 ///2) Skip to the next one on the popup
599 ///3) Save and Skip to the next one on the popup
601 //make user global so we can use the id
602 global $USER, $OUTPUT, $DB, $PAGE;
604 $mailinfo = optional_param('mailinfo', null, PARAM_BOOL);
606 if (optional_param('next', null, PARAM_BOOL)) {
609 if (optional_param('saveandnext', null, PARAM_BOOL)) {
613 if (is_null($mailinfo)) {
614 if (optional_param('sesskey', null, PARAM_BOOL)) {
615 set_user_preference('assignment_mailinfo', $mailinfo);
617 $mailinfo = get_user_preferences('assignment_mailinfo', 0);
620 set_user_preference('assignment_mailinfo', $mailinfo);
624 case 'grade': // We are in a main window grading
625 if ($submission = $this->process_feedback()) {
626 $this->display_submissions(get_string('changessaved'));
628 $this->display_submissions();
632 case 'single': // We are in a main window displaying one submission
633 if ($submission = $this->process_feedback()) {
634 $this->display_submissions(get_string('changessaved'));
636 $this->display_submission();
640 case 'all': // Main window, display everything
641 $this->display_submissions();
645 ///do the fast grading stuff - this process should work for all 3 subclasses
649 if (isset($_POST['submissioncomment'])) {
650 $col = 'submissioncomment';
653 if (isset($_POST['menu'])) {
658 //both submissioncomment and grade columns collapsed..
659 $this->display_submissions();
663 foreach ($_POST[$col] as $id => $unusedvalue){
665 $id = (int)$id; //clean parameter name
667 $this->process_outcomes($id);
669 if (!$submission = $this->get_submission($id)) {
670 $submission = $this->prepare_new_submission($id);
671 $newsubmission = true;
673 $newsubmission = false;
675 unset($submission->data1); // Don't need to update this.
676 unset($submission->data2); // Don't need to update this.
678 //for fast grade, we need to check if any changes take place
682 $grade = $_POST['menu'][$id];
683 $updatedb = $updatedb || ($submission->grade != $grade);
684 $submission->grade = $grade;
686 if (!$newsubmission) {
687 unset($submission->grade); // Don't need to update this.
691 $commentvalue = trim($_POST['submissioncomment'][$id]);
692 $updatedb = $updatedb || ($submission->submissioncomment != $commentvalue);
693 $submission->submissioncomment = $commentvalue;
695 unset($submission->submissioncomment); // Don't need to update this.
698 $submission->teacher = $USER->id;
700 $submission->mailed = (int)(!$mailinfo);
703 $submission->timemarked = time();
705 //if it is not an update, we don't change the last modified time etc.
706 //this will also not write into database if no submissioncomment and grade is entered.
709 if ($newsubmission) {
710 if (!isset($submission->submissioncomment)) {
711 $submission->submissioncomment = '';
713 $sid = $DB->insert_record('assignment_submissions', $submission);
714 $submission->id = $sid;
716 $DB->update_record('assignment_submissions', $submission);
719 // trigger grade event
720 $this->update_grade($submission);
722 //add to log only if updating
723 add_to_log($this->course->id, 'assignment', 'update grades',
724 'submissions.php?id='.$this->assignment->id.'&user='.$submission->userid,
725 $submission->userid, $this->cm->id);
730 $message = $OUTPUT->notification(get_string('changessaved'), 'notifysuccess');
732 $this->display_submissions($message);
737 ///We are in pop up. save the current one and go to the next one.
738 //first we save the current changes
739 if ($submission = $this->process_feedback()) {
740 //print_heading(get_string('changessaved'));
741 //$extra_javascript = $this->update_main_listing($submission);
745 /// We are currently in pop up, but we want to skip to next one without saving.
746 /// This turns out to be similar to a single case
747 /// The URL used is for the next submission.
748 $offset = required_param('offset', PARAM_INT);
749 $nextid = required_param('nextid', PARAM_INT);
750 $id = required_param('id', PARAM_INT);
751 $offset = (int)$offset+1;
752 //$this->display_submission($offset+1 , $nextid);
753 redirect('submissions.php?id='.$id.'&userid='. $nextid . '&mode=single&offset='.$offset);
757 $this->display_submission();
761 echo "something seriously is wrong!!";
767 * Helper method updating the listing on the main script from popup using javascript
771 * @param $submission object The submission whose data is to be updated on the main page
773 function update_main_listing($submission) {
774 global $SESSION, $CFG, $OUTPUT;
778 $perpage = get_user_preferences('assignment_perpage', 10);
780 $quickgrade = get_user_preferences('assignment_quickgrade', 0);
782 /// Run some Javascript to try and update the parent page
783 $output .= '<script type="text/javascript">'."\n<!--\n";
784 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['submissioncomment'])) {
786 $output.= 'opener.document.getElementById("submissioncomment'.$submission->userid.'").value="'
787 .trim($submission->submissioncomment).'";'."\n";
789 $output.= 'opener.document.getElementById("com'.$submission->userid.
790 '").innerHTML="'.shorten_text(trim(strip_tags($submission->submissioncomment)), 15)."\";\n";
794 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['grade'])) {
795 //echo optional_param('menuindex');
797 $output.= 'opener.document.getElementById("menumenu'.$submission->userid.
798 '").selectedIndex="'.optional_param('menuindex', 0, PARAM_INT).'";'."\n";
800 $output.= 'opener.document.getElementById("g'.$submission->userid.'").innerHTML="'.
801 $this->display_grade($submission->grade)."\";\n";
804 //need to add student's assignments in there too.
805 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['timemodified']) &&
806 $submission->timemodified) {
807 $output.= 'opener.document.getElementById("ts'.$submission->userid.
808 '").innerHTML="'.addslashes_js($this->print_student_answer($submission->userid)).userdate($submission->timemodified)."\";\n";
811 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['timemarked']) &&
812 $submission->timemarked) {
813 $output.= 'opener.document.getElementById("tt'.$submission->userid.
814 '").innerHTML="'.userdate($submission->timemarked)."\";\n";
817 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['status'])) {
818 $output.= 'opener.document.getElementById("up'.$submission->userid.'").className="s1";';
819 $buttontext = get_string('update');
820 $url = new moodle_url('/mod/assignment/submissions.php', array(
821 'id' => $this->cm->id,
822 'userid' => $submission->userid,
824 'offset' => (optional_param('offset', '', PARAM_INT)-1)));
825 $button = $OUTPUT->action_link($url, $buttontext, new popup_action('click', $url, 'grade'.$submission->userid, array('height' => 450, 'width' => 700)), array('ttile'=>$buttontext));
827 $output .= 'opener.document.getElementById("up'.$submission->userid.'").innerHTML="'.addslashes_js($button).'";';
830 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, $submission->userid);
832 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['finalgrade'])) {
833 $output.= 'opener.document.getElementById("finalgrade_'.$submission->userid.
834 '").innerHTML="'.$grading_info->items[0]->grades[$submission->userid]->str_grade.'";'."\n";
837 if (!empty($CFG->enableoutcomes) and empty($SESSION->flextable['mod-assignment-submissions']->collapse['outcome'])) {
839 if (!empty($grading_info->outcomes)) {
840 foreach($grading_info->outcomes as $n=>$outcome) {
841 if ($outcome->grades[$submission->userid]->locked) {
846 $output.= 'opener.document.getElementById("outcome_'.$n.'_'.$submission->userid.
847 '").selectedIndex="'.$outcome->grades[$submission->userid]->grade.'";'."\n";
850 $options = make_grades_menu(-$outcome->scaleid);
851 $options[0] = get_string('nooutcome', 'grades');
852 $output.= 'opener.document.getElementById("outcome_'.$n.'_'.$submission->userid.'").innerHTML="'.$options[$outcome->grades[$submission->userid]->grade]."\";\n";
859 $output .= "\n-->\n</script>";
864 * Return a grade in user-friendly form, whether it's a scale or not
867 * @param mixed $grade
868 * @return string User-friendly representation of grade
870 function display_grade($grade) {
873 static $scalegrades = array(); // Cache scales for each assignment - they might have different scales!!
875 if ($this->assignment->grade >= 0) { // Normal number
879 return $grade.' / '.$this->assignment->grade;
883 if (empty($scalegrades[$this->assignment->id])) {
884 if ($scale = $DB->get_record('scale', array('id'=>-($this->assignment->grade)))) {
885 $scalegrades[$this->assignment->id] = make_menu_from_list($scale->scale);
890 if (isset($scalegrades[$this->assignment->id][$grade])) {
891 return $scalegrades[$this->assignment->id][$grade];
898 * Display a single submission, ready for grading on a popup window
900 * This default method prints the teacher info and submissioncomment box at the top and
901 * the student info and submission at the bottom.
902 * This method also fetches the necessary data in order to be able to
903 * provide a "Next submission" button.
904 * Calls preprocess_submission() to give assignment type plug-ins a chance
905 * to process submissions before they are graded
906 * This method gets its arguments from the page parameters userid and offset
910 * @param string $extra_javascript
912 function display_submission($offset=-1,$userid =-1, $display=true) {
913 global $CFG, $DB, $PAGE, $OUTPUT;
914 require_once($CFG->libdir.'/gradelib.php');
915 require_once($CFG->libdir.'/tablelib.php');
916 require_once("$CFG->dirroot/repository/lib.php");
918 $userid = required_param('userid', PARAM_INT);
921 $offset = required_param('offset', PARAM_INT);//offset for where to start looking for student.
923 $filter = optional_param('filter', 0, PARAM_INT);
925 if (!$user = $DB->get_record('user', array('id'=>$userid))) {
926 print_error('nousers');
929 if (!$submission = $this->get_submission($user->id)) {
930 $submission = $this->prepare_new_submission($userid);
932 if ($submission->timemodified > $submission->timemarked) {
933 $subtype = 'assignmentnew';
935 $subtype = 'assignmentold';
938 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, array($user->id));
939 $gradingdisabled = $grading_info->items[0]->grades[$userid]->locked || $grading_info->items[0]->grades[$userid]->overridden;
941 /// construct SQL, using current offset to find the data of the next student
942 $course = $this->course;
943 $assignment = $this->assignment;
945 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
947 /// Get all ppl that can submit assignments
949 $currentgroup = groups_get_activity_group($cm);
950 $gradebookroles = explode(",", $CFG->gradebookroles);
951 $users = get_enrolled_users($context, 'mod/assignment:view', $currentgroup, 'u.id');
953 $users = array_keys($users);
954 // if groupmembersonly used, remove users who are not in any group
955 if (!empty($CFG->enablegroupmembersonly) and $cm->groupmembersonly) {
956 if ($groupingusers = groups_get_grouping_members($cm->groupingid, 'u.id', 'u.id')) {
957 $users = array_intersect($users, array_keys($groupingusers));
964 if($filter == 'submitted') {
965 $where .= 's.timemodified > 0 AND ';
966 } else if($filter == 'requiregrading') {
967 $where .= 's.timemarked < s.timemodified AND ';
971 $userfields = user_picture::fields('u', array('lastaccess'));
972 $select = "SELECT $userfields,
973 s.id AS submissionid, s.grade, s.submissioncomment,
974 s.timemodified, s.timemarked,
975 COALESCE(SIGN(SIGN(s.timemarked) + SIGN(s.timemarked - s.timemodified)), 0) AS status ";
976 $sql = 'FROM {user} u '.
977 'LEFT JOIN {assignment_submissions} s ON u.id = s.userid
978 AND s.assignment = '.$this->assignment->id.' '.
979 'WHERE '.$where.'u.id IN ('.implode(',', $users).') ';
981 if ($sort = flexible_table::get_sort_for_table('mod-assignment-submissions')) {
982 $sort = 'ORDER BY '.$sort.' ';
984 $auser = $DB->get_records_sql($select.$sql.$sort, null, $offset, 2);
986 if (is_array($auser) && count($auser)>1) {
987 $nextuser = next($auser);
988 /// Calculate user status
989 $nextuser->status = ($nextuser->timemarked > 0) && ($nextuser->timemarked >= $nextuser->timemodified);
990 $nextid = $nextuser->id;
994 if ($submission->teacher) {
995 $teacher = $DB->get_record('user', array('id'=>$submission->teacher));
1001 $this->preprocess_submission($submission);
1003 $mformdata = new stdclass;
1004 $mformdata->context = $this->context;
1005 $mformdata->maxbytes = $this->course->maxbytes;
1006 $mformdata->courseid = $this->course->id;
1007 $mformdata->teacher = $teacher;
1008 $mformdata->assignment = $assignment;
1009 $mformdata->submission = $submission;
1010 $mformdata->lateness = $this->display_lateness($submission->timemodified);
1011 $mformdata->auser = $auser;
1012 $mformdata->user = $user;
1013 $mformdata->offset = $offset;
1014 $mformdata->userid = $userid;
1015 $mformdata->cm = $this->cm;
1016 $mformdata->grading_info = $grading_info;
1017 $mformdata->enableoutcomes = $CFG->enableoutcomes;
1018 $mformdata->grade = $this->assignment->grade;
1019 $mformdata->gradingdisabled = $gradingdisabled;
1020 $mformdata->nextid = $nextid;
1021 $mformdata->submissioncomment= $submission->submissioncomment;
1022 $mformdata->submissioncommentformat= FORMAT_HTML;
1023 $mformdata->submission_content= $this->print_user_files($user->id,true);
1024 $mformdata->filter = $filter;
1025 if ($assignment->assignmenttype == 'upload') {
1026 $mformdata->fileui_options = array('subdirs'=>1, 'maxbytes'=>$assignment->maxbytes, 'maxfiles'=>$assignment->var1, 'accepted_types'=>'*', 'return_types'=>FILE_INTERNAL);
1027 } elseif ($assignment->assignmenttype == 'uploadsingle') {
1028 $mformdata->fileui_options = array('subdirs'=>0, 'maxbytes'=>$CFG->userquota, 'maxfiles'=>1, 'accepted_types'=>'*', 'return_types'=>FILE_INTERNAL);
1031 $submitform = new mod_assignment_grading_form( null, $mformdata );
1034 $ret_data = new stdClass();
1035 $ret_data->mform = $submitform;
1036 $ret_data->fileui_options = $mformdata->fileui_options;
1040 if ($submitform->is_cancelled()) {
1041 redirect('submissions.php?id='.$this->cm->id);
1044 $submitform->set_data($mformdata);
1046 $PAGE->set_title($this->course->fullname . ': ' .get_string('feedback', 'assignment').' - '.fullname($user, true));
1047 $PAGE->set_heading($this->course->fullname);
1048 $PAGE->navbar->add(get_string('submissions', 'assignment'), new moodle_url('/mod/assignment/submissions.php', array('id'=>$cm->id)));
1049 $PAGE->navbar->add(fullname($user, true));
1051 echo $OUTPUT->header();
1052 echo $OUTPUT->heading(get_string('feedback', 'assignment').': '.fullname($user, true));
1054 // display mform here...
1055 $submitform->display();
1057 $customfeedback = $this->custom_feedbackform($submission, true);
1058 if (!empty($customfeedback)) {
1059 echo $customfeedback;
1062 echo $OUTPUT->footer();
1066 * Preprocess submission before grading
1068 * Called by display_submission()
1069 * The default type does nothing here.
1071 * @param object $submission The submission object
1073 function preprocess_submission(&$submission) {
1077 * Display all the submissions ready for grading
1083 * @param string $message
1086 function display_submissions($message='') {
1087 global $CFG, $DB, $USER, $DB, $OUTPUT, $PAGE;
1088 require_once($CFG->libdir.'/gradelib.php');
1090 /* first we check to see if the form has just been submitted
1091 * to request user_preference updates
1094 $filters = array(self::FILTER_ALL => get_string('all'),
1095 self::FILTER_SUBMITTED => get_string('submitted', 'assignment'),
1096 self::FILTER_REQUIRE_GRADING => get_string('requiregrading', 'assignment'));
1098 $updatepref = optional_param('updatepref', 0, PARAM_INT);
1100 if (isset($_POST['updatepref'])){
1101 $perpage = optional_param('perpage', 10, PARAM_INT);
1102 $perpage = ($perpage <= 0) ? 10 : $perpage ;
1103 $filter = optional_param('filter', 0, PARAM_INT);
1104 set_user_preference('assignment_perpage', $perpage);
1105 set_user_preference('assignment_quickgrade', optional_param('quickgrade', 0, PARAM_BOOL));
1106 set_user_preference('assignment_filter', $filter);
1109 /* next we get perpage and quickgrade (allow quick grade) params
1112 $perpage = get_user_preferences('assignment_perpage', 10);
1113 $quickgrade = get_user_preferences('assignment_quickgrade', 0);
1114 $filter = get_user_preferences('assignment_filter', 0);
1115 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id);
1117 if (!empty($CFG->enableoutcomes) and !empty($grading_info->outcomes)) {
1118 $uses_outcomes = true;
1120 $uses_outcomes = false;
1123 $page = optional_param('page', 0, PARAM_INT);
1124 $strsaveallfeedback = get_string('saveallfeedback', 'assignment');
1126 /// Some shortcuts to make the code read better
1128 $course = $this->course;
1129 $assignment = $this->assignment;
1132 $tabindex = 1; //tabindex for quick grading tabbing; Not working for dropdowns yet
1133 add_to_log($course->id, 'assignment', 'view submission', 'submissions.php?id='.$this->cm->id, $this->assignment->id, $this->cm->id);
1135 $PAGE->set_title(format_string($this->assignment->name,true));
1136 $PAGE->set_heading($this->course->fullname);
1137 echo $OUTPUT->header();
1139 echo '<div class="usersubmissions">';
1141 /// Print quickgrade form around the table
1143 $formattrs = array();
1144 $formattrs['action'] = new moodle_url('/mod/assignment/submissions.php');
1145 $formattrs['id'] = 'fastg';
1146 $formattrs['method'] = 'post';
1148 echo html_writer::start_tag('form', $formattrs);
1149 echo html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'id', 'value'=> $this->cm->id));
1150 echo html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'mode', 'value'=> 'fastgrade'));
1151 echo html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'page', 'value'=> $page));
1152 echo html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'sesskey', 'value'=> sesskey()));
1155 $course_context = get_context_instance(CONTEXT_COURSE, $course->id);
1156 if (has_capability('gradereport/grader:view', $course_context) && has_capability('moodle/grade:viewall', $course_context)) {
1157 echo '<div class="allcoursegrades"><a href="' . $CFG->wwwroot . '/grade/report/grader/index.php?id=' . $course->id . '">'
1158 . get_string('seeallcoursegrades', 'grades') . '</a></div>';
1161 if (!empty($message)) {
1162 echo $message; // display messages here if any
1165 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
1167 /// Check to see if groups are being used in this assignment
1169 /// find out current groups mode
1170 $groupmode = groups_get_activity_groupmode($cm);
1171 $currentgroup = groups_get_activity_group($cm, true);
1172 groups_print_activity_menu($cm, $CFG->wwwroot . '/mod/assignment/submissions.php?id=' . $this->cm->id);
1174 /// Get all ppl that are allowed to submit assignments
1175 list($esql, $params) = get_enrolled_sql($context, 'mod/assignment:view', $currentgroup);
1177 if ($filter == self::FILTER_ALL) {
1178 $sql = "SELECT u.id FROM {user} u ".
1179 "LEFT JOIN ($esql) eu ON eu.id=u.id ".
1180 "WHERE u.deleted = 0 AND eu.id=u.id ";
1183 if($filter == self::FILTER_SUBMITTED) {
1184 $wherefilter = ' AND s.timemodified > 0';
1185 } else if($filter == self::FILTER_REQUIRE_GRADING) {
1186 $wherefilter = ' AND s.timemarked < s.timemodified ';
1189 $sql = "SELECT u.id FROM {user} u ".
1190 "LEFT JOIN ($esql) eu ON eu.id=u.id ".
1191 "LEFT JOIN {assignment_submissions} s ON (u.id = s.userid) " .
1192 "WHERE u.deleted = 0 AND eu.id=u.id ".
1193 'AND s.assignment = '. $this->assignment->id .
1197 $users = $DB->get_records_sql($sql, $params);
1198 if (!empty($users)) {
1199 $users = array_keys($users);
1202 // if groupmembersonly used, remove users who are not in any group
1203 if ($users and !empty($CFG->enablegroupmembersonly) and $cm->groupmembersonly) {
1204 if ($groupingusers = groups_get_grouping_members($cm->groupingid, 'u.id', 'u.id')) {
1205 $users = array_intersect($users, array_keys($groupingusers));
1209 $tablecolumns = array('picture', 'fullname', 'grade', 'submissioncomment', 'timemodified', 'timemarked', 'status', 'finalgrade');
1210 if ($uses_outcomes) {
1211 $tablecolumns[] = 'outcome'; // no sorting based on outcomes column
1214 $tableheaders = array('',
1215 get_string('fullname'),
1216 get_string('grade'),
1217 get_string('comment', 'assignment'),
1218 get_string('lastmodified').' ('.get_string('submission', 'assignment').')',
1219 get_string('lastmodified').' ('.get_string('grade').')',
1220 get_string('status'),
1221 get_string('finalgrade', 'grades'));
1222 if ($uses_outcomes) {
1223 $tableheaders[] = get_string('outcome', 'grades');
1226 require_once($CFG->libdir.'/tablelib.php');
1227 $table = new flexible_table('mod-assignment-submissions');
1229 $table->define_columns($tablecolumns);
1230 $table->define_headers($tableheaders);
1231 $table->define_baseurl($CFG->wwwroot.'/mod/assignment/submissions.php?id='.$this->cm->id.'&currentgroup='.$currentgroup);
1233 $table->sortable(true, 'lastname');//sorted by lastname by default
1234 $table->collapsible(true);
1235 $table->initialbars(true);
1237 $table->column_suppress('picture');
1238 $table->column_suppress('fullname');
1240 $table->column_class('picture', 'picture');
1241 $table->column_class('fullname', 'fullname');
1242 $table->column_class('grade', 'grade');
1243 $table->column_class('submissioncomment', 'comment');
1244 $table->column_class('timemodified', 'timemodified');
1245 $table->column_class('timemarked', 'timemarked');
1246 $table->column_class('status', 'status');
1247 $table->column_class('finalgrade', 'finalgrade');
1248 if ($uses_outcomes) {
1249 $table->column_class('outcome', 'outcome');
1252 $table->set_attribute('cellspacing', '0');
1253 $table->set_attribute('id', 'attempts');
1254 $table->set_attribute('class', 'submissions');
1255 $table->set_attribute('width', '100%');
1256 //$table->set_attribute('align', 'center');
1258 $table->no_sorting('finalgrade');
1259 $table->no_sorting('outcome');
1261 // Start working -- this is necessary as soon as the niceties are over
1264 if (empty($users)) {
1265 echo $OUTPUT->heading(get_string('nosubmitusers','assignment'));
1269 if ($this->assignment->assignmenttype=='upload' || $this->assignment->assignmenttype=='online' || $this->assignment->assignmenttype=='uploadsingle') { //TODO: this is an ugly hack, where is the plugin spirit? (skodak)
1270 echo '<div style="text-align:right"><a href="submissions.php?id='.$this->cm->id.'&download=zip">'.get_string('downloadall', 'assignment').'</a></div>';
1272 /// Construct the SQL
1274 list($where, $params) = $table->get_sql_where();
1279 if ($filter == self::FILTER_SUBMITTED) {
1280 $where .= 's.timemodified > 0 AND ';
1281 } else if($filter == self::FILTER_REQUIRE_GRADING) {
1282 $where .= 's.timemarked < s.timemodified AND ';
1285 if ($sort = $table->get_sql_sort()) {
1286 $sort = ' ORDER BY '.$sort;
1289 $ufields = user_picture::fields('u');
1291 $select = "SELECT $ufields,
1292 s.id AS submissionid, s.grade, s.submissioncomment,
1293 s.timemodified, s.timemarked,
1294 COALESCE(SIGN(SIGN(s.timemarked) + SIGN(s.timemarked - s.timemodified)), 0) AS status ";
1295 $sql = 'FROM {user} u '.
1296 'LEFT JOIN {assignment_submissions} s ON u.id = s.userid
1297 AND s.assignment = '.$this->assignment->id.' '.
1298 'WHERE '.$where.'u.id IN ('.implode(',',$users).') ';
1300 $ausers = $DB->get_records_sql($select.$sql.$sort, $params, $table->get_page_start(), $table->get_page_size());
1302 $table->pagesize($perpage, count($users));
1304 ///offset used to calculate index of student in that particular query, needed for the pop up to know who's next
1305 $offset = $page * $perpage;
1306 $strupdate = get_string('update');
1307 $strgrade = get_string('grade');
1308 $grademenu = make_grades_menu($this->assignment->grade);
1310 if ($ausers !== false) {
1311 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, array_keys($ausers));
1312 $endposition = $offset + $perpage;
1313 $currentposition = 0;
1314 foreach ($ausers as $auser) {
1315 if ($currentposition == $offset && $offset < $endposition) {
1316 $final_grade = $grading_info->items[0]->grades[$auser->id];
1317 $grademax = $grading_info->items[0]->grademax;
1318 $final_grade->formatted_grade = round($final_grade->grade,2) .' / ' . round($grademax,2);
1319 $locked_overridden = 'locked';
1320 if ($final_grade->overridden) {
1321 $locked_overridden = 'overridden';
1324 /// Calculate user status
1325 $auser->status = ($auser->timemarked > 0) && ($auser->timemarked >= $auser->timemodified);
1326 $picture = $OUTPUT->user_picture($auser);
1328 if (empty($auser->submissionid)) {
1329 $auser->grade = -1; //no submission yet
1332 if (!empty($auser->submissionid)) {
1333 ///Prints student answer and student modified date
1334 ///attach file or print link to student answer, depending on the type of the assignment.
1335 ///Refer to print_student_answer in inherited classes.
1336 if ($auser->timemodified > 0) {
1337 $studentmodified = '<div id="ts'.$auser->id.'">'.$this->print_student_answer($auser->id)
1338 . userdate($auser->timemodified).'</div>';
1340 $studentmodified = '<div id="ts'.$auser->id.'"> </div>';
1342 ///Print grade, dropdown or text
1343 if ($auser->timemarked > 0) {
1344 $teachermodified = '<div id="tt'.$auser->id.'">'.userdate($auser->timemarked).'</div>';
1346 if ($final_grade->locked or $final_grade->overridden) {
1347 $grade = '<div id="g'.$auser->id.'" class="'. $locked_overridden .'">'.$final_grade->formatted_grade.'</div>';
1348 } else if ($quickgrade) {
1349 $attributes = array();
1350 $attributes['tabindex'] = $tabindex++;
1351 $menu = html_writer::select(make_grades_menu($this->assignment->grade), 'menu['.$auser->id.']', $auser->grade, array(-1=>get_string('nograde')), $attributes);
1352 $grade = '<div id="g'.$auser->id.'">'. $menu .'</div>';
1354 $grade = '<div id="g'.$auser->id.'">'.$this->display_grade($auser->grade).'</div>';
1358 $teachermodified = '<div id="tt'.$auser->id.'"> </div>';
1359 if ($final_grade->locked or $final_grade->overridden) {
1360 $grade = '<div id="g'.$auser->id.'" class="'. $locked_overridden .'">'.$final_grade->formatted_grade.'</div>';
1361 } else if ($quickgrade) {
1362 $attributes = array();
1363 $attributes['tabindex'] = $tabindex++;
1364 $menu = html_writer::select(make_grades_menu($this->assignment->grade), 'menu['.$auser->id.']', $auser->grade, array(-1=>get_string('nograde')), $attributes);
1365 $grade = '<div id="g'.$auser->id.'">'.$menu.'</div>';
1367 $grade = '<div id="g'.$auser->id.'">'.$this->display_grade($auser->grade).'</div>';
1371 if ($final_grade->locked or $final_grade->overridden) {
1372 $comment = '<div id="com'.$auser->id.'">'.shorten_text(strip_tags($final_grade->str_feedback),15).'</div>';
1374 } else if ($quickgrade) {
1375 $comment = '<div id="com'.$auser->id.'">'
1376 . '<textarea tabindex="'.$tabindex++.'" name="submissioncomment['.$auser->id.']" id="submissioncomment'
1377 . $auser->id.'" rows="2" cols="20">'.($auser->submissioncomment).'</textarea></div>';
1379 $comment = '<div id="com'.$auser->id.'">'.shorten_text(strip_tags($auser->submissioncomment),15).'</div>';
1382 $studentmodified = '<div id="ts'.$auser->id.'"> </div>';
1383 $teachermodified = '<div id="tt'.$auser->id.'"> </div>';
1384 $status = '<div id="st'.$auser->id.'"> </div>';
1386 if ($final_grade->locked or $final_grade->overridden) {
1387 $grade = '<div id="g'.$auser->id.'">'.$final_grade->formatted_grade . '</div>';
1388 } else if ($quickgrade) { // allow editing
1389 $attributes = array();
1390 $attributes['tabindex'] = $tabindex++;
1391 $menu = html_writer::select(make_grades_menu($this->assignment->grade), 'menu['.$auser->id.']', $auser->grade, array(-1=>get_string('nograde')), $attributes);
1392 $grade = '<div id="g'.$auser->id.'">'.$menu.'</div>';
1394 $grade = '<div id="g'.$auser->id.'">-</div>';
1397 if ($final_grade->locked or $final_grade->overridden) {
1398 $comment = '<div id="com'.$auser->id.'">'.$final_grade->str_feedback.'</div>';
1399 } else if ($quickgrade) {
1400 $comment = '<div id="com'.$auser->id.'">'
1401 . '<textarea tabindex="'.$tabindex++.'" name="submissioncomment['.$auser->id.']" id="submissioncomment'
1402 . $auser->id.'" rows="2" cols="20">'.($auser->submissioncomment).'</textarea></div>';
1404 $comment = '<div id="com'.$auser->id.'"> </div>';
1408 if (empty($auser->status)) { /// Confirm we have exclusively 0 or 1
1414 $buttontext = ($auser->status == 1) ? $strupdate : $strgrade;
1416 ///No more buttons, we use popups ;-).
1417 $popup_url = '/mod/assignment/submissions.php?id='.$this->cm->id
1418 . '&userid='.$auser->id.'&mode=single'.'&filter='.$filter.'&offset='.$offset++;
1420 $button = $OUTPUT->action_link($popup_url, $buttontext);
1422 $status = '<div id="up'.$auser->id.'" class="s'.$auser->status.'">'.$button.'</div>';
1424 $finalgrade = '<span id="finalgrade_'.$auser->id.'">'.$final_grade->str_grade.'</span>';
1428 if ($uses_outcomes) {
1430 foreach($grading_info->outcomes as $n=>$outcome) {
1431 $outcomes .= '<div class="outcome"><label>'.$outcome->name.'</label>';
1432 $options = make_grades_menu(-$outcome->scaleid);
1434 if ($outcome->grades[$auser->id]->locked or !$quickgrade) {
1435 $options[0] = get_string('nooutcome', 'grades');
1436 $outcomes .= ': <span id="outcome_'.$n.'_'.$auser->id.'">'.$options[$outcome->grades[$auser->id]->grade].'</span>';
1438 $attributes = array();
1439 $attributes['tabindex'] = $tabindex++;
1440 $attributes['id'] = 'outcome_'.$n.'_'.$auser->id;
1441 $outcomes .= ' '.html_writer::select($options, 'outcome_'.$n.'['.$auser->id.']', $outcome->grades[$auser->id]->grade, array(0=>get_string('nooutcome', 'grades')), $attributes);
1443 $outcomes .= '</div>';
1447 $userlink = '<a href="' . $CFG->wwwroot . '/user/view.php?id=' . $auser->id . '&course=' . $course->id . '">' . fullname($auser, has_capability('moodle/site:viewfullnames', $this->context)) . '</a>';
1448 $row = array($picture, $userlink, $grade, $comment, $studentmodified, $teachermodified, $status, $finalgrade);
1449 if ($uses_outcomes) {
1453 $table->add_data($row);
1459 $table->print_html(); /// Print the whole table
1461 /// Print quickgrade form around the table
1462 if ($quickgrade && $table->started_output){
1463 $mailinfopref = false;
1464 if (get_user_preferences('assignment_mailinfo', 1)) {
1465 $mailinfopref = true;
1467 $emailnotification = html_writer::checkbox('mailinfo', 1, $mailinfopref, get_string('enableemailnotification','assignment'));
1469 $emailnotification .= $OUTPUT->help_icon('enableemailnotification', 'assignment');
1470 echo html_writer::tag('div', $emailnotification, array('class'=>'emailnotification'));
1472 $savefeedback = html_writer::empty_tag('input', array('type'=>'submit', 'name'=>'fastg', 'value'=>get_string('saveallfeedback', 'assignment')));
1473 echo html_writer::tag('div', $savefeedback, array('class'=>'fastgbutton'));
1475 echo html_writer::end_tag('form');
1476 } else if ($quickgrade) {
1477 echo html_writer::end_tag('form');
1481 /// End of fast grading form
1483 /// Mini form for setting user preference
1485 $formaction = new moodle_url('/mod/assignment/submissions.php', array('id'=>$this->cm->id));
1486 $mform = new MoodleQuickForm('optionspref', 'post', $formaction, '', array('class'=>'optionspref'));
1488 $mform->addElement('hidden', 'updatepref');
1489 $mform->setDefault('updatepref', 1);
1490 $mform->addElement('header', 'qgprefs', get_string('optionalsettings', 'assignment'));
1491 $mform->addElement('select', 'filter', get_string('show'), $filters);
1493 $mform->setDefault('filter', $filter);
1495 $mform->addElement('text', 'perpage', get_string('pagesize', 'assignment'), array('size'=>1));
1496 $mform->setDefault('perpage', $perpage);
1498 $mform->addElement('checkbox', 'quickgrade', get_string('quickgrade','assignment'));
1499 $mform->setDefault('quickgrade', $quickgrade);
1500 $mform->addHelpButton('quickgrade', 'quickgrade', 'assignment');
1502 $mform->addElement('submit', 'savepreferences', get_string('savepreferences'));
1506 echo $OUTPUT->footer();
1510 * Process teacher feedback submission
1512 * This is called by submissions() when a grading even has taken place.
1513 * It gets its data from the submitted form.
1518 * @return object|bool The updated submission object or false
1520 function process_feedback($formdata=null) {
1521 global $CFG, $USER, $DB;
1522 require_once($CFG->libdir.'/gradelib.php');
1524 if (!$feedback = data_submitted() or !confirm_sesskey()) { // No incoming data?
1528 ///For save and next, we need to know the userid to save, and the userid to go
1529 ///We use a new hidden field in the form, and set it to -1. If it's set, we use this
1530 ///as the userid to store
1531 if ((int)$feedback->saveuserid !== -1){
1532 $feedback->userid = $feedback->saveuserid;
1535 if (!empty($feedback->cancel)) { // User hit cancel button
1539 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, $feedback->userid);
1541 // store outcomes if needed
1542 $this->process_outcomes($feedback->userid);
1544 $submission = $this->get_submission($feedback->userid, true); // Get or make one
1546 if (!($grading_info->items[0]->grades[$feedback->userid]->locked ||
1547 $grading_info->items[0]->grades[$feedback->userid]->overridden) ) {
1549 $submission->grade = $feedback->xgrade;
1550 $submission->submissioncomment = $feedback->submissioncomment_editor['text'];
1551 $submission->teacher = $USER->id;
1552 $mailinfo = get_user_preferences('assignment_mailinfo', 0);
1554 $submission->mailed = 1; // treat as already mailed
1556 $submission->mailed = 0; // Make sure mail goes out (again, even)
1558 $submission->timemarked = time();
1560 unset($submission->data1); // Don't need to update this.
1561 unset($submission->data2); // Don't need to update this.
1563 if (empty($submission->timemodified)) { // eg for offline assignments
1564 // $submission->timemodified = time();
1567 $DB->update_record('assignment_submissions', $submission);
1569 // triger grade event
1570 $this->update_grade($submission);
1572 add_to_log($this->course->id, 'assignment', 'update grades',
1573 'submissions.php?id='.$this->assignment->id.'&user='.$feedback->userid, $feedback->userid, $this->cm->id);
1574 if (!is_null($formdata)) {
1575 if ($this->type == 'upload' || $this->type == 'uploadsingle') {
1576 $mformdata = $formdata->mform->get_data();
1577 $mformdata = file_postupdate_standard_filemanager($mformdata, 'files', $formdata->fileui_options, $this->context, 'mod_assignment', 'response', $submission->id);
1586 function process_outcomes($userid) {
1589 if (empty($CFG->enableoutcomes)) {
1593 require_once($CFG->libdir.'/gradelib.php');
1595 if (!$formdata = data_submitted() or !confirm_sesskey()) {
1600 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, $userid);
1602 if (!empty($grading_info->outcomes)) {
1603 foreach($grading_info->outcomes as $n=>$old) {
1604 $name = 'outcome_'.$n;
1605 if (isset($formdata->{$name}[$userid]) and $old->grades[$userid]->grade != $formdata->{$name}[$userid]) {
1606 $data[$n] = $formdata->{$name}[$userid];
1610 if (count($data) > 0) {
1611 grade_update_outcomes('mod/assignment', $this->course->id, 'mod', 'assignment', $this->assignment->id, $userid, $data);
1617 * Load the submission object for a particular user
1621 * @param $userid int The id of the user whose submission we want or 0 in which case USER->id is used
1622 * @param $createnew boolean optional Defaults to false. If set to true a new submission object will be created in the database
1623 * @param bool $teachermodified student submission set if false
1624 * @return object The submission
1626 function get_submission($userid=0, $createnew=false, $teachermodified=false) {
1629 if (empty($userid)) {
1630 $userid = $USER->id;
1633 $submission = $DB->get_record('assignment_submissions', array('assignment'=>$this->assignment->id, 'userid'=>$userid));
1635 if ($submission || !$createnew) {
1638 $newsubmission = $this->prepare_new_submission($userid, $teachermodified);
1639 $DB->insert_record("assignment_submissions", $newsubmission);
1641 return $DB->get_record('assignment_submissions', array('assignment'=>$this->assignment->id, 'userid'=>$userid));
1645 * Instantiates a new submission object for a given user
1647 * Sets the assignment, userid and times, everything else is set to default values.
1649 * @param int $userid The userid for which we want a submission object
1650 * @param bool $teachermodified student submission set if false
1651 * @return object The submission
1653 function prepare_new_submission($userid, $teachermodified=false) {
1654 $submission = new Object;
1655 $submission->assignment = $this->assignment->id;
1656 $submission->userid = $userid;
1657 $submission->timecreated = time();
1658 // teachers should not be modifying modified date, except offline assignments
1659 if ($teachermodified) {
1660 $submission->timemodified = 0;
1662 $submission->timemodified = $submission->timecreated;
1664 $submission->numfiles = 0;
1665 $submission->data1 = '';
1666 $submission->data2 = '';
1667 $submission->grade = -1;
1668 $submission->submissioncomment = '';
1669 $submission->format = 0;
1670 $submission->teacher = 0;
1671 $submission->timemarked = 0;
1672 $submission->mailed = 0;
1677 * Return all assignment submissions by ENROLLED students (even empty)
1679 * @param string $sort optional field names for the ORDER BY in the sql query
1680 * @param string $dir optional specifying the sort direction, defaults to DESC
1681 * @return array The submission objects indexed by id
1683 function get_submissions($sort='', $dir='DESC') {
1684 return assignment_get_all_submissions($this->assignment, $sort, $dir);
1688 * Counts all real assignment submissions by ENROLLED students (not empty ones)
1690 * @param int $groupid optional If nonzero then count is restricted to this group
1691 * @return int The number of submissions
1693 function count_real_submissions($groupid=0) {
1694 return assignment_count_real_submissions($this->cm, $groupid);
1698 * Alerts teachers by email of new or changed assignments that need grading
1700 * First checks whether the option to email teachers is set for this assignment.
1701 * Sends an email to ALL teachers in the course (or in the group if using separate groups).
1702 * Uses the methods email_teachers_text() and email_teachers_html() to construct the content.
1706 * @param $submission object The submission that has changed
1709 function email_teachers($submission) {
1712 if (empty($this->assignment->emailteachers)) { // No need to do anything
1716 $user = $DB->get_record('user', array('id'=>$submission->userid));
1718 if ($teachers = $this->get_graders($user)) {
1720 $strassignments = get_string('modulenameplural', 'assignment');
1721 $strassignment = get_string('modulename', 'assignment');
1722 $strsubmitted = get_string('submitted', 'assignment');
1724 foreach ($teachers as $teacher) {
1725 $info = new object();
1726 $info->username = fullname($user, true);
1727 $info->assignment = format_string($this->assignment->name,true);
1728 $info->url = $CFG->wwwroot.'/mod/assignment/submissions.php?id='.$this->cm->id;
1730 $postsubject = $strsubmitted.': '.$info->username.' -> '.$this->assignment->name;
1731 $posttext = $this->email_teachers_text($info);
1732 $posthtml = ($teacher->mailformat == 1) ? $this->email_teachers_html($info) : '';
1734 $eventdata = new object();
1735 $eventdata->modulename = 'assignment';
1736 $eventdata->userfrom = $user;
1737 $eventdata->userto = $teacher;
1738 $eventdata->subject = $postsubject;
1739 $eventdata->fullmessage = $posttext;
1740 $eventdata->fullmessageformat = FORMAT_PLAIN;
1741 $eventdata->fullmessagehtml = $posthtml;
1742 $eventdata->smallmessage = '';
1743 message_send($eventdata);
1749 * @param string $filearea
1750 * @param array $args
1753 function send_file($filearea, $args) {
1754 debugging('plugin does not implement file sending', DEBUG_DEVELOPER);
1759 * Returns a list of teachers that should be grading given submission
1761 * @param object $user
1764 function get_graders($user) {
1766 $potgraders = get_users_by_capability($this->context, 'mod/assignment:grade', '', '', '', '', '', '', false, false);
1769 if (groups_get_activity_groupmode($this->cm) == SEPARATEGROUPS) { // Separate groups are being used
1770 if ($groups = groups_get_all_groups($this->course->id, $user->id)) { // Try to find all groups
1771 foreach ($groups as $group) {
1772 foreach ($potgraders as $t) {
1773 if ($t->id == $user->id) {
1774 continue; // do not send self
1776 if (groups_is_member($group->id, $t->id)) {
1777 $graders[$t->id] = $t;
1782 // user not in group, try to find graders without group
1783 foreach ($potgraders as $t) {
1784 if ($t->id == $user->id) {
1785 continue; // do not send self
1787 if (!groups_get_all_groups($this->course->id, $t->id)) { //ugly hack
1788 $graders[$t->id] = $t;
1793 foreach ($potgraders as $t) {
1794 if ($t->id == $user->id) {
1795 continue; // do not send self
1797 $graders[$t->id] = $t;
1804 * Creates the text content for emails to teachers
1806 * @param $info object The info used by the 'emailteachermail' language string
1809 function email_teachers_text($info) {
1810 $posttext = format_string($this->course->shortname).' -> '.$this->strassignments.' -> '.
1811 format_string($this->assignment->name)."\n";
1812 $posttext .= '---------------------------------------------------------------------'."\n";
1813 $posttext .= get_string("emailteachermail", "assignment", $info)."\n";
1814 $posttext .= "\n---------------------------------------------------------------------\n";
1819 * Creates the html content for emails to teachers
1821 * @param $info object The info used by the 'emailteachermailhtml' language string
1824 function email_teachers_html($info) {
1826 $posthtml = '<p><font face="sans-serif">'.
1827 '<a href="'.$CFG->wwwroot.'/course/view.php?id='.$this->course->id.'">'.format_string($this->course->shortname).'</a> ->'.
1828 '<a href="'.$CFG->wwwroot.'/mod/assignment/index.php?id='.$this->course->id.'">'.$this->strassignments.'</a> ->'.
1829 '<a href="'.$CFG->wwwroot.'/mod/assignment/view.php?id='.$this->cm->id.'">'.format_string($this->assignment->name).'</a></font></p>';
1830 $posthtml .= '<hr /><font face="sans-serif">';
1831 $posthtml .= '<p>'.get_string('emailteachermailhtml', 'assignment', $info).'</p>';
1832 $posthtml .= '</font><hr />';
1837 * Produces a list of links to the files uploaded by a user
1839 * @param $userid int optional id of the user. If 0 then $USER->id is used.
1840 * @param $return boolean optional defaults to false. If true the list is returned rather than printed
1841 * @return string optional
1843 function print_user_files($userid=0, $return=false) {
1844 global $CFG, $USER, $OUTPUT;
1847 if (!isloggedin()) {
1850 $userid = $USER->id;
1855 $fs = get_file_storage();
1859 $submission = $this->get_submission($userid);
1861 if (($submission) && $files = $fs->get_area_files($this->context->id, 'mod_assignment', 'submission', $submission->id, "timemodified", false)) {
1862 require_once($CFG->libdir.'/portfoliolib.php');
1863 require_once($CFG->dirroot . '/mod/assignment/locallib.php');
1864 $button = new portfolio_add_button();
1865 foreach ($files as $file) {
1866 $filename = $file->get_filename();
1868 $mimetype = $file->get_mimetype();
1869 $path = file_encode_url($CFG->wwwroot.'/pluginfile.php', '/'.$this->context->id.'/mod_assignment/submission/'.$submission->id.'/'.$filename);
1870 $output .= '<a href="'.$path.'" ><img src="'.$OUTPUT->pix_url(file_mimetype_icon($mimetype)).'" class="icon" alt="'.$mimetype.'" />'.s($filename).'</a>';
1871 if ($this->portfolio_exportable() && has_capability('mod/assignment:exportownsubmission', $this->context)) {
1872 $button->set_callback_options('assignment_portfolio_caller', array('id' => $this->cm->id, 'fileid' => $file->get_id()), '/mod/assignment/locallib.php');
1873 $button->set_format_by_file($file);
1874 $output .= $button->to_html(PORTFOLIO_ADD_ICON_LINK);
1877 if (count($files) > 1 && $this->portfolio_exportable() && has_capability('mod/assignment:exportownsubmission', $this->context)) {
1878 $button->set_callback_options('assignment_portfolio_caller', array('id' => $this->cm->id), '/mod/assignment/locallib.php');
1879 $output .= '<br />' . $button->to_html();
1883 $output = '<div class="files">'.$output.'</div>';
1892 * Count the files uploaded by a given user
1894 * @param $itemid int The submission's id as the file's itemid.
1897 function count_user_files($itemid) {
1898 $fs = get_file_storage();
1899 $files = $fs->get_area_files($this->context->id, 'mod_assignment', 'submission', $itemid, "id", false);
1900 return count($files);
1904 * Returns true if the student is allowed to submit
1906 * Checks that the assignment has started and, if the option to prevent late
1907 * submissions is set, also checks that the assignment has not yet closed.
1912 if ($this->assignment->preventlate && $this->assignment->timedue) {
1913 return ($this->assignment->timeavailable <= $time && $time <= $this->assignment->timedue);
1915 return ($this->assignment->timeavailable <= $time);
1921 * Return true if is set description is hidden till available date
1923 * This is needed by calendar so that hidden descriptions do not
1924 * come up in upcoming events.
1926 * Check that description is hidden till available date
1927 * By default return false
1928 * Assignments types should implement this method if needed
1931 function description_is_hidden() {
1936 * Return an outline of the user's interaction with the assignment
1938 * The default method prints the grade and timemodified
1939 * @param $grade object
1940 * @return object with properties ->info and ->time
1942 function user_outline($grade) {
1944 $result = new object();
1945 $result->info = get_string('grade').': '.$grade->str_long_grade;
1946 $result->time = $grade->dategraded;
1951 * Print complete information about the user's interaction with the assignment
1953 * @param $user object
1955 function user_complete($user, $grade=null) {
1958 echo $OUTPUT->container(get_string('grade').': '.$grade->str_long_grade);
1959 if ($grade->str_feedback) {
1960 echo $OUTPUT->container(get_string('feedback').': '.$grade->str_feedback);
1964 if ($submission = $this->get_submission($user->id)) {
1966 $fs = get_file_storage();
1968 if ($files = $fs->get_area_files($this->context->id, 'mod_assignment', 'submission', $submission->id, "timemodified", false)) {
1969 $countfiles = count($files)." ".get_string("uploadedfiles", "assignment");
1970 foreach ($files as $file) {
1971 $countfiles .= "; ".$file->get_filename();
1975 echo $OUTPUT->box_start();
1976 echo get_string("lastmodified").": ";
1977 echo userdate($submission->timemodified);
1978 echo $this->display_lateness($submission->timemodified);
1980 $this->print_user_files($user->id);
1984 $this->view_feedback($submission);
1986 echo $OUTPUT->box_end();
1989 print_string("notsubmittedyet", "assignment");
1994 * Return a string indicating how late a submission is
1996 * @param $timesubmitted int
1999 function display_lateness($timesubmitted) {
2000 return assignment_display_lateness($timesubmitted, $this->assignment->timedue);
2004 * Empty method stub for all delete actions.
2007 //nothing by default
2008 redirect('view.php?id='.$this->cm->id);
2012 * Empty custom feedback grading form.
2014 function custom_feedbackform($submission, $return=false) {
2015 //nothing by default
2020 * Add a get_coursemodule_info function in case any assignment type wants to add 'extra' information
2021 * for the course (see resource).
2023 * Given a course_module object, this function returns any "extra" information that may be needed
2024 * when printing this activity in a course listing. See get_array_of_activities() in course/lib.php.
2026 * @param $coursemodule object The coursemodule object (record).
2027 * @return object An object on information that the courses will know about (most noticeably, an icon).
2030 function get_coursemodule_info($coursemodule) {
2035 * Plugin cron method - do not use $this here, create new assignment instances if needed.
2039 //no plugin cron by default - override if needed
2043 * Reset all submissions
2045 function reset_userdata($data) {
2048 if (!$DB->count_records('assignment', array('course'=>$data->courseid, 'assignmenttype'=>$this->type))) {
2049 return array(); // no assignments of this type present
2052 $componentstr = get_string('modulenameplural', 'assignment');
2055 $typestr = get_string('type'.$this->type, 'assignment');
2056 // ugly hack to support pluggable assignment type titles...
2057 if($typestr === '[[type'.$this->type.']]'){
2058 $typestr = get_string('type'.$this->type, 'assignment_'.$this->type);
2061 if (!empty($data->reset_assignment_submissions)) {
2062 $assignmentssql = "SELECT a.id
2064 WHERE a.course=? AND a.assignmenttype=?";
2065 $params = array($data->courseid, $this->type);
2067 // now get rid of all submissions and responses
2068 $fs = get_file_storage();
2069 if ($assignments = $DB->get_records_sql($assignmentssql, $params)) {
2070 foreach ($assignments as $assignmentid=>$unused) {
2071 if (!$cm = get_coursemodule_from_instance('assignment', $assignmentid)) {
2074 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
2075 $fs->delete_area_files($context->id, 'mod_assignment', 'submission');
2076 $fs->delete_area_files($context->id, 'mod_assignment', 'response');
2080 $DB->delete_records_select('assignment_submissions', "assignment IN ($assignmentssql)", $params);
2082 $status[] = array('component'=>$componentstr, 'item'=>get_string('deleteallsubmissions','assignment').': '.$typestr, 'error'=>false);
2084 if (empty($data->reset_gradebook_grades)) {
2085 // remove all grades from gradebook
2086 assignment_reset_gradebook($data->courseid, $this->type);
2090 /// updating dates - shift may be negative too
2091 if ($data->timeshift) {
2092 shift_course_mod_dates('assignment', array('timedue', 'timeavailable'), $data->timeshift, $data->courseid);
2093 $status[] = array('component'=>$componentstr, 'item'=>get_string('datechanged').': '.$typestr, 'error'=>false);
2100 function portfolio_exportable() {
2105 * base implementation for backing up subtype specific information
2106 * for one single module
2108 * @param filehandle $bf file handle for xml file to write to
2109 * @param mixed $preferences the complete backup preference object
2115 static function backup_one_mod($bf, $preferences, $assignment) {
2120 * base implementation for backing up subtype specific information
2121 * for one single submission
2123 * @param filehandle $bf file handle for xml file to write to
2124 * @param mixed $preferences the complete backup preference object
2125 * @param object $submission the assignment submission db record
2131 static function backup_one_submission($bf, $preferences, $assignment, $submission) {
2136 * base implementation for restoring subtype specific information
2137 * for one single module
2139 * @param array $info the array representing the xml
2140 * @param object $restore the restore preferences
2146 static function restore_one_mod($info, $restore, $assignment) {
2151 * base implementation for restoring subtype specific information
2152 * for one single submission
2154 * @param object $submission the newly created submission
2155 * @param array $info the array representing the xml
2156 * @param object $restore the restore preferences
2162 static function restore_one_submission($info, $restore, $assignment, $submission) {
2166 } ////// End of the assignment_base class
2169 class mod_assignment_grading_form extends moodleform {
2171 function definition() {
2173 $mform =& $this->_form;
2175 $formattr = $mform->getAttributes();
2176 $formattr['id'] = 'submitform';
2177 $mform->setAttributes($formattr);
2179 $mform->addElement('hidden', 'offset', ($this->_customdata->offset+1));
2180 $mform->setType('offset', PARAM_INT);
2181 $mform->addElement('hidden', 'userid', $this->_customdata->userid);
2182 $mform->setType('userid', PARAM_INT);
2183 $mform->addElement('hidden', 'nextid', $this->_customdata->nextid);
2184 $mform->setType('nextid', PARAM_INT);
2185 $mform->addElement('hidden', 'id', $this->_customdata->cm->id);
2186 $mform->setType('id', PARAM_INT);
2187 $mform->addElement('hidden', 'sesskey', sesskey());
2188 $mform->setType('sesskey', PARAM_ALPHANUM);
2189 $mform->addElement('hidden', 'mode', 'grade');
2190 $mform->setType('mode', PARAM_TEXT);
2191 $mform->addElement('hidden', 'menuindex', "0");
2192 $mform->setType('menuindex', PARAM_INT);
2193 $mform->addElement('hidden', 'saveuserid', "-1");
2194 $mform->setType('saveuserid', PARAM_INT);
2195 $mform->addElement('hidden', 'filter', "0");
2196 $mform->setType('filter', PARAM_INT);
2198 $mform->addElement('static', 'picture', $OUTPUT->user_picture($this->_customdata->user),
2199 fullname($this->_customdata->user, true) . '<br/>' .
2200 userdate($this->_customdata->submission->timemodified) .
2201 $this->_customdata->lateness );
2203 $this->add_submission_content();
2204 $this->add_grades_section();
2206 $this->add_feedback_section();
2208 if ($this->_customdata->submission->timemarked) {
2209 $datestring = userdate($this->_customdata->submission->timemarked)." (".format_time(time() - $this->_customdata->submission->timemarked).")";
2210 $mform->addElement('header', 'Last Grade', get_string('lastgrade', 'assignment'));
2211 $mform->addElement('static', 'picture', $OUTPUT->user_picture($this->_customdata->teacher) ,
2212 fullname($this->_customdata->teacher,true).
2213 '<br/>'.$datestring);
2216 $this->add_action_buttons();
2220 function add_grades_section() {
2222 $mform =& $this->_form;
2223 $attributes = array();
2224 if ($this->_customdata->gradingdisabled) {
2225 $attributes['disabled'] ='disabled';
2228 $grademenu = make_grades_menu($this->_customdata->assignment->grade);
2229 $grademenu['-1'] = get_string('nograde');
2231 $mform->addElement('header', 'Grades', get_string('grades', 'grades'));
2232 $mform->addElement('select', 'xgrade', get_string('grade').':', $grademenu, $attributes);
2233 $mform->setDefault('xgrade', $this->_customdata->submission->grade ); //@fixme some bug when element called 'grade' makes it break
2234 $mform->setType('xgrade', PARAM_INT);
2236 if (!empty($this->_customdata->enableoutcomes)) {
2237 foreach($this->_customdata->grading_info->outcomes as $n=>$outcome) {
2238 $options = make_grades_menu(-$outcome->scaleid);
2239 if ($outcome->grades[$this->_customdata->submission->userid]->locked) {
2240 $options[0] = get_string('nooutcome', 'grades');
2241 echo $options[$outcome->grades[$this->_customdata->submission->userid]->grade];
2243 $options[''] = get_string('nooutcome', 'grades');
2244 $attributes = array('id' => 'menuoutcome_'.$n );
2245 $mform->addElement('select', 'outcome_'.$n.'['.$this->_customdata->userid.']', $outcome->name.':', $options, $attributes );
2246 $mform->setType('outcome_'.$n.'['.$this->_customdata->userid.']', PARAM_INT);
2247 $mform->setDefault('outcome_'.$n.'['.$this->_customdata->userid.']', $outcome->grades[$this->_customdata->submission->userid]->grade );
2251 $course_context = get_context_instance(CONTEXT_MODULE , $this->_customdata->cm->id);
2252 if (has_capability('gradereport/grader:view', $course_context) && has_capability('moodle/grade:viewall', $course_context)) {
2253 $grade = '<a href="'.$CFG->wwwroot.'/grade/report/grader/index.php?id='. $this->_customdata->courseid .'" >'.
2254 $this->_customdata->grading_info->items[0]->grades[$this->_customdata->userid]->str_grade . '</a>';
2256 $grade = $this->_customdata->grading_info->items[0]->grades[$this->_customdata->userid]->str_grade;
2258 $mform->addElement('static', 'finalgrade', get_string('currentgrade', 'assignment').':' ,$grade);
2259 $mform->setType('finalgrade', PARAM_INT);
2264 * @global core_renderer $OUTPUT
2266 function add_feedback_section() {
2268 $mform =& $this->_form;
2269 $mform->addElement('header', 'Feed Back', get_string('feedback', 'grades'));
2271 if ($this->_customdata->gradingdisabled) {
2272 $mform->addElement('static', 'disabledfeedback', $this->_customdata->grading_info->items[0]->grades[$this->_customdata->userid]->str_feedback );
2276 $mform->addElement('editor', 'submissioncomment_editor', get_string('feedback', 'assignment').':', null, $this->get_editor_options() );
2277 $mform->setType('submissioncomment_editor', PARAM_RAW); // to be cleaned before display
2278 $mform->setDefault('submissioncomment_editor', $this->_customdata->submission->submissioncomment);
2279 //$mform->addRule('submissioncomment', get_string('required'), 'required', null, 'client');
2280 switch ($this->_customdata->assignment->assignmenttype) {
2282 case 'uploadsingle' :
2283 $mform->addElement('filemanager', 'files_filemanager', get_string('responsefiles', 'assignment'). ':', null, $this->_customdata->fileui_options);
2288 $lastmailinfo = get_user_preferences('assignment_mailinfo', 1) ? array('checked'=>'checked') : array();
2289 $mform->addElement('hidden', 'mailinfo_h', "0");
2290 $mform->setType('mailinfo_h', PARAM_INT);
2291 $mform->addElement('checkbox', 'mailinfo',get_string('enableemailnotification','assignment').
2292 $OUTPUT->help_icon('enableemailnotification', 'assignment') .':' );
2293 $mform->updateElementAttr('mailinfo', $lastmailinfo);
2294 $mform->setType('mailinfo', PARAM_INT);
2298 function add_action_buttons() {
2299 $mform =& $this->_form;
2300 //if there are more to be graded.
2301 if ($this->_customdata->nextid>0) {
2302 $buttonarray=array();
2303 $buttonarray[] = &$mform->createElement('submit', 'submitbutton', get_string('savechanges'));
2304 //@todo: fix accessibility: javascript dependency not necessary
2305 $buttonarray[] = &$mform->createElement('submit', 'saveandnext', get_string('saveandnext'));
2306 $buttonarray[] = &$mform->createElement('submit', 'next', get_string('next'));
2307 $buttonarray[] = &$mform->createElement('cancel');
2309 $buttonarray=array();
2310 $buttonarray[] = &$mform->createElement('submit', 'submitbutton', get_string('savechanges'));
2311 $buttonarray[] = &$mform->createElement('cancel');
2313 $mform->addGroup($buttonarray, 'grading_buttonar', '', array(' '), false);
2314 $mform->closeHeaderBefore('grading_buttonar');
2315 $mform->setType('grading_buttonar', PARAM_RAW);
2318 function add_submission_content() {
2319 $mform =& $this->_form;
2320 $mform->addElement('header', 'Submission', get_string('submission', 'assignment'));
2321 $mform->addElement('static', '', '' , $this->_customdata->submission_content );
2324 protected function get_editor_options() {
2325 $editoroptions = array();
2326 $editoroptions['component'] = 'mod_assignment';
2327 $editoroptions['filearea'] = 'feedback';
2328 $editoroptions['noclean'] = false;
2329 $editoroptions['maxfiles'] = 0; //TODO: no files for now, we need to first implement assignment_feedback area, integration with gradebook, files support in quickgrading, etc. (skodak)
2330 $editoroptions['maxbytes'] = $this->_customdata->maxbytes;
2331 return $editoroptions;
2334 public function set_data($data) {
2335 $editoroptions = $this->get_editor_options();
2336 if (!isset($data->text)) {
2339 if (!isset($data->format)) {
2340 $data->textformat = FORMAT_HTML;
2342 $data->textformat = $data->format;
2345 if (!empty($this->_customdata->submission->id)) {
2346 $itemid = $this->_customdata->submission->id;
2351 switch ($this->_customdata->assignment->assignmenttype) {
2353 case 'uploadsingle' :
2354 $data = file_prepare_standard_filemanager($data, 'files', $editoroptions, $this->_customdata->context, 'mod_assignment', 'response', $itemid);
2360 $data = file_prepare_standard_editor($data, 'submissioncomment', $editoroptions, $this->_customdata->context, $editoroptions['component'], $editoroptions['filearea'], $itemid);
2361 return parent::set_data($data);
2364 public function get_data() {
2365 $data = parent::get_data();
2367 if (!empty($this->_customdata->submission->id)) {
2368 $itemid = $this->_customdata->submission->id;
2370 $itemid = null; //TODO: this is wrong, itemid MUST be known when saving files!! (skodak)
2374 $editoroptions = $this->get_editor_options();
2375 switch ($this->_customdata->assignment->assignmenttype) {
2377 case 'uploadsingle' :
2378 $data = file_postupdate_standard_filemanager($data, 'files', $editoroptions, $this->_customdata->context, 'mod_assignment', 'response', $itemid);
2383 $data = file_postupdate_standard_editor($data, 'submissioncomment', $editoroptions, $this->_customdata->context, $editoroptions['component'], $editoroptions['filearea'], $itemid);
2389 /// OTHER STANDARD FUNCTIONS ////////////////////////////////////////////////////////
2392 * Deletes an assignment instance
2394 * This is done by calling the delete_instance() method of the assignment type class
2396 function assignment_delete_instance($id){
2399 if (! $assignment = $DB->get_record('assignment', array('id'=>$id))) {
2403 // fall back to base class if plugin missing
2404 $classfile = "$CFG->dirroot/mod/assignment/type/$assignment->assignmenttype/assignment.class.php";
2405 if (file_exists($classfile)) {
2406 require_once($classfile);
2407 $assignmentclass = "assignment_$assignment->assignmenttype";
2410 debugging("Missing assignment plug-in: {$assignment->assignmenttype}. Using base class for deleting instead.");
2411 $assignmentclass = "assignment_base";
2414 $ass = new $assignmentclass();
2415 return $ass->delete_instance($assignment);
2420 * Updates an assignment instance
2422 * This is done by calling the update_instance() method of the assignment type class
2424 function assignment_update_instance($assignment){
2427 $assignment->assignmenttype = clean_param($assignment->assignmenttype, PARAM_SAFEDIR);
2429 require_once("$CFG->dirroot/mod/assignment/type/$assignment->assignmenttype/assignment.class.php");
2430 $assignmentclass = "assignment_$assignment->assignmenttype";
2431 $ass = new $assignmentclass();
2432 return $ass->update_instance($assignment);
2437 * Adds an assignment instance
2439 * This is done by calling the add_instance() method of the assignment type class
2441 function assignment_add_instance($assignment) {
2444 $assignment->assignmenttype = clean_param($assignment->assignmenttype, PARAM_SAFEDIR);
2446 require_once("$CFG->dirroot/mod/assignment/type/$assignment->assignmenttype/assignment.class.php");
2447 $assignmentclass = "assignment_$assignment->assignmenttype";
2448 $ass = new $assignmentclass();
2449 return $ass->add_instance($assignment);
2454 * Returns an outline of a user interaction with an assignment
2456 * This is done by calling the user_outline() method of the assignment type class
2458 function assignment_user_outline($course, $user, $mod, $assignment) {
2461 require_once("$CFG->libdir/gradelib.php");
2462 require_once("$CFG->dirroot/mod/assignment/type/$assignment->assignmenttype/assignment.class.php");
2463 $assignmentclass = "assignment_$assignment->assignmenttype";
2464 $ass = new $assignmentclass($mod->id, $assignment, $mod, $course);
2465 $grades = grade_get_grades($course->id, 'mod', 'assignment', $assignment->id, $user->id);
2466 if (!empty($grades->items[0]->grades)) {
2467 return $ass->user_outline(reset($grades->items[0]->grades));
2474 * Prints the complete info about a user's interaction with an assignment
2476 * This is done by calling the user_complete() method of the assignment type class
2478 function assignment_user_complete($course, $user, $mod, $assignment) {
2481 require_once("$CFG->libdir/gradelib.php");
2482 require_once("$CFG->dirroot/mod/assignment/type/$assignment->assignmenttype/assignment.class.php");
2483 $assignmentclass = "assignment_$assignment->assignmenttype";
2484 $ass = new $assignmentclass($mod->id, $assignment, $mod, $course);
2485 $grades = grade_get_grades($course->id, 'mod', 'assignment', $assignment->id, $user->id);
2486 if (empty($grades->items[0]->grades)) {
2489 $grade = reset($grades->items[0]->grades);
2491 return $ass->user_complete($user, $grade);
2495 * Function to be run periodically according to the moodle cron
2497 * Finds all assignment notifications that have yet to be mailed out, and mails them
2499 function assignment_cron () {
2500 global $CFG, $USER, $DB;
2502 /// first execute all crons in plugins
2503 if ($plugins = get_plugin_list('assignment')) {
2504 foreach ($plugins as $plugin=>$dir) {
2505 require_once("$dir/assignment.class.php");
2506 $assignmentclass = "assignment_$plugin";
2507 $ass = new $assignmentclass();
2512 /// Notices older than 1 day will not be mailed. This is to avoid the problem where
2513 /// cron has not been running for a long time, and then suddenly people are flooded
2514 /// with mail from the past few weeks or months
2517 $endtime = $timenow - $CFG->maxeditingtime;
2518 $starttime = $endtime - 24 * 3600; /// One day earlier
2520 if ($submissions = assignment_get_unmailed_submissions($starttime, $endtime)) {
2522 $realuser = clone($USER);
2524 foreach ($submissions as $key => $submission) {
2525 $DB->set_field("assignment_submissions", "mailed", "1", array("id"=>$submission->id));
2530 foreach ($submissions as $submission) {
2532 echo "Processing assignment submission $submission->id\n";
2534 if (! $user = $DB->get_record("user", array("id"=>$submission->userid))) {
2535 echo "Could not find user $user->id\n";
2539 if (! $course = $DB->get_record("course", array("id"=>$submission->course))) {
2540 echo "Could not find course $submission->course\n";
2544 /// Override the language and timezone of the "current" user, so that
2545 /// mail is customised for the receiver.
2546 cron_setup_user($user, $course);
2548 if (!is_enrolled(get_context_instance(CONTEXT_COURSE, $submission->course), $user->id)) {
2549 echo fullname($user)." not an active participant in " . format_string($course->shortname) . "\n";
2553 if (! $teacher = $DB->get_record("user", array("id"=>$submission->teacher))) {
2554 echo "Could not find teacher $submission->teacher\n";
2558 if (! $mod = get_coursemodule_from_instance("assignment", $submission->assignment, $course->id)) {
2559 echo "Could not find course module for assignment id $submission->assignment\n";
2563 if (! $mod->visible) { /// Hold mail notification for hidden assignments until later
2567 $strassignments = get_string("modulenameplural", "assignment");
2568 $strassignment = get_string("modulename", "assignment");
2570 $assignmentinfo = new object();
2571 $assignmentinfo->teacher = fullname($teacher);
2572 $assignmentinfo->assignment = format_string($submission->name,true);
2573 $assignmentinfo->url = "$CFG->wwwroot/mod/assignment/view.php?id=$mod->id";
2575 $postsubject = "$course->shortname: $strassignments: ".format_string($submission->name,true);
2576 $posttext = "$course->shortname -> $strassignments -> ".format_string($submission->name,true)."\n";
2577 $posttext .= "---------------------------------------------------------------------\n";
2578 $posttext .= get_string("assignmentmail", "assignment", $assignmentinfo)."\n";
2579 $posttext .= "---------------------------------------------------------------------\n";
2581 if ($user->mailformat == 1) { // HTML
2582 $posthtml = "<p><font face=\"sans-serif\">".
2583 "<a href=\"$CFG->wwwroot/course/view.php?id=$course->id\">$course->shortname</a> ->".
2584 "<a href=\"$CFG->wwwroot/mod/assignment/index.php?id=$course->id\">$strassignments</a> ->".
2585 "<a href=\"$CFG->wwwroot/mod/assignment/view.php?id=$mod->id\">".format_string($submission->name,true)."</a></font></p>";
2586 $posthtml .= "<hr /><font face=\"sans-serif\">";
2587 $posthtml .= "<p>".get_string("assignmentmailhtml", "assignment", $assignmentinfo)."</p>";
2588 $posthtml .= "</font><hr />";
2593 $eventdata = new object();
2594 $eventdata->modulename = 'assignment';
2595 $eventdata->userfrom = $teacher;
2596 $eventdata->userto = $user;
2597 $eventdata->subject = $postsubject;
2598 $eventdata->fullmessage = $posttext;
2599 $eventdata->fullmessageformat = FORMAT_PLAIN;
2600 $eventdata->fullmessagehtml = $posthtml;
2601 $eventdata->smallmessage = '';
2602 message_send($eventdata);
2612 * Return grade for given user or all users.
2614 * @param int $assignmentid id of assignment
2615 * @param int $userid optional user id, 0 means all users
2616 * @return array array of grades, false if none
2618 function assignment_get_user_grades($assignment, $userid=0) {
2622 $user = "AND u.id = :userid";
2623 $params = array('userid'=>$userid);
2627 $params['aid'] = $assignment->id;
2629 $sql = "SELECT u.id, u.id AS userid, s.grade AS rawgrade, s.submissioncomment AS feedback, s.format AS feedbackformat,
2630 s.teacher AS usermodified, s.timemarked AS dategraded, s.timemodified AS datesubmitted
2631 FROM {user} u, {assignment_submissions} s
2632 WHERE u.id = s.userid AND s.assignment = :aid
2635 return $DB->get_records_sql($sql, $params);
2639 * Update activity grades
2641 * @param object $assignment
2642 * @param int $userid specific user only, 0 means all
2644 function assignment_update_grades($assignment, $userid=0, $nullifnone=true) {
2646 require_once($CFG->libdir.'/gradelib.php');
2648 if ($assignment->grade == 0) {
2649 assignment_grade_item_update($assignment);
2651 } else if ($grades = assignment_get_user_grades($assignment, $userid)) {
2652 foreach($grades as $k=>$v) {
2653 if ($v->rawgrade == -1) {
2654 $grades[$k]->rawgrade = null;
2657 assignment_grade_item_update($assignment, $grades);
2660 assignment_grade_item_update($assignment);
2665 * Update all grades in gradebook.
2667 function assignment_upgrade_grades() {
2670 $sql = "SELECT COUNT('x')
2671 FROM {assignment} a, {course_modules} cm, {modules} m
2672 WHERE m.name='assignment' AND m.id=cm.module AND cm.instance=a.id";
2673 $count = $DB->count_records_sql($sql);
2675 $sql = "SELECT a.*, cm.idnumber AS cmidnumber, a.course AS courseid
2676 FROM {assignment} a, {course_modules} cm, {modules} m
2677 WHERE m.name='assignment' AND m.id=cm.module AND cm.instance=a.id";
2678 if ($rs = $DB->get_recordset_sql($sql)) {
2679 // too much debug output
2680 $pbar = new progress_bar('assignmentupgradegrades', 500, true);
2682 foreach ($rs as $assignment) {
2684 upgrade_set_timeout(60*5); // set up timeout, may also abort execution
2685 assignment_update_grades($assignment);
2686 $pbar->update($i, $count, "Updating Assignment grades ($i/$count).");
2689 upgrade_set_timeout(); // reset to default timeout
2694 * Create grade item for given assignment
2696 * @param object $assignment object with extra cmidnumber
2697 * @param mixed optional array/object of grade(s); 'reset' means reset grades in gradebook
2698 * @return int 0 if ok, error code otherwise
2700 function assignment_grade_item_update($assignment, $grades=NULL) {
2702 require_once($CFG->libdir.'/gradelib.php');
2704 if (!isset($assignment->courseid)) {
2705 $assignment->courseid = $assignment->course;
2708 $params = array('itemname'=>$assignment->name, 'idnumber'=>$assignment->cmidnumber);
2710 if ($assignment->grade > 0) {
2711 $params['gradetype'] = GRADE_TYPE_VALUE;
2712 $params['grademax'] = $assignment->grade;
2713 $params['grademin'] = 0;
2715 } else if ($assignment->grade < 0) {
2716 $params['gradetype'] = GRADE_TYPE_SCALE;
2717 $params['scaleid'] = -$assignment->grade;
2720 $params['gradetype'] = GRADE_TYPE_TEXT; // allow text comments only
2723 if ($grades === 'reset') {
2724 $params['reset'] = true;
2728 return grade_update('mod/assignment', $assignment->courseid, 'mod', 'assignment', $assignment->id, 0, $grades, $params);
2732 * Delete grade item for given assignment
2734 * @param object $assignment object
2735 * @return object assignment
2737 function assignment_grade_item_delete($assignment) {
2739 require_once($CFG->libdir.'/gradelib.php');
2741 if (!isset($assignment->courseid)) {
2742 $assignment->courseid = $assignment->course;
2745 return grade_update('mod/assignment', $assignment->courseid, 'mod', 'assignment', $assignment->id, 0, NULL, array('deleted'=>1));
2749 * Returns the users with data in one assignment (students and teachers)
2751 * @param $assignmentid int
2752 * @return array of user objects
2754 function assignment_get_participants($assignmentid) {
2758 $students = $DB->get_records_sql("SELECT DISTINCT u.id, u.id
2760 {assignment_submissions} a
2761 WHERE a.assignment = ? and
2762 u.id = a.userid", array($assignmentid));
2764 $teachers = $DB->get_records_sql("SELECT DISTINCT u.id, u.id
2766 {assignment_submissions} a
2767 WHERE a.assignment = ? and
2768 u.id = a.teacher", array($assignmentid));
2770 //Add teachers to students
2772 foreach ($teachers as $teacher) {
2773 $students[$teacher->id] = $teacher;
2776 //Return students array (it contains an array of unique users)
2781 * Serves assignment submissions and other files.
2783 * @param object $course
2785 * @param object $context
2786 * @param string $filearea
2787 * @param array $args
2788 * @param bool $forcedownload
2789 * @return bool false if file not found, does not return if found - just send the file
2791 function assignment_pluginfile($course, $cm, $context, $filearea, $args, $forcedownload) {
2794 if ($context->contextlevel != CONTEXT_MODULE) {
2798 require_login($course, false, $cm);
2800 if (!$assignment = $DB->get_record('assignment', array('id'=>$cm->instance))) {
2804 require_once($CFG->dirroot.'/mod/assignment/type/'.$assignment->assignmenttype.'/assignment.class.php');
2805 $assignmentclass = 'assignment_'.$assignment->assignmenttype;
2806 $assignmentinstance = new $assignmentclass($cm->id, $assignment, $cm, $course);
2808 return $assignmentinstance->send_file($filearea, $args);
2811 * Checks if a scale is being used by an assignment
2813 * This is used by the backup code to decide whether to back up a scale
2814 * @param $assignmentid int
2815 * @param $scaleid int
2816 * @return boolean True if the scale is used by the assignment
2818 function assignment_scale_used($assignmentid, $scaleid) {
2823 $rec = $DB->get_record('assignment', array('id'=>$assignmentid,'grade'=>-$scaleid));
2825 if (!empty($rec) && !empty($scaleid)) {
2833 * Checks if scale is being used by any instance of assignment
2835 * This is used to find out if scale used anywhere
2836 * @param $scaleid int
2837 * @return boolean True if the scale is used by any assignment
2839 function assignment_scale_used_anywhere($scaleid) {
2842 if ($scaleid and $DB->record_exists('assignment', array('grade'=>-$scaleid))) {
2850 * Make sure up-to-date events are created for all assignment instances
2852 * This standard function will check all instances of this module
2853 * and make sure there are up-to-date events created for each of them.
2854 * If courseid = 0, then every assignment event in the site is checked, else
2855 * only assignment events belonging to the course specified are checked.
2856 * This function is used, in its new format, by restore_refresh_events()
2858 * @param $courseid int optional If zero then all assignments for all courses are covered
2859 * @return boolean Always returns true
2861 function assignment_refresh_events($courseid = 0) {
2864 if ($courseid == 0) {
2865 if (! $assignments = $DB->get_records("assignment")) {
2869 if (! $assignments = $DB->get_records("assignment", array("course"=>$courseid))) {
2873 $moduleid = $DB->get_field('modules', 'id', array('name'=>'assignment'));
2875 foreach ($assignments as $assignment) {
2876 $cm = get_coursemodule_from_id('assignment', $assignment->id);
2877 $event = new object();
2878 $event->name = $assignment->name;
2879 $event->description = format_module_intro('assignment', $assignment, $cm->id);
2880 $event->timestart = $assignment->timedue;
2882 if ($event->id = $DB->get_field('event', 'id', array('modulename'=>'assignment', 'instance'=>$assignment->id))) {
2883 update_event($event);
2886 $event->courseid = $assignment->course;
2887 $event->groupid = 0;
2889 $event->modulename = 'assignment';
2890 $event->instance = $assignment->id;
2891 $event->eventtype = 'due';
2892 $event->timeduration = 0;
2893 $event->visible = $DB->get_field('course_modules', 'visible', array('module'=>$moduleid, 'instance'=>$assignment->id));
2902 * Print recent activity from all assignments in a given course
2904 * This is used by the recent activity block
2906 function assignment_print_recent_activity($course, $viewfullnames, $timestart) {
2907 global $CFG, $USER, $DB, $OUTPUT;
2909 // do not use log table if possible, it may be huge
2911 if (!$submissions = $DB->get_records_sql("SELECT asb.id, asb.timemodified, cm.id AS cmid, asb.userid,
2912 u.firstname, u.lastname, u.email, u.picture
2913 FROM {assignment_submissions} asb
2914 JOIN {assignment} a ON a.id = asb.assignment
2915 JOIN {course_modules} cm ON cm.instance = a.id
2916 JOIN {modules} md ON md.id = cm.module
2917 JOIN {user} u ON u.id = asb.userid
2918 WHERE asb.timemodified > ? AND
2920 md.name = 'assignment'
2921 ORDER BY asb.timemodified ASC", array($timestart, $course->id))) {
2925 $modinfo =& get_fast_modinfo($course); // reference needed because we might load the groups
2929 foreach($submissions as $submission) {
2930 if (!array_key_exists($submission->cmid, $modinfo->cms)) {
2933 $cm = $modinfo->cms[$submission->cmid];
2934 if (!$cm->uservisible) {
2937 if ($submission->userid == $USER->id) {
2938 $show[] = $submission;
2942 // the act of sumbitting of assignment may be considered private - only graders will see it if specified
2943 if (empty($CFG->assignment_showrecentsubmissions)) {
2944 if (!array_key_exists($cm->id, $grader)) {
2945 $grader[$cm->id] = has_capability('moodle/grade:viewall', get_context_instance(CONTEXT_MODULE, $cm->id));
2947 if (!$grader[$cm->id]) {
2952 $groupmode = groups_get_activity_groupmode($cm, $course);
2954 if ($groupmode == SEPARATEGROUPS and !has_capability('moodle/site:accessallgroups', get_context_instance(CONTEXT_MODULE, $cm->id))) {
2955 if (isguestuser()) {
2956 // shortcut - guest user does not belong into any group
2960 if (is_null($modinfo->groups)) {
2961 $modinfo->groups = groups_get_user_groups($course->id); // load all my groups and cache it in modinfo
2964 // this will be slow - show only users that share group with me in this cm
2965 if (empty($modinfo->groups[$cm->id])) {
2968 $usersgroups = groups_get_all_groups($course->id, $submission->userid, $cm->groupingid);
2969 if (is_array($usersgroups)) {
2970 $usersgroups = array_keys($usersgroups);
2971 $intersect = array_intersect($usersgroups, $modinfo->groups[$cm->id]);
2972 if (empty($intersect)) {
2977 $show[] = $submission;
2984 echo $OUTPUT->heading(get_string('newsubmissions', 'assignment').':', 3);
2986 foreach ($show as $submission) {
2987 $cm = $modinfo->cms[$submission->cmid];
2988 $link = $CFG->wwwroot.'/mod/assignment/view.php?id='.$cm->id;
2989 print_recent_activity_note($submission->timemodified, $submission, $cm->name, $link, false, $viewfullnames);
2997 * Returns all assignments since a given time in specified forum.
2999 function assignment_get_recent_mod_activity(&$activities, &$index, $timestart, $courseid, $cmid, $userid=0, $groupid=0) {
3000 global $CFG, $COURSE, $USER, $DB;
3002 if ($COURSE->id == $courseid) {
3005 $course = $DB->get_record('course', array('id'=>$courseid));
3008 $modinfo =& get_fast_modinfo($course);
3010 $cm = $modinfo->cms[$cmid];
3014 $userselect = "AND u.id = :userid";
3015 $params['userid'] = $userid;
3021 $groupselect = "AND gm.groupid = :groupid";
3022 $groupjoin = "JOIN {groups_members} gm ON gm.userid=u.id";
3023 $params['groupid'] = $groupid;
3029 $params['cminstance'] = $cm->instance;
3030 $params['timestart'] = $timestart;
3032 $userfields = user_picture::fields('u', null, 'userid');
3034 if (!$submissions = $DB->get_records_sql("SELECT asb.id, asb.timemodified,
3036 FROM {assignment_submissions} asb
3037 JOIN {assignment} a ON a.id = asb.assignment
3038 JOIN {user} u ON u.id = asb.userid
3040 WHERE asb.timemodified > :timestart AND a.id = :cminstance
3041 $userselect $groupselect
3042 ORDER BY asb.timemodified ASC", $params)) {
3046 $groupmode = groups_get_activity_groupmode($cm, $course);
3047 $cm_context = get_context_instance(CONTEXT_MODULE, $cm->id);
3048 $grader = has_capability('moodle/grade:viewall', $cm_context);
3049 $accessallgroups = has_capability('moodle/site:accessallgroups', $cm_context);
3050 $viewfullnames = has_capability('moodle/site:viewfullnames', $cm_context);
3052 if (is_null($modinfo->groups)) {
3053 $modinfo->groups = groups_get_user_groups($course->id); // load all my groups and cache it in modinfo
3058 foreach($submissions as $submission) {
3059 if ($submission->userid == $USER->id) {
3060 $show[] = $submission;
3063 // the act of submitting of assignment may be considered private - only graders will see it if specified
3064 if (empty($CFG->assignment_showrecentsubmissions)) {
3070 if ($groupmode == SEPARATEGROUPS and !$accessallgroups) {
3071 if (isguestuser()) {
3072 // shortcut - guest user does not belong into any group
3076 // this will be slow - show only users that share group with me in this cm
3077 if (empty($modinfo->groups[$cm->id])) {
3080 $usersgroups = groups_get_all_groups($course->id, $cm->userid, $cm->groupingid);
3081 if (is_array($usersgroups)) {
3082 $usersgroups = array_keys($usersgroups);
3083 $intersect = array_intersect($usersgroups, $modinfo->groups[$cm->id]);
3084 if (empty($intersect)) {
3089 $show[] = $submission;
3097 require_once($CFG->libdir.'/gradelib.php');
3099 foreach ($show as $id=>$submission) {
3100 $userids[] = $submission->userid;
3103 $grades = grade_get_grades($courseid, 'mod', 'assignment', $cm->instance, $userids);
3106 $aname = format_string($cm->name,true);
3107 foreach ($show as $submission) {
3108 $tmpactivity = new object();
3110 $tmpactivity->type = 'assignment';
3111 $tmpactivity->cmid = $cm->id;
3112 $tmpactivity->name = $aname;
3113 $tmpactivity->sectionnum = $cm->sectionnum;
3114 $tmpactivity->timestamp = $submission->timemodified;
3117 $tmpactivity->grade = $grades->items[0]->grades[$submission->userid]->str_long_grade;
3120 $userfields = explode(',', user_picture::fields());
3121 foreach ($userfields as $userfield) {
3122 if ($userfield == 'id') {
3123 $tmpactivity->user->{$userfield} = $submission->userid; // aliased in SQL above
3125 $tmpactivity->user->{$userfield} = $submission->{$userfield};
3128 $tmpactivity->user->fullname = fullname($submission, $viewfullnames);
3130 $activities[$index++] = $tmpactivity;
3137 * Print recent activity from all assignments in a given course
3139 * This is used by course/recent.php
3141 function assignment_print_recent_mod_activity($activity, $courseid, $detail, $modnames) {
3142 global $CFG, $OUTPUT;
3144 echo '<table border="0" cellpadding="3" cellspacing="0" class="assignment-recent">';
3146 echo "<tr><td class=\"userpicture\" valign=\"top\">";
3147 echo $OUTPUT->user_picture($activity->user);
3151 $modname = $modnames[$activity->type];
3152 echo '<div class="title">';
3153 echo "<img src=\"" . $OUTPUT->pix_url('icon', 'assignment') . "\" ".
3154 "class=\"icon\" alt=\"$modname\">";
3155 echo "<a href=\"$CFG->wwwroot/mod/assignment/view.php?id={$activity->cmid}\">{$activity->name}</a>";
3159 if (isset($activity->grade)) {
3160 echo '<div class="grade">';
3161 echo get_string('grade').': ';
3162 echo $activity->grade;
3166 echo '<div class="user">';
3167 echo "<a href=\"$CFG->wwwroot/user/view.php?id={$activity->user->id}&course=$courseid\">"
3168 ."{$activity->user->fullname}</a> - ".userdate($activity->timestamp);
3171 echo "</td></tr></table>";
3174 /// GENERIC SQL FUNCTIONS
3177 * Fetch info from logs
3179 * @param $log object with properties ->info (the assignment id) and ->userid
3180 * @return array with assignment name and user firstname and lastname
3182 function assignment_log_info($log) {
3185 return $DB->get_record_sql("SELECT a.name, u.firstname, u.lastname
3186 FROM {assignment} a, {user} u
3187 WHERE a.id = ? AND u.id = ?", array($log->info, $log->userid));
3191 * Return list of marked submissions that have not been mailed out for currently enrolled students
3195 function assignment_get_unmailed_submissions($starttime, $endtime) {
3198 return $DB->get_records_sql("SELECT s.*, a.course, a.name
3199 FROM {assignment_submissions} s,
3202 AND s.timemarked <= ?
3203 AND s.timemarked >= ?
3204 AND s.assignment = a.id", array($endtime, $starttime));
3208 * Counts all real assignment submissions by ENROLLED students (not empty ones)
3210 * There are also assignment type methods count_real_submissions() which in the default
3211 * implementation simply call this function.
3212 * @param $groupid int optional If nonzero then count is restricted to this group
3213 * @return int The number of submissions
3215 function assignment_count_real_submissions($cm, $groupid=0) {
3218 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
3220 // this is all the users with this capability set, in this context or higher
3221 if ($users = get_enrolled_users($context, 'mod/assignment:view', $groupid, 'u.id')) {
3222 $users = array_keys($users);
3225 // if groupmembersonly used, remove users who are not in any group
3226 if ($users and !empty($CFG->enablegroupmembersonly) and $cm->groupmembersonly) {
3227 if ($groupingusers = groups_get_grouping_members($cm->groupingid, 'u.id', 'u.id')) {
3228 $users = array_intersect($users, array_keys($groupingusers));
3232 if (empty($users)) {
3236 $userlists = implode(',', $users);
3238 return $DB->count_records_sql("SELECT COUNT('x')
3239 FROM {assignment_submissions}
3240 WHERE assignment = ? AND
3241 timemodified > 0 AND
3242 userid IN ($userlists)", array($cm->instance));
3247 * Return all assignment submissions by ENROLLED students (even empty)
3249 * There are also assignment type methods get_submissions() wich in the default
3250 * implementation simply call this function.
3251 * @param $sort string optional field names for the ORDER BY in the sql query
3252 * @param $dir string optional specifying the sort direction, defaults to DESC
3253 * @return array The submission objects indexed by id
3255 function assignment_get_all_submissions($assignment, $sort="", $dir="DESC") {
3256 /// Return all assignment submissions by ENROLLED students (even empty)
3259 if ($sort == "lastname" or $sort == "firstname") {
3260 $sort = "u.$sort $dir";
3261 } else if (empty($sort)) {
3262 $sort = "a.timemodified DESC";
3264 $sort = "a.$sort $dir";
3267 /* not sure this is needed at all since assignment already has a course define, so this join?
3268 $select = "s.course = '$assignment->course' AND";
3269 if ($assignment->course == SITEID) {
3273 return $DB->get_records_sql("SELECT a.*
3274 FROM {assignment_submissions} a, {user} u
3275 WHERE u.id = a.userid
3276 AND a.assignment = ?
3277 ORDER BY $sort", array($assignment->id));
3282 * Add a get_coursemodule_info function in case any assignment type wants to add 'extra' information
3283 * for the course (see resource).
3285 * Given a course_module object, this function returns any "extra" information that may be needed
3286 * when printing this activity in a course listing. See get_array_of_activities() in course/lib.php.
3288 * @param $coursemodule object The coursemodule object (record).
3289 * @return object An object on information that the courses will know about (most noticeably, an icon).
3292 function assignment_get_coursemodule_info($coursemodule) {
3295 if (! $assignment = $DB->get_record('assignment', array('id'=>$coursemodule->instance), 'id, assignmenttype, name')) {
3299 $libfile = "$CFG->dirroot/mod/assignment/type/$assignment->assignmenttype/assignment.class.php";
3301 if (file_exists($libfile)) {
3302 require_once($libfile);
3303 $assignmentclass = "assignment_$assignment->assignmenttype";
3304 $ass = new $assignmentclass('staticonly');
3305 if ($result = $ass->get_coursemodule_info($coursemodule)) {
3308 $info = new object();
3309 $info->name = $assignment->name;
3314 debugging('Incorrect assignment type: '.$assignment->assignmenttype);
3321 /// OTHER GENERAL FUNCTIONS FOR ASSIGNMENTS ///////////////////////////////////////
3324 * Returns an array of installed assignment types indexed and sorted by name
3326 * @return array The index is the name of the assignment type, the value its full name from the language strings
3328 function assignment_types() {
3330 $names = get_plugin_list('assignment');
3331 foreach ($names as $name=>$dir) {
3332 $types[$name] = get_string('type'.$name, 'assignment');
3334 // ugly hack to support pluggable assignment type titles..
3335 if ($types[$name] == '[[type'.$name.']]') {
3336 $types[$name] = get_string('type'.$name, 'assignment_'.$name);
3343 function assignment_print_overview($courses, &$htmlarray) {
3344 global $USER, $CFG, $DB;
3346 if (empty($courses) || !is_array($courses) || count($courses) == 0) {
3350 if (!$assignments = get_all_instances_in_courses('assignment',$courses)) {
3354 $assignmentids = array();
3356 // Do assignment_base::isopen() here without loading the whole thing for speed
3357 foreach ($assignments as $key => $assignment) {
3359 if ($assignment->timedue) {
3360 if ($assignment->preventlate) {
3361 $isopen = ($assignment->timeavailable <= $time && $time <= $assignment->timedue);
3363 $isopen = ($assignment->timeavailable <= $time);
3366 if (empty($isopen) || empty($assignment->timedue)) {
3367 unset($assignments[$key]);
3369 $assignmentids[] = $assignment->id;
3373 if (empty($assignmentids)){
3374 // no assignments to look at - we're done