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;
74 * @todo document this var
78 * @todo document this var
85 * Constructor for the base assignment class
87 * Constructor for the base assignment class.
88 * If cmid is set create the cm, course, assignment objects.
89 * If the assignment is hidden and the user is not a teacher then
90 * this prints a page header and notice.
94 * @param int $cmid the current course module id - not set for new assignments
95 * @param object $assignment usually null, but if we have it we pass it to save db access
96 * @param object $cm usually null, but if we have it we pass it to save db access
97 * @param object $course usually null, but if we have it we pass it to save db access
99 function assignment_base($cmid='staticonly', $assignment=NULL, $cm=NULL, $course=NULL) {
102 if ($cmid == 'staticonly') {
103 //use static functions only!
111 } else if (! $this->cm = get_coursemodule_from_id('assignment', $cmid)) {
112 print_error('invalidcoursemodule');
115 $this->context = get_context_instance(CONTEXT_MODULE, $this->cm->id);
118 $this->course = $course;
119 } else if ($this->cm->course == $COURSE->id) {
120 $this->course = $COURSE;
121 } else if (! $this->course = $DB->get_record('course', array('id'=>$this->cm->course))) {
122 print_error('invalidid', 'assignment');
124 $this->coursecontext = get_context_instance(CONTEXT_COURSE, $this->course->id);
125 $courseshortname = format_text($this->course->shortname, true, array('context' => $this->coursecontext));
128 $this->assignment = $assignment;
129 } else if (! $this->assignment = $DB->get_record('assignment', array('id'=>$this->cm->instance))) {
130 print_error('invalidid', 'assignment');
133 $this->assignment->cmidnumber = $this->cm->idnumber; // compatibility with modedit assignment obj
134 $this->assignment->courseid = $this->course->id; // compatibility with modedit assignment obj
136 $this->strassignment = get_string('modulename', 'assignment');
137 $this->strassignments = get_string('modulenameplural', 'assignment');
138 $this->strsubmissions = get_string('submissions', 'assignment');
139 $this->strlastmodified = get_string('lastmodified');
140 $this->pagetitle = strip_tags($courseshortname.': '.$this->strassignment.': '.format_string($this->assignment->name, true, array('context' => $this->context)));
142 // visibility handled by require_login() with $cm parameter
143 // get current group only when really needed
145 /// Set up things for a HTML editor if it's needed
146 $this->defaultformat = editors_get_preferred_format();
150 * Display the assignment, used by view.php
152 * This in turn calls the methods producing individual parts of the page
156 $context = get_context_instance(CONTEXT_MODULE,$this->cm->id);
157 require_capability('mod/assignment:view', $context);
159 add_to_log($this->course->id, "assignment", "view", "view.php?id={$this->cm->id}",
160 $this->assignment->id, $this->cm->id);
162 $this->view_header();
168 $this->view_feedback();
170 $this->view_footer();
174 * Display the header and top of a page
176 * (this doesn't change much for assignment types)
177 * This is used by the view() method to print the header of view.php but
178 * it can be used on other pages in which case the string to denote the
179 * page in the navigation trail should be passed as an argument
182 * @param string $subpage Description of subpage to be used in navigation trail
184 function view_header($subpage='') {
185 global $CFG, $PAGE, $OUTPUT;
188 $PAGE->navbar->add($subpage);
191 $PAGE->set_title($this->pagetitle);
192 $PAGE->set_heading($this->course->fullname);
194 echo $OUTPUT->header();
196 groups_print_activity_menu($this->cm, $CFG->wwwroot . '/mod/assignment/view.php?id=' . $this->cm->id);
198 echo '<div class="reportlink">'.$this->submittedlink().'</div>';
199 echo '<div class="clearer"></div>';
204 * Display the assignment intro
206 * This will most likely be extended by assignment type plug-ins
207 * The default implementation prints the assignment description in a box
209 function view_intro() {
211 echo $OUTPUT->box_start('generalbox boxaligncenter', 'intro');
212 echo format_module_intro('assignment', $this->assignment, $this->cm->id);
213 echo $OUTPUT->box_end();
214 plagiarism_print_disclosure($this->cm->id);
218 * Display the assignment dates
220 * Prints the assignment start and end dates in a box.
221 * This will be suitable for most assignment types
223 function view_dates() {
225 if (!$this->assignment->timeavailable && !$this->assignment->timedue) {
229 echo $OUTPUT->box_start('generalbox boxaligncenter', 'dates');
231 if ($this->assignment->timeavailable) {
232 echo '<tr><td class="c0">'.get_string('availabledate','assignment').':</td>';
233 echo ' <td class="c1">'.userdate($this->assignment->timeavailable).'</td></tr>';
235 if ($this->assignment->timedue) {
236 echo '<tr><td class="c0">'.get_string('duedate','assignment').':</td>';
237 echo ' <td class="c1">'.userdate($this->assignment->timedue).'</td></tr>';
240 echo $OUTPUT->box_end();
245 * Display the bottom and footer of a page
247 * This default method just prints the footer.
248 * This will be suitable for most assignment types
250 function view_footer() {
252 echo $OUTPUT->footer();
256 * Display the feedback to the student
258 * This default method prints the teacher picture and name, date when marked,
259 * grade and teacher submissioncomment.
260 * If advanced grading is used the method render_grade from the
261 * advanced grading controller is called to display the grade.
266 * @param object $submission The submission object or NULL in which case it will be loaded
268 function view_feedback($submission=NULL) {
269 global $USER, $CFG, $DB, $OUTPUT, $PAGE;
270 require_once($CFG->libdir.'/gradelib.php');
271 require_once("$CFG->dirroot/grade/grading/lib.php");
273 if (!$submission) { /// Get submission for this assignment
275 $submission = $this->get_submission($userid);
277 $userid = $submission->userid;
279 // Check the user can submit
280 $canviewfeedback = ($userid == $USER->id && has_capability('mod/assignment:submit', $this->context, $USER->id, false));
281 // If not then check if the user still has the view cap and has a previous submission
282 $canviewfeedback = $canviewfeedback || (!empty($submission) && $submission->userid == $USER->id && has_capability('mod/assignment:view', $this->context));
283 // Or if user can grade (is a teacher or admin)
284 $canviewfeedback = $canviewfeedback || has_capability('mod/assignment:grade', $this->context);
286 if (!$canviewfeedback) {
287 // can not view or submit assignments -> no feedback
291 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, $userid);
292 $item = $grading_info->items[0];
293 $grade = $item->grades[$userid];
295 if ($grade->hidden or $grade->grade === false) { // hidden or error
299 if ($grade->grade === null and empty($grade->str_feedback)) { /// Nothing to show yet
303 $graded_date = $grade->dategraded;
304 $graded_by = $grade->usermodified;
306 /// We need the teacher info
307 if (!$teacher = $DB->get_record('user', array('id'=>$graded_by))) {
308 print_error('cannotfindteacher');
311 /// Print the feedback
312 echo $OUTPUT->heading(get_string('feedbackfromteacher', 'assignment', fullname($teacher)));
314 echo '<table cellspacing="0" class="feedback">';
317 echo '<td class="left picture">';
319 echo $OUTPUT->user_picture($teacher);
322 echo '<td class="topic">';
323 echo '<div class="from">';
325 echo '<div class="fullname">'.fullname($teacher).'</div>';
327 echo '<div class="time">'.userdate($graded_date).'</div>';
333 echo '<td class="left side"> </td>';
334 echo '<td class="content">';
335 $grade_str = '<div class="grade">'. get_string("grade").': '.$grade->str_long_grade. '</div>';
336 if (!empty($submission) && $controller = get_grading_manager($this->context, 'mod_assignment', 'submission')->get_active_controller()) {
337 $controller->set_grade_range(make_grades_menu($this->assignment->grade));
338 echo $controller->render_grade($PAGE, $submission->id, $item, $grade_str, has_capability('mod/assignment:grade', $this->context));
342 echo '<div class="clearer"></div>';
344 echo '<div class="comment">';
345 echo $grade->str_feedback;
349 if ($this->type == 'uploadsingle') { //@TODO: move to overload view_feedback method in the class or is uploadsingle merging into upload?
350 $responsefiles = $this->print_responsefiles($submission->userid, true);
351 if (!empty($responsefiles)) {
353 echo '<td class="left side"> </td>';
354 echo '<td class="content">';
364 * Returns a link with info about the state of the assignment submissions
366 * This is used by view_header to put this link at the top right of the page.
367 * For teachers it gives the number of submitted assignments with a link
368 * For students it gives the time of their submission.
369 * This will be suitable for most assignment types.
373 * @param bool $allgroup print all groups info if user can access all groups, suitable for index.php
376 function submittedlink($allgroups=false) {
381 $urlbase = "{$CFG->wwwroot}/mod/assignment/";
383 $context = get_context_instance(CONTEXT_MODULE,$this->cm->id);
384 if (has_capability('mod/assignment:grade', $context)) {
385 if ($allgroups and has_capability('moodle/site:accessallgroups', $context)) {
388 $group = groups_get_activity_group($this->cm);
390 if ($this->type == 'offline') {
391 $submitted = '<a href="'.$urlbase.'submissions.php?id='.$this->cm->id.'">'.
392 get_string('viewfeedback', 'assignment').'</a>';
393 } else if ($count = $this->count_real_submissions($group)) {
394 $submitted = '<a href="'.$urlbase.'submissions.php?id='.$this->cm->id.'">'.
395 get_string('viewsubmissions', 'assignment', $count).'</a>';
397 $submitted = '<a href="'.$urlbase.'submissions.php?id='.$this->cm->id.'">'.
398 get_string('noattempts', 'assignment').'</a>';
402 if ($submission = $this->get_submission($USER->id)) {
403 if ($submission->timemodified) {
404 if ($submission->timemodified <= $this->assignment->timedue || empty($this->assignment->timedue)) {
405 $submitted = '<span class="early">'.userdate($submission->timemodified).'</span>';
407 $submitted = '<span class="late">'.userdate($submission->timemodified).'</span>';
419 * @todo Document this function
421 function setup_elements(&$mform) {
426 * Any preprocessing needed for the settings form for
427 * this assignment type
429 * @param array $default_values - array to fill in with the default values
430 * in the form 'formelement' => 'value'
431 * @param object $form - the form that is to be displayed
434 function form_data_preprocessing(&$default_values, $form) {
438 * Any extra validation checks needed for the settings
439 * form for this assignment type
441 * See lib/formslib.php, 'validation' function for details
443 function form_validation($data, $files) {
448 * Create a new assignment activity
450 * Given an object containing all the necessary data,
451 * (defined by the form in mod_form.php) this function
452 * will create a new instance and return the id number
453 * of the new instance.
454 * The due data is added to the calendar
455 * This is common to all assignment types.
459 * @param object $assignment The data from the form on mod_form.php
460 * @return int The id of the assignment
462 function add_instance($assignment) {
465 $assignment->timemodified = time();
466 $assignment->courseid = $assignment->course;
468 $returnid = $DB->insert_record("assignment", $assignment);
469 $assignment->id = $returnid;
471 if ($assignment->timedue) {
472 $event = new stdClass();
473 $event->name = $assignment->name;
474 $event->description = format_module_intro('assignment', $assignment, $assignment->coursemodule);
475 $event->courseid = $assignment->course;
478 $event->modulename = 'assignment';
479 $event->instance = $returnid;
480 $event->eventtype = 'due';
481 $event->timestart = $assignment->timedue;
482 $event->timeduration = 0;
484 calendar_event::create($event);
487 assignment_grade_item_update($assignment);
493 * Deletes an assignment activity
495 * Deletes all database records, files and calendar events for this assignment.
499 * @param object $assignment The assignment to be deleted
500 * @return boolean False indicates error
502 function delete_instance($assignment) {
505 $assignment->courseid = $assignment->course;
509 // now get rid of all files
510 $fs = get_file_storage();
511 if ($cm = get_coursemodule_from_instance('assignment', $assignment->id)) {
512 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
513 $fs->delete_area_files($context->id);
516 if (! $DB->delete_records('assignment_submissions', array('assignment'=>$assignment->id))) {
520 if (! $DB->delete_records('event', array('modulename'=>'assignment', 'instance'=>$assignment->id))) {
524 if (! $DB->delete_records('assignment', array('id'=>$assignment->id))) {
527 $mod = $DB->get_field('modules','id',array('name'=>'assignment'));
529 assignment_grade_item_delete($assignment);
535 * Updates a new assignment activity
537 * Given an object containing all the necessary data,
538 * (defined by the form in mod_form.php) this function
539 * will update the assignment instance and return the id number
540 * The due date is updated in the calendar
541 * This is common to all assignment types.
545 * @param object $assignment The data from the form on mod_form.php
546 * @return bool success
548 function update_instance($assignment) {
551 $assignment->timemodified = time();
553 $assignment->id = $assignment->instance;
554 $assignment->courseid = $assignment->course;
556 $DB->update_record('assignment', $assignment);
558 if ($assignment->timedue) {
559 $event = new stdClass();
561 if ($event->id = $DB->get_field('event', 'id', array('modulename'=>'assignment', 'instance'=>$assignment->id))) {
563 $event->name = $assignment->name;
564 $event->description = format_module_intro('assignment', $assignment, $assignment->coursemodule);
565 $event->timestart = $assignment->timedue;
567 $calendarevent = calendar_event::load($event->id);
568 $calendarevent->update($event);
570 $event = new stdClass();
571 $event->name = $assignment->name;
572 $event->description = format_module_intro('assignment', $assignment, $assignment->coursemodule);
573 $event->courseid = $assignment->course;
576 $event->modulename = 'assignment';
577 $event->instance = $assignment->id;
578 $event->eventtype = 'due';
579 $event->timestart = $assignment->timedue;
580 $event->timeduration = 0;
582 calendar_event::create($event);
585 $DB->delete_records('event', array('modulename'=>'assignment', 'instance'=>$assignment->id));
588 // get existing grade item
589 assignment_grade_item_update($assignment);
595 * Update grade item for this submission.
597 function update_grade($submission) {
598 assignment_update_grades($this->assignment, $submission->userid);
602 * Top-level function for handling of submissions called by submissions.php
604 * This is for handling the teacher interaction with the grading interface
605 * This should be suitable for most assignment types.
608 * @param string $mode Specifies the kind of teacher interaction taking place
610 function submissions($mode) {
611 ///The main switch is changed to facilitate
612 ///1) Batch fast grading
613 ///2) Skip to the next one on the popup
614 ///3) Save and Skip to the next one on the popup
616 //make user global so we can use the id
617 global $USER, $OUTPUT, $DB, $PAGE;
619 $mailinfo = optional_param('mailinfo', null, PARAM_BOOL);
621 if (optional_param('next', null, PARAM_BOOL)) {
624 if (optional_param('saveandnext', null, PARAM_BOOL)) {
628 if (is_null($mailinfo)) {
629 if (optional_param('sesskey', null, PARAM_BOOL)) {
630 set_user_preference('assignment_mailinfo', $mailinfo);
632 $mailinfo = get_user_preferences('assignment_mailinfo', 0);
635 set_user_preference('assignment_mailinfo', $mailinfo);
638 if (!($this->validate_and_preprocess_feedback())) {
639 // form was submitted ('Save' or 'Save and next' was pressed, but validation failed)
640 $this->display_submission();
645 case 'grade': // We are in a main window grading
646 if ($submission = $this->process_feedback()) {
647 $this->display_submissions(get_string('changessaved'));
649 $this->display_submissions();
653 case 'single': // We are in a main window displaying one submission
654 if ($submission = $this->process_feedback()) {
655 $this->display_submissions(get_string('changessaved'));
657 $this->display_submission();
661 case 'all': // Main window, display everything
662 $this->display_submissions();
666 ///do the fast grading stuff - this process should work for all 3 subclasses
670 if (isset($_POST['submissioncomment'])) {
671 $col = 'submissioncomment';
674 if (isset($_POST['menu'])) {
679 //both submissioncomment and grade columns collapsed..
680 $this->display_submissions();
684 foreach ($_POST[$col] as $id => $unusedvalue){
686 $id = (int)$id; //clean parameter name
688 $this->process_outcomes($id);
690 if (!$submission = $this->get_submission($id)) {
691 $submission = $this->prepare_new_submission($id);
692 $newsubmission = true;
694 $newsubmission = false;
696 unset($submission->data1); // Don't need to update this.
697 unset($submission->data2); // Don't need to update this.
699 //for fast grade, we need to check if any changes take place
703 $grade = $_POST['menu'][$id];
704 $updatedb = $updatedb || ($submission->grade != $grade);
705 $submission->grade = $grade;
707 if (!$newsubmission) {
708 unset($submission->grade); // Don't need to update this.
712 $commentvalue = trim($_POST['submissioncomment'][$id]);
713 $updatedb = $updatedb || ($submission->submissioncomment != $commentvalue);
714 $submission->submissioncomment = $commentvalue;
716 unset($submission->submissioncomment); // Don't need to update this.
719 $submission->teacher = $USER->id;
721 $submission->mailed = (int)(!$mailinfo);
724 $submission->timemarked = time();
726 //if it is not an update, we don't change the last modified time etc.
727 //this will also not write into database if no submissioncomment and grade is entered.
730 if ($newsubmission) {
731 if (!isset($submission->submissioncomment)) {
732 $submission->submissioncomment = '';
734 $sid = $DB->insert_record('assignment_submissions', $submission);
735 $submission->id = $sid;
737 $DB->update_record('assignment_submissions', $submission);
740 // trigger grade event
741 $this->update_grade($submission);
743 //add to log only if updating
744 add_to_log($this->course->id, 'assignment', 'update grades',
745 'submissions.php?id='.$this->cm->id.'&user='.$submission->userid,
746 $submission->userid, $this->cm->id);
751 $message = $OUTPUT->notification(get_string('changessaved'), 'notifysuccess');
753 $this->display_submissions($message);
758 ///We are in pop up. save the current one and go to the next one.
759 //first we save the current changes
760 if ($submission = $this->process_feedback()) {
761 //print_heading(get_string('changessaved'));
762 //$extra_javascript = $this->update_main_listing($submission);
766 /// We are currently in pop up, but we want to skip to next one without saving.
767 /// This turns out to be similar to a single case
768 /// The URL used is for the next submission.
769 $offset = required_param('offset', PARAM_INT);
770 $nextid = required_param('nextid', PARAM_INT);
771 $id = required_param('id', PARAM_INT);
772 $offset = (int)$offset+1;
773 //$this->display_submission($offset+1 , $nextid);
774 redirect('submissions.php?id='.$id.'&userid='. $nextid . '&mode=single&offset='.$offset);
778 $this->display_submission();
782 echo "something seriously is wrong!!";
788 * Checks if grading method allows quickgrade mode. At the moment it is hardcoded
789 * that advanced grading methods do not allow quickgrade.
791 * Assignment type plugins are not allowed to override this method
795 public final function quickgrade_mode_allowed() {
797 require_once("$CFG->dirroot/grade/grading/lib.php");
798 if ($controller = get_grading_manager($this->context, 'mod_assignment', 'submission')->get_active_controller()) {
805 * Helper method updating the listing on the main script from popup using javascript
809 * @param $submission object The submission whose data is to be updated on the main page
811 function update_main_listing($submission) {
812 global $SESSION, $CFG, $OUTPUT;
816 $perpage = get_user_preferences('assignment_perpage', 10);
818 $quickgrade = get_user_preferences('assignment_quickgrade', 0) && $this->quickgrade_mode_allowed();
820 /// Run some Javascript to try and update the parent page
821 $output .= '<script type="text/javascript">'."\n<!--\n";
822 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['submissioncomment'])) {
824 $output.= 'opener.document.getElementById("submissioncomment'.$submission->userid.'").value="'
825 .trim($submission->submissioncomment).'";'."\n";
827 $output.= 'opener.document.getElementById("com'.$submission->userid.
828 '").innerHTML="'.shorten_text(trim(strip_tags($submission->submissioncomment)), 15)."\";\n";
832 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['grade'])) {
833 //echo optional_param('menuindex');
835 $output.= 'opener.document.getElementById("menumenu'.$submission->userid.
836 '").selectedIndex="'.optional_param('menuindex', 0, PARAM_INT).'";'."\n";
838 $output.= 'opener.document.getElementById("g'.$submission->userid.'").innerHTML="'.
839 $this->display_grade($submission->grade)."\";\n";
842 //need to add student's assignments in there too.
843 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['timemodified']) &&
844 $submission->timemodified) {
845 $output.= 'opener.document.getElementById("ts'.$submission->userid.
846 '").innerHTML="'.addslashes_js($this->print_student_answer($submission->userid)).userdate($submission->timemodified)."\";\n";
849 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['timemarked']) &&
850 $submission->timemarked) {
851 $output.= 'opener.document.getElementById("tt'.$submission->userid.
852 '").innerHTML="'.userdate($submission->timemarked)."\";\n";
855 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['status'])) {
856 $output.= 'opener.document.getElementById("up'.$submission->userid.'").className="s1";';
857 $buttontext = get_string('update');
858 $url = new moodle_url('/mod/assignment/submissions.php', array(
859 'id' => $this->cm->id,
860 'userid' => $submission->userid,
862 'offset' => (optional_param('offset', '', PARAM_INT)-1)));
863 $button = $OUTPUT->action_link($url, $buttontext, new popup_action('click', $url, 'grade'.$submission->userid, array('height' => 450, 'width' => 700)), array('ttile'=>$buttontext));
865 $output .= 'opener.document.getElementById("up'.$submission->userid.'").innerHTML="'.addslashes_js($button).'";';
868 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, $submission->userid);
870 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['finalgrade'])) {
871 $output.= 'opener.document.getElementById("finalgrade_'.$submission->userid.
872 '").innerHTML="'.$grading_info->items[0]->grades[$submission->userid]->str_grade.'";'."\n";
875 if (!empty($CFG->enableoutcomes) and empty($SESSION->flextable['mod-assignment-submissions']->collapse['outcome'])) {
877 if (!empty($grading_info->outcomes)) {
878 foreach($grading_info->outcomes as $n=>$outcome) {
879 if ($outcome->grades[$submission->userid]->locked) {
884 $output.= 'opener.document.getElementById("outcome_'.$n.'_'.$submission->userid.
885 '").selectedIndex="'.$outcome->grades[$submission->userid]->grade.'";'."\n";
888 $options = make_grades_menu(-$outcome->scaleid);
889 $options[0] = get_string('nooutcome', 'grades');
890 $output.= 'opener.document.getElementById("outcome_'.$n.'_'.$submission->userid.'").innerHTML="'.$options[$outcome->grades[$submission->userid]->grade]."\";\n";
897 $output .= "\n-->\n</script>";
902 * Return a grade in user-friendly form, whether it's a scale or not
905 * @param mixed $grade
906 * @return string User-friendly representation of grade
908 function display_grade($grade) {
911 static $scalegrades = array(); // Cache scales for each assignment - they might have different scales!!
913 if ($this->assignment->grade >= 0) { // Normal number
917 return $grade.' / '.$this->assignment->grade;
921 if (empty($scalegrades[$this->assignment->id])) {
922 if ($scale = $DB->get_record('scale', array('id'=>-($this->assignment->grade)))) {
923 $scalegrades[$this->assignment->id] = make_menu_from_list($scale->scale);
928 if (isset($scalegrades[$this->assignment->id][$grade])) {
929 return $scalegrades[$this->assignment->id][$grade];
936 * Display a single submission, ready for grading on a popup window
938 * This default method prints the teacher info and submissioncomment box at the top and
939 * the student info and submission at the bottom.
940 * This method also fetches the necessary data in order to be able to
941 * provide a "Next submission" button.
942 * Calls preprocess_submission() to give assignment type plug-ins a chance
943 * to process submissions before they are graded
944 * This method gets its arguments from the page parameters userid and offset
948 * @param string $extra_javascript
950 function display_submission($offset=-1,$userid =-1, $display=true) {
951 global $CFG, $DB, $PAGE, $OUTPUT, $USER;
952 require_once($CFG->libdir.'/gradelib.php');
953 require_once($CFG->libdir.'/tablelib.php');
954 require_once("$CFG->dirroot/repository/lib.php");
955 require_once("$CFG->dirroot/grade/grading/lib.php");
957 $userid = required_param('userid', PARAM_INT);
960 $offset = required_param('offset', PARAM_INT);//offset for where to start looking for student.
962 $filter = optional_param('filter', 0, PARAM_INT);
964 if (!$user = $DB->get_record('user', array('id'=>$userid))) {
965 print_error('nousers');
968 if (!$submission = $this->get_submission($user->id)) {
969 $submission = $this->prepare_new_submission($userid);
971 if ($submission->timemodified > $submission->timemarked) {
972 $subtype = 'assignmentnew';
974 $subtype = 'assignmentold';
977 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, array($user->id));
978 $gradingdisabled = $grading_info->items[0]->grades[$userid]->locked || $grading_info->items[0]->grades[$userid]->overridden;
980 /// construct SQL, using current offset to find the data of the next student
981 $course = $this->course;
982 $assignment = $this->assignment;
984 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
986 //reset filter to all for offline assignment
987 if ($assignment->assignmenttype == 'offline' && $filter == self::FILTER_SUBMITTED) {
988 $filter = self::FILTER_ALL;
990 /// Get all ppl that can submit assignments
992 $currentgroup = groups_get_activity_group($cm);
993 $users = get_enrolled_users($context, 'mod/assignment:submit', $currentgroup, 'u.id');
995 $users = array_keys($users);
996 // if groupmembersonly used, remove users who are not in any group
997 if (!empty($CFG->enablegroupmembersonly) and $cm->groupmembersonly) {
998 if ($groupingusers = groups_get_grouping_members($cm->groupingid, 'u.id', 'u.id')) {
999 $users = array_intersect($users, array_keys($groupingusers));
1006 if($filter == self::FILTER_SUBMITTED) {
1007 $where .= 's.timemodified > 0 AND ';
1008 } else if($filter == self::FILTER_REQUIRE_GRADING) {
1009 $where .= 's.timemarked < s.timemodified AND ';
1013 $userfields = user_picture::fields('u', array('lastaccess'));
1014 $select = "SELECT $userfields,
1015 s.id AS submissionid, s.grade, s.submissioncomment,
1016 s.timemodified, s.timemarked ";
1017 $sql = 'FROM {user} u '.
1018 'LEFT JOIN {assignment_submissions} s ON u.id = s.userid
1019 AND s.assignment = '.$this->assignment->id.' '.
1020 'WHERE '.$where.'u.id IN ('.implode(',', $users).') ';
1022 if ($sort = flexible_table::get_sort_for_table('mod-assignment-submissions')) {
1023 $sort = 'ORDER BY '.$sort.' ';
1025 $auser = $DB->get_records_sql($select.$sql.$sort, null, $offset, 2);
1027 if (is_array($auser) && count($auser)>1) {
1028 $nextuser = next($auser);
1029 /// Calculate user status
1030 $nextuser->status = ($nextuser->timemarked > 0) && ($nextuser->timemarked >= $nextuser->timemodified);
1031 $nextid = $nextuser->id;
1035 if ($submission->teacher) {
1036 $teacher = $DB->get_record('user', array('id'=>$submission->teacher));
1042 $this->preprocess_submission($submission);
1044 $mformdata = new stdClass();
1045 $mformdata->context = $this->context;
1046 $mformdata->maxbytes = $this->course->maxbytes;
1047 $mformdata->courseid = $this->course->id;
1048 $mformdata->teacher = $teacher;
1049 $mformdata->assignment = $assignment;
1050 $mformdata->submission = $submission;
1051 $mformdata->lateness = $this->display_lateness($submission->timemodified);
1052 $mformdata->auser = $auser;
1053 $mformdata->user = $user;
1054 $mformdata->offset = $offset;
1055 $mformdata->userid = $userid;
1056 $mformdata->cm = $this->cm;
1057 $mformdata->grading_info = $grading_info;
1058 $mformdata->enableoutcomes = $CFG->enableoutcomes;
1059 $mformdata->grade = $this->assignment->grade;
1060 $mformdata->gradingdisabled = $gradingdisabled;
1061 $mformdata->nextid = $nextid;
1062 $mformdata->submissioncomment= $submission->submissioncomment;
1063 $mformdata->submissioncommentformat= FORMAT_HTML;
1064 $mformdata->submission_content= $this->print_user_files($user->id,true);
1065 $mformdata->filter = $filter;
1066 $mformdata->mailinfo = get_user_preferences('assignment_mailinfo', 0);
1067 if ($assignment->assignmenttype == 'upload') {
1068 $mformdata->fileui_options = array('subdirs'=>1, 'maxbytes'=>$assignment->maxbytes, 'maxfiles'=>$assignment->var1, 'accepted_types'=>'*', 'return_types'=>FILE_INTERNAL);
1069 } elseif ($assignment->assignmenttype == 'uploadsingle') {
1070 $mformdata->fileui_options = array('subdirs'=>0, 'maxbytes'=>$CFG->userquota, 'maxfiles'=>1, 'accepted_types'=>'*', 'return_types'=>FILE_INTERNAL);
1072 $advancedgradingwarning = false;
1073 $gradingmanager = get_grading_manager($this->context, 'mod_assignment', 'submission');
1074 if ($gradingmethod = $gradingmanager->get_active_method()) {
1075 $controller = $gradingmanager->get_controller($gradingmethod);
1076 if ($controller->is_form_available()) {
1078 if (!empty($submission->id)) {
1079 $itemid = $submission->id;
1081 if ($gradingdisabled && $itemid) {
1082 $mformdata->advancedgradinginstance = $controller->get_current_instance($USER->id, $itemid);
1083 } else if (!$gradingdisabled) {
1084 $instanceid = optional_param('advancedgradinginstanceid', 0, PARAM_INT);
1085 $mformdata->advancedgradinginstance = $controller->get_or_create_instance($instanceid, $USER->id, $itemid);
1088 $advancedgradingwarning = $controller->form_unavailable_notification();
1092 $submitform = new mod_assignment_grading_form( null, $mformdata );
1095 $ret_data = new stdClass();
1096 $ret_data->mform = $submitform;
1097 if (isset($mformdata->fileui_options)) {
1098 $ret_data->fileui_options = $mformdata->fileui_options;
1103 if ($submitform->is_cancelled()) {
1104 redirect('submissions.php?id='.$this->cm->id);
1107 $submitform->set_data($mformdata);
1109 $PAGE->set_title($this->course->fullname . ': ' .get_string('feedback', 'assignment').' - '.fullname($user, true));
1110 $PAGE->set_heading($this->course->fullname);
1111 $PAGE->navbar->add(get_string('submissions', 'assignment'), new moodle_url('/mod/assignment/submissions.php', array('id'=>$cm->id)));
1112 $PAGE->navbar->add(fullname($user, true));
1114 echo $OUTPUT->header();
1115 echo $OUTPUT->heading(get_string('feedback', 'assignment').': '.fullname($user, true));
1117 // display mform here...
1118 if ($advancedgradingwarning) {
1119 echo $OUTPUT->notification($advancedgradingwarning, 'error');
1121 $submitform->display();
1123 $customfeedback = $this->custom_feedbackform($submission, true);
1124 if (!empty($customfeedback)) {
1125 echo $customfeedback;
1128 echo $OUTPUT->footer();
1132 * Preprocess submission before grading
1134 * Called by display_submission()
1135 * The default type does nothing here.
1137 * @param object $submission The submission object
1139 function preprocess_submission(&$submission) {
1143 * Display all the submissions ready for grading
1149 * @param string $message
1152 function display_submissions($message='') {
1153 global $CFG, $DB, $USER, $DB, $OUTPUT, $PAGE;
1154 require_once($CFG->libdir.'/gradelib.php');
1156 /* first we check to see if the form has just been submitted
1157 * to request user_preference updates
1160 $filters = array(self::FILTER_ALL => get_string('all'),
1161 self::FILTER_REQUIRE_GRADING => get_string('requiregrading', 'assignment'));
1163 $updatepref = optional_param('updatepref', 0, PARAM_BOOL);
1165 $perpage = optional_param('perpage', 10, PARAM_INT);
1166 $perpage = ($perpage <= 0) ? 10 : $perpage ;
1167 $filter = optional_param('filter', 0, PARAM_INT);
1168 set_user_preference('assignment_perpage', $perpage);
1169 set_user_preference('assignment_quickgrade', optional_param('quickgrade', 0, PARAM_BOOL));
1170 set_user_preference('assignment_filter', $filter);
1173 /* next we get perpage and quickgrade (allow quick grade) params
1176 $perpage = get_user_preferences('assignment_perpage', 10);
1177 $quickgrade = get_user_preferences('assignment_quickgrade', 0) && $this->quickgrade_mode_allowed();
1178 $filter = get_user_preferences('assignment_filter', 0);
1179 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id);
1181 if (!empty($CFG->enableoutcomes) and !empty($grading_info->outcomes)) {
1182 $uses_outcomes = true;
1184 $uses_outcomes = false;
1187 $page = optional_param('page', 0, PARAM_INT);
1188 $strsaveallfeedback = get_string('saveallfeedback', 'assignment');
1190 /// Some shortcuts to make the code read better
1192 $course = $this->course;
1193 $assignment = $this->assignment;
1195 $hassubmission = false;
1197 // reset filter to all for offline assignment only.
1198 if ($assignment->assignmenttype == 'offline') {
1199 if ($filter == self::FILTER_SUBMITTED) {
1200 $filter = self::FILTER_ALL;
1203 $filters[self::FILTER_SUBMITTED] = get_string('submitted', 'assignment');
1206 $tabindex = 1; //tabindex for quick grading tabbing; Not working for dropdowns yet
1207 add_to_log($course->id, 'assignment', 'view submission', 'submissions.php?id='.$this->cm->id, $this->assignment->id, $this->cm->id);
1209 $PAGE->set_title(format_string($this->assignment->name,true));
1210 $PAGE->set_heading($this->course->fullname);
1211 echo $OUTPUT->header();
1213 echo '<div class="usersubmissions">';
1215 //hook to allow plagiarism plugins to update status/print links.
1216 plagiarism_update_status($this->course, $this->cm);
1218 $course_context = get_context_instance(CONTEXT_COURSE, $course->id);
1219 if (has_capability('gradereport/grader:view', $course_context) && has_capability('moodle/grade:viewall', $course_context)) {
1220 echo '<div class="allcoursegrades"><a href="' . $CFG->wwwroot . '/grade/report/grader/index.php?id=' . $course->id . '">'
1221 . get_string('seeallcoursegrades', 'grades') . '</a></div>';
1224 if (!empty($message)) {
1225 echo $message; // display messages here if any
1228 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
1230 /// Check to see if groups are being used in this assignment
1232 /// find out current groups mode
1233 $groupmode = groups_get_activity_groupmode($cm);
1234 $currentgroup = groups_get_activity_group($cm, true);
1235 groups_print_activity_menu($cm, $CFG->wwwroot . '/mod/assignment/submissions.php?id=' . $this->cm->id);
1237 /// Print quickgrade form around the table
1239 $formattrs = array();
1240 $formattrs['action'] = new moodle_url('/mod/assignment/submissions.php');
1241 $formattrs['id'] = 'fastg';
1242 $formattrs['method'] = 'post';
1244 echo html_writer::start_tag('form', $formattrs);
1245 echo html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'id', 'value'=> $this->cm->id));
1246 echo html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'mode', 'value'=> 'fastgrade'));
1247 echo html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'page', 'value'=> $page));
1248 echo html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'sesskey', 'value'=> sesskey()));
1251 /// Get all ppl that are allowed to submit assignments
1252 list($esql, $params) = get_enrolled_sql($context, 'mod/assignment:submit', $currentgroup);
1254 if ($filter == self::FILTER_ALL) {
1255 $sql = "SELECT u.id FROM {user} u ".
1256 "LEFT JOIN ($esql) eu ON eu.id=u.id ".
1257 "WHERE u.deleted = 0 AND eu.id=u.id ";
1259 $wherefilter = ' AND s.assignment = '. $this->assignment->id;
1260 $assignmentsubmission = "LEFT JOIN {assignment_submissions} s ON (u.id = s.userid) ";
1261 if($filter == self::FILTER_SUBMITTED) {
1262 $wherefilter .= ' AND s.timemodified > 0 ';
1263 } else if($filter == self::FILTER_REQUIRE_GRADING && $assignment->assignmenttype != 'offline') {
1264 $wherefilter .= ' AND s.timemarked < s.timemodified ';
1265 } else { // require grading for offline assignment
1266 $assignmentsubmission = "";
1270 $sql = "SELECT u.id FROM {user} u ".
1271 "LEFT JOIN ($esql) eu ON eu.id=u.id ".
1272 $assignmentsubmission.
1273 "WHERE u.deleted = 0 AND eu.id=u.id ".
1277 $users = $DB->get_records_sql($sql, $params);
1278 if (!empty($users)) {
1279 if($assignment->assignmenttype == 'offline' && $filter == self::FILTER_REQUIRE_GRADING) {
1280 //remove users who has submitted their assignment
1281 foreach ($this->get_submissions() as $submission) {
1282 if (array_key_exists($submission->userid, $users)) {
1283 unset($users[$submission->userid]);
1287 $users = array_keys($users);
1290 // if groupmembersonly used, remove users who are not in any group
1291 if ($users and !empty($CFG->enablegroupmembersonly) and $cm->groupmembersonly) {
1292 if ($groupingusers = groups_get_grouping_members($cm->groupingid, 'u.id', 'u.id')) {
1293 $users = array_intersect($users, array_keys($groupingusers));
1297 $tablecolumns = array('picture', 'fullname', 'grade', 'submissioncomment', 'timemodified', 'timemarked', 'status', 'finalgrade');
1298 if ($uses_outcomes) {
1299 $tablecolumns[] = 'outcome'; // no sorting based on outcomes column
1302 $tableheaders = array('',
1303 get_string('fullnameuser'),
1304 get_string('grade'),
1305 get_string('comment', 'assignment'),
1306 get_string('lastmodified').' ('.get_string('submission', 'assignment').')',
1307 get_string('lastmodified').' ('.get_string('grade').')',
1308 get_string('status'),
1309 get_string('finalgrade', 'grades'));
1310 if ($uses_outcomes) {
1311 $tableheaders[] = get_string('outcome', 'grades');
1314 require_once($CFG->libdir.'/tablelib.php');
1315 $table = new flexible_table('mod-assignment-submissions');
1317 $table->define_columns($tablecolumns);
1318 $table->define_headers($tableheaders);
1319 $table->define_baseurl($CFG->wwwroot.'/mod/assignment/submissions.php?id='.$this->cm->id.'&currentgroup='.$currentgroup);
1321 $table->sortable(true, 'lastname');//sorted by lastname by default
1322 $table->collapsible(true);
1323 $table->initialbars(true);
1325 $table->column_suppress('picture');
1326 $table->column_suppress('fullname');
1328 $table->column_class('picture', 'picture');
1329 $table->column_class('fullname', 'fullname');
1330 $table->column_class('grade', 'grade');
1331 $table->column_class('submissioncomment', 'comment');
1332 $table->column_class('timemodified', 'timemodified');
1333 $table->column_class('timemarked', 'timemarked');
1334 $table->column_class('status', 'status');
1335 $table->column_class('finalgrade', 'finalgrade');
1336 if ($uses_outcomes) {
1337 $table->column_class('outcome', 'outcome');
1340 $table->set_attribute('cellspacing', '0');
1341 $table->set_attribute('id', 'attempts');
1342 $table->set_attribute('class', 'submissions');
1343 $table->set_attribute('width', '100%');
1345 $table->no_sorting('finalgrade');
1346 $table->no_sorting('outcome');
1348 // Start working -- this is necessary as soon as the niceties are over
1351 /// Construct the SQL
1352 list($where, $params) = $table->get_sql_where();
1357 if ($filter == self::FILTER_SUBMITTED) {
1358 $where .= 's.timemodified > 0 AND ';
1359 } else if($filter == self::FILTER_REQUIRE_GRADING) {
1361 if ($assignment->assignmenttype != 'offline') {
1362 $where .= 's.timemarked < s.timemodified AND ';
1366 if ($sort = $table->get_sql_sort()) {
1367 $sort = ' ORDER BY '.$sort;
1370 $ufields = user_picture::fields('u');
1371 if (!empty($users)) {
1372 $select = "SELECT $ufields,
1373 s.id AS submissionid, s.grade, s.submissioncomment,
1374 s.timemodified, s.timemarked ";
1375 $sql = 'FROM {user} u '.
1376 'LEFT JOIN {assignment_submissions} s ON u.id = s.userid
1377 AND s.assignment = '.$this->assignment->id.' '.
1378 'WHERE '.$where.'u.id IN ('.implode(',',$users).') ';
1380 $ausers = $DB->get_records_sql($select.$sql.$sort, $params, $table->get_page_start(), $table->get_page_size());
1382 $table->pagesize($perpage, count($users));
1384 ///offset used to calculate index of student in that particular query, needed for the pop up to know who's next
1385 $offset = $page * $perpage;
1386 $strupdate = get_string('update');
1387 $strgrade = get_string('grade');
1388 $grademenu = make_grades_menu($this->assignment->grade);
1390 if ($ausers !== false) {
1391 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, array_keys($ausers));
1392 $endposition = $offset + $perpage;
1393 $currentposition = 0;
1394 foreach ($ausers as $auser) {
1395 if ($currentposition == $offset && $offset < $endposition) {
1396 $final_grade = $grading_info->items[0]->grades[$auser->id];
1397 $grademax = $grading_info->items[0]->grademax;
1398 $final_grade->formatted_grade = round($final_grade->grade,2) .' / ' . round($grademax,2);
1399 $locked_overridden = 'locked';
1400 if ($final_grade->overridden) {
1401 $locked_overridden = 'overridden';
1404 /// Calculate user status
1405 $auser->status = ($auser->timemarked > 0) && ($auser->timemarked >= $auser->timemodified);
1406 // TODO add here code if advanced grading grade must be reviewed => $auser->status=0
1407 $picture = $OUTPUT->user_picture($auser);
1409 if (empty($auser->submissionid)) {
1410 $auser->grade = -1; //no submission yet
1413 if (!empty($auser->submissionid)) {
1414 $hassubmission = true;
1415 ///Prints student answer and student modified date
1416 ///attach file or print link to student answer, depending on the type of the assignment.
1417 ///Refer to print_student_answer in inherited classes.
1418 if ($auser->timemodified > 0) {
1419 $studentmodified = '<div id="ts'.$auser->id.'">'.$this->print_student_answer($auser->id)
1420 . userdate($auser->timemodified).'</div>';
1422 $studentmodified = '<div id="ts'.$auser->id.'"> </div>';
1424 ///Print grade, dropdown or text
1425 if ($auser->timemarked > 0) {
1426 $teachermodified = '<div id="tt'.$auser->id.'">'.userdate($auser->timemarked).'</div>';
1428 if ($final_grade->locked or $final_grade->overridden) {
1429 $grade = '<div id="g'.$auser->id.'" class="'. $locked_overridden .'">'.$final_grade->formatted_grade.'</div>';
1430 } else if ($quickgrade) {
1431 $attributes = array();
1432 $attributes['tabindex'] = $tabindex++;
1433 $menu = html_writer::select(make_grades_menu($this->assignment->grade), 'menu['.$auser->id.']', $auser->grade, array(-1=>get_string('nograde')), $attributes);
1434 $grade = '<div id="g'.$auser->id.'">'. $menu .'</div>';
1436 $grade = '<div id="g'.$auser->id.'">'.$this->display_grade($auser->grade).'</div>';
1440 $teachermodified = '<div id="tt'.$auser->id.'"> </div>';
1441 if ($final_grade->locked or $final_grade->overridden) {
1442 $grade = '<div id="g'.$auser->id.'" class="'. $locked_overridden .'">'.$final_grade->formatted_grade.'</div>';
1443 } else if ($quickgrade) {
1444 $attributes = array();
1445 $attributes['tabindex'] = $tabindex++;
1446 $menu = html_writer::select(make_grades_menu($this->assignment->grade), 'menu['.$auser->id.']', $auser->grade, array(-1=>get_string('nograde')), $attributes);
1447 $grade = '<div id="g'.$auser->id.'">'.$menu.'</div>';
1449 $grade = '<div id="g'.$auser->id.'">'.$this->display_grade($auser->grade).'</div>';
1453 if ($final_grade->locked or $final_grade->overridden) {
1454 $comment = '<div id="com'.$auser->id.'">'.shorten_text(strip_tags($final_grade->str_feedback),15).'</div>';
1456 } else if ($quickgrade) {
1457 $comment = '<div id="com'.$auser->id.'">'
1458 . '<textarea tabindex="'.$tabindex++.'" name="submissioncomment['.$auser->id.']" id="submissioncomment'
1459 . $auser->id.'" rows="2" cols="20">'.($auser->submissioncomment).'</textarea></div>';
1461 $comment = '<div id="com'.$auser->id.'">'.shorten_text(strip_tags($auser->submissioncomment),15).'</div>';
1464 $studentmodified = '<div id="ts'.$auser->id.'"> </div>';
1465 $teachermodified = '<div id="tt'.$auser->id.'"> </div>';
1466 $status = '<div id="st'.$auser->id.'"> </div>';
1468 if ($final_grade->locked or $final_grade->overridden) {
1469 $grade = '<div id="g'.$auser->id.'">'.$final_grade->formatted_grade . '</div>';
1470 $hassubmission = true;
1471 } else if ($quickgrade) { // allow editing
1472 $attributes = array();
1473 $attributes['tabindex'] = $tabindex++;
1474 $menu = html_writer::select(make_grades_menu($this->assignment->grade), 'menu['.$auser->id.']', $auser->grade, array(-1=>get_string('nograde')), $attributes);
1475 $grade = '<div id="g'.$auser->id.'">'.$menu.'</div>';
1476 $hassubmission = true;
1478 $grade = '<div id="g'.$auser->id.'">-</div>';
1481 if ($final_grade->locked or $final_grade->overridden) {
1482 $comment = '<div id="com'.$auser->id.'">'.$final_grade->str_feedback.'</div>';
1483 } else if ($quickgrade) {
1484 $comment = '<div id="com'.$auser->id.'">'
1485 . '<textarea tabindex="'.$tabindex++.'" name="submissioncomment['.$auser->id.']" id="submissioncomment'
1486 . $auser->id.'" rows="2" cols="20">'.($auser->submissioncomment).'</textarea></div>';
1488 $comment = '<div id="com'.$auser->id.'"> </div>';
1492 if (empty($auser->status)) { /// Confirm we have exclusively 0 or 1
1498 $buttontext = ($auser->status == 1) ? $strupdate : $strgrade;
1500 ///No more buttons, we use popups ;-).
1501 $popup_url = '/mod/assignment/submissions.php?id='.$this->cm->id
1502 . '&userid='.$auser->id.'&mode=single'.'&filter='.$filter.'&offset='.$offset++;
1504 $button = $OUTPUT->action_link($popup_url, $buttontext);
1506 $status = '<div id="up'.$auser->id.'" class="s'.$auser->status.'">'.$button.'</div>';
1508 $finalgrade = '<span id="finalgrade_'.$auser->id.'">'.$final_grade->str_grade.'</span>';
1512 if ($uses_outcomes) {
1514 foreach($grading_info->outcomes as $n=>$outcome) {
1515 $outcomes .= '<div class="outcome"><label>'.$outcome->name.'</label>';
1516 $options = make_grades_menu(-$outcome->scaleid);
1518 if ($outcome->grades[$auser->id]->locked or !$quickgrade) {
1519 $options[0] = get_string('nooutcome', 'grades');
1520 $outcomes .= ': <span id="outcome_'.$n.'_'.$auser->id.'">'.$options[$outcome->grades[$auser->id]->grade].'</span>';
1522 $attributes = array();
1523 $attributes['tabindex'] = $tabindex++;
1524 $attributes['id'] = 'outcome_'.$n.'_'.$auser->id;
1525 $outcomes .= ' '.html_writer::select($options, 'outcome_'.$n.'['.$auser->id.']', $outcome->grades[$auser->id]->grade, array(0=>get_string('nooutcome', 'grades')), $attributes);
1527 $outcomes .= '</div>';
1531 $userlink = '<a href="' . $CFG->wwwroot . '/user/view.php?id=' . $auser->id . '&course=' . $course->id . '">' . fullname($auser, has_capability('moodle/site:viewfullnames', $this->context)) . '</a>';
1532 $row = array($picture, $userlink, $grade, $comment, $studentmodified, $teachermodified, $status, $finalgrade);
1533 if ($uses_outcomes) {
1536 $table->add_data($row);
1540 if ($hassubmission && ($this->assignment->assignmenttype=='upload' || $this->assignment->assignmenttype=='online' || $this->assignment->assignmenttype=='uploadsingle')) { //TODO: this is an ugly hack, where is the plugin spirit? (skodak)
1541 echo html_writer::start_tag('div', array('class' => 'mod-assignment-download-link'));
1542 echo html_writer::link(new moodle_url('/mod/assignment/submissions.php', array('id' => $this->cm->id, 'download' => 'zip')), get_string('downloadall', 'assignment'));
1543 echo html_writer::end_tag('div');
1545 $table->print_html(); /// Print the whole table
1547 if ($filter == self::FILTER_SUBMITTED) {
1548 echo html_writer::tag('div', get_string('nosubmisson', 'assignment'), array('class'=>'nosubmisson'));
1549 } else if ($filter == self::FILTER_REQUIRE_GRADING) {
1550 echo html_writer::tag('div', get_string('norequiregrading', 'assignment'), array('class'=>'norequiregrading'));
1555 /// Print quickgrade form around the table
1556 if ($quickgrade && $table->started_output && !empty($users)){
1557 $mailinfopref = false;
1558 if (get_user_preferences('assignment_mailinfo', 1)) {
1559 $mailinfopref = true;
1561 $emailnotification = html_writer::checkbox('mailinfo', 1, $mailinfopref, get_string('enablenotification','assignment'));
1563 $emailnotification .= $OUTPUT->help_icon('enablenotification', 'assignment');
1564 echo html_writer::tag('div', $emailnotification, array('class'=>'emailnotification'));
1566 $savefeedback = html_writer::empty_tag('input', array('type'=>'submit', 'name'=>'fastg', 'value'=>get_string('saveallfeedback', 'assignment')));
1567 echo html_writer::tag('div', $savefeedback, array('class'=>'fastgbutton'));
1569 echo html_writer::end_tag('form');
1570 } else if ($quickgrade) {
1571 echo html_writer::end_tag('form');
1575 /// End of fast grading form
1577 /// Mini form for setting user preference
1579 $formaction = new moodle_url('/mod/assignment/submissions.php', array('id'=>$this->cm->id));
1580 $mform = new MoodleQuickForm('optionspref', 'post', $formaction, '', array('class'=>'optionspref'));
1582 $mform->addElement('hidden', 'updatepref');
1583 $mform->setDefault('updatepref', 1);
1584 $mform->addElement('header', 'qgprefs', get_string('optionalsettings', 'assignment'));
1585 $mform->addElement('select', 'filter', get_string('show'), $filters);
1587 $mform->setDefault('filter', $filter);
1589 $mform->addElement('text', 'perpage', get_string('pagesize', 'assignment'), array('size'=>1));
1590 $mform->setDefault('perpage', $perpage);
1592 if ($this->quickgrade_mode_allowed()) {
1593 $mform->addElement('checkbox', 'quickgrade', get_string('quickgrade','assignment'));
1594 $mform->setDefault('quickgrade', $quickgrade);
1595 $mform->addHelpButton('quickgrade', 'quickgrade', 'assignment');
1598 $mform->addElement('submit', 'savepreferences', get_string('savepreferences'));
1602 echo $OUTPUT->footer();
1606 * If the form was cancelled ('Cancel' or 'Next' was pressed), call cancel method
1607 * from advanced grading (if applicable) and returns true
1608 * If the form was submitted, validates it and returns false if validation did not pass.
1609 * If validation passes, preprocess advanced grading (if applicable) and returns true.
1611 function validate_and_preprocess_feedback() {
1613 require_once($CFG->libdir.'/gradelib.php');
1614 if (!($feedback = data_submitted()) || !isset($feedback->userid) || !isset($feedback->offset)) {
1615 return true; // No incoming data, nothing to validate
1617 $userid = required_param('userid', PARAM_INT);
1618 $offset = required_param('offset', PARAM_INT);
1619 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, array($userid));
1620 $gradingdisabled = $grading_info->items[0]->grades[$userid]->locked || $grading_info->items[0]->grades[$userid]->overridden;
1621 if ($gradingdisabled) {
1624 $submissiondata = $this->display_submission($offset, $userid, false);
1625 $mform = $submissiondata->mform;
1626 $gradinginstance = $mform->use_advanced_grading();
1627 if (optional_param('cancel', false, PARAM_BOOL) || optional_param('next', false, PARAM_BOOL)) {
1628 // form was cancelled
1629 if ($gradinginstance) {
1630 $gradinginstance->cancel();
1632 } else if ($mform->is_submitted()) {
1633 // form was submitted (= a submit button other than 'cancel' or 'next' has been clicked)
1634 if (!$mform->is_validated()) {
1637 // preprocess advanced grading here
1638 if ($gradinginstance) {
1639 $data = $mform->get_data();
1640 // create submission if it did not exist yet because we need submission->id for storing the grading instance
1641 $submission = $this->get_submission($userid, true);
1642 $_POST['xgrade'] = $gradinginstance->submit_and_get_grade($data->advancedgrading, $submission->id);
1649 * Process teacher feedback submission
1651 * This is called by submissions() when a grading even has taken place.
1652 * It gets its data from the submitted form.
1657 * @return object|bool The updated submission object or false
1659 function process_feedback($formdata=null) {
1660 global $CFG, $USER, $DB;
1661 require_once($CFG->libdir.'/gradelib.php');
1663 if (!$feedback = data_submitted() or !confirm_sesskey()) { // No incoming data?
1667 ///For save and next, we need to know the userid to save, and the userid to go
1668 ///We use a new hidden field in the form, and set it to -1. If it's set, we use this
1669 ///as the userid to store
1670 if ((int)$feedback->saveuserid !== -1){
1671 $feedback->userid = $feedback->saveuserid;
1674 if (!empty($feedback->cancel)) { // User hit cancel button
1678 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, $feedback->userid);
1680 // store outcomes if needed
1681 $this->process_outcomes($feedback->userid);
1683 $submission = $this->get_submission($feedback->userid, true); // Get or make one
1685 if (!($grading_info->items[0]->grades[$feedback->userid]->locked ||
1686 $grading_info->items[0]->grades[$feedback->userid]->overridden) ) {
1688 $submission->grade = $feedback->xgrade;
1689 $submission->submissioncomment = $feedback->submissioncomment_editor['text'];
1690 $submission->teacher = $USER->id;
1691 $mailinfo = get_user_preferences('assignment_mailinfo', 0);
1693 $submission->mailed = 1; // treat as already mailed
1695 $submission->mailed = 0; // Make sure mail goes out (again, even)
1697 $submission->timemarked = time();
1699 unset($submission->data1); // Don't need to update this.
1700 unset($submission->data2); // Don't need to update this.
1702 if (empty($submission->timemodified)) { // eg for offline assignments
1703 // $submission->timemodified = time();
1706 $DB->update_record('assignment_submissions', $submission);
1708 // triger grade event
1709 $this->update_grade($submission);
1711 add_to_log($this->course->id, 'assignment', 'update grades',
1712 'submissions.php?id='.$this->cm->id.'&user='.$feedback->userid, $feedback->userid, $this->cm->id);
1713 if (!is_null($formdata)) {
1714 if ($this->type == 'upload' || $this->type == 'uploadsingle') {
1715 $mformdata = $formdata->mform->get_data();
1716 $mformdata = file_postupdate_standard_filemanager($mformdata, 'files', $formdata->fileui_options, $this->context, 'mod_assignment', 'response', $submission->id);
1725 function process_outcomes($userid) {
1728 if (empty($CFG->enableoutcomes)) {
1732 require_once($CFG->libdir.'/gradelib.php');
1734 if (!$formdata = data_submitted() or !confirm_sesskey()) {
1739 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, $userid);
1741 if (!empty($grading_info->outcomes)) {
1742 foreach($grading_info->outcomes as $n=>$old) {
1743 $name = 'outcome_'.$n;
1744 if (isset($formdata->{$name}[$userid]) and $old->grades[$userid]->grade != $formdata->{$name}[$userid]) {
1745 $data[$n] = $formdata->{$name}[$userid];
1749 if (count($data) > 0) {
1750 grade_update_outcomes('mod/assignment', $this->course->id, 'mod', 'assignment', $this->assignment->id, $userid, $data);
1756 * Load the submission object for a particular user
1760 * @param $userid int The id of the user whose submission we want or 0 in which case USER->id is used
1761 * @param $createnew boolean optional Defaults to false. If set to true a new submission object will be created in the database
1762 * @param bool $teachermodified student submission set if false
1763 * @return object The submission
1765 function get_submission($userid=0, $createnew=false, $teachermodified=false) {
1768 if (empty($userid)) {
1769 $userid = $USER->id;
1772 $submission = $DB->get_record('assignment_submissions', array('assignment'=>$this->assignment->id, 'userid'=>$userid));
1774 if ($submission || !$createnew) {
1777 $newsubmission = $this->prepare_new_submission($userid, $teachermodified);
1778 $DB->insert_record("assignment_submissions", $newsubmission);
1780 return $DB->get_record('assignment_submissions', array('assignment'=>$this->assignment->id, 'userid'=>$userid));
1784 * Instantiates a new submission object for a given user
1786 * Sets the assignment, userid and times, everything else is set to default values.
1788 * @param int $userid The userid for which we want a submission object
1789 * @param bool $teachermodified student submission set if false
1790 * @return object The submission
1792 function prepare_new_submission($userid, $teachermodified=false) {
1793 $submission = new stdClass();
1794 $submission->assignment = $this->assignment->id;
1795 $submission->userid = $userid;
1796 $submission->timecreated = time();
1797 // teachers should not be modifying modified date, except offline assignments
1798 if ($teachermodified) {
1799 $submission->timemodified = 0;
1801 $submission->timemodified = $submission->timecreated;
1803 $submission->numfiles = 0;
1804 $submission->data1 = '';
1805 $submission->data2 = '';
1806 $submission->grade = -1;
1807 $submission->submissioncomment = '';
1808 $submission->format = 0;
1809 $submission->teacher = 0;
1810 $submission->timemarked = 0;
1811 $submission->mailed = 0;
1816 * Return all assignment submissions by ENROLLED students (even empty)
1818 * @param string $sort optional field names for the ORDER BY in the sql query
1819 * @param string $dir optional specifying the sort direction, defaults to DESC
1820 * @return array The submission objects indexed by id
1822 function get_submissions($sort='', $dir='DESC') {
1823 return assignment_get_all_submissions($this->assignment, $sort, $dir);
1827 * Counts all real assignment submissions by ENROLLED students (not empty ones)
1829 * @param int $groupid optional If nonzero then count is restricted to this group
1830 * @return int The number of submissions
1832 function count_real_submissions($groupid=0) {
1833 return assignment_count_real_submissions($this->cm, $groupid);
1837 * Alerts teachers by email of new or changed assignments that need grading
1839 * First checks whether the option to email teachers is set for this assignment.
1840 * Sends an email to ALL teachers in the course (or in the group if using separate groups).
1841 * Uses the methods email_teachers_text() and email_teachers_html() to construct the content.
1845 * @param $submission object The submission that has changed
1848 function email_teachers($submission) {
1851 if (empty($this->assignment->emailteachers)) { // No need to do anything
1855 $user = $DB->get_record('user', array('id'=>$submission->userid));
1857 if ($teachers = $this->get_graders($user)) {
1859 $strassignments = get_string('modulenameplural', 'assignment');
1860 $strassignment = get_string('modulename', 'assignment');
1861 $strsubmitted = get_string('submitted', 'assignment');
1863 foreach ($teachers as $teacher) {
1864 $info = new stdClass();
1865 $info->username = fullname($user, true);
1866 $info->assignment = format_string($this->assignment->name,true);
1867 $info->url = $CFG->wwwroot.'/mod/assignment/submissions.php?id='.$this->cm->id;
1868 $info->timeupdated = strftime('%c',$submission->timemodified);
1870 $postsubject = $strsubmitted.': '.$info->username.' -> '.$this->assignment->name;
1871 $posttext = $this->email_teachers_text($info);
1872 $posthtml = ($teacher->mailformat == 1) ? $this->email_teachers_html($info) : '';
1874 $eventdata = new stdClass();
1875 $eventdata->modulename = 'assignment';
1876 $eventdata->userfrom = $user;
1877 $eventdata->userto = $teacher;
1878 $eventdata->subject = $postsubject;
1879 $eventdata->fullmessage = $posttext;
1880 $eventdata->fullmessageformat = FORMAT_PLAIN;
1881 $eventdata->fullmessagehtml = $posthtml;
1882 $eventdata->smallmessage = $postsubject;
1884 $eventdata->name = 'assignment_updates';
1885 $eventdata->component = 'mod_assignment';
1886 $eventdata->notification = 1;
1887 $eventdata->contexturl = $info->url;
1888 $eventdata->contexturlname = $info->assignment;
1890 message_send($eventdata);
1896 * @param string $filearea
1897 * @param array $args
1900 function send_file($filearea, $args) {
1901 debugging('plugin does not implement file sending', DEBUG_DEVELOPER);
1906 * Returns a list of teachers that should be grading given submission
1908 * @param object $user
1911 function get_graders($user) {
1913 $potgraders = get_users_by_capability($this->context, 'mod/assignment:grade', '', '', '', '', '', '', false, false);
1916 if (groups_get_activity_groupmode($this->cm) == SEPARATEGROUPS) { // Separate groups are being used
1917 if ($groups = groups_get_all_groups($this->course->id, $user->id)) { // Try to find all groups
1918 foreach ($groups as $group) {
1919 foreach ($potgraders as $t) {
1920 if ($t->id == $user->id) {
1921 continue; // do not send self
1923 if (groups_is_member($group->id, $t->id)) {
1924 $graders[$t->id] = $t;
1929 // user not in group, try to find graders without group
1930 foreach ($potgraders as $t) {
1931 if ($t->id == $user->id) {
1932 continue; // do not send self
1934 if (!groups_get_all_groups($this->course->id, $t->id)) { //ugly hack
1935 $graders[$t->id] = $t;
1940 foreach ($potgraders as $t) {
1941 if ($t->id == $user->id) {
1942 continue; // do not send self
1944 $graders[$t->id] = $t;
1951 * Creates the text content for emails to teachers
1953 * @param $info object The info used by the 'emailteachermail' language string
1956 function email_teachers_text($info) {
1957 $posttext = format_string($this->course->shortname, true, array('context' => $this->coursecontext)).' -> '.
1958 $this->strassignments.' -> '.
1959 format_string($this->assignment->name, true, array('context' => $this->context))."\n";
1960 $posttext .= '---------------------------------------------------------------------'."\n";
1961 $posttext .= get_string("emailteachermail", "assignment", $info)."\n";
1962 $posttext .= "\n---------------------------------------------------------------------\n";
1967 * Creates the html content for emails to teachers
1969 * @param $info object The info used by the 'emailteachermailhtml' language string
1972 function email_teachers_html($info) {
1974 $posthtml = '<p><font face="sans-serif">'.
1975 '<a href="'.$CFG->wwwroot.'/course/view.php?id='.$this->course->id.'">'.format_string($this->course->shortname, true, array('context' => $this->coursecontext)).'</a> ->'.
1976 '<a href="'.$CFG->wwwroot.'/mod/assignment/index.php?id='.$this->course->id.'">'.$this->strassignments.'</a> ->'.
1977 '<a href="'.$CFG->wwwroot.'/mod/assignment/view.php?id='.$this->cm->id.'">'.format_string($this->assignment->name, true, array('context' => $this->context)).'</a></font></p>';
1978 $posthtml .= '<hr /><font face="sans-serif">';
1979 $posthtml .= '<p>'.get_string('emailteachermailhtml', 'assignment', $info).'</p>';
1980 $posthtml .= '</font><hr />';
1985 * Produces a list of links to the files uploaded by a user
1987 * @param $userid int optional id of the user. If 0 then $USER->id is used.
1988 * @param $return boolean optional defaults to false. If true the list is returned rather than printed
1989 * @return string optional
1991 function print_user_files($userid=0, $return=false) {
1992 global $CFG, $USER, $OUTPUT;
1995 if (!isloggedin()) {
1998 $userid = $USER->id;
2003 $submission = $this->get_submission($userid);
2008 $fs = get_file_storage();
2009 $files = $fs->get_area_files($this->context->id, 'mod_assignment', 'submission', $submission->id, "timemodified", false);
2010 if (!empty($files)) {
2011 require_once($CFG->dirroot . '/mod/assignment/locallib.php');
2012 if ($CFG->enableportfolios) {
2013 require_once($CFG->libdir.'/portfoliolib.php');
2014 $button = new portfolio_add_button();
2016 foreach ($files as $file) {
2017 $filename = $file->get_filename();
2018 $mimetype = $file->get_mimetype();
2019 $path = file_encode_url($CFG->wwwroot.'/pluginfile.php', '/'.$this->context->id.'/mod_assignment/submission/'.$submission->id.'/'.$filename);
2020 $output .= '<a href="'.$path.'" ><img src="'.$OUTPUT->pix_url(file_mimetype_icon($mimetype)).'" class="icon" alt="'.$mimetype.'" />'.s($filename).'</a>';
2021 if ($CFG->enableportfolios && $this->portfolio_exportable() && has_capability('mod/assignment:exportownsubmission', $this->context)) {
2022 $button->set_callback_options('assignment_portfolio_caller', array('id' => $this->cm->id, 'submissionid' => $submission->id, 'fileid' => $file->get_id()), '/mod/assignment/locallib.php');
2023 $button->set_format_by_file($file);
2024 $output .= $button->to_html(PORTFOLIO_ADD_ICON_LINK);
2027 if ($CFG->enableplagiarism) {
2028 require_once($CFG->libdir.'/plagiarismlib.php');
2029 $output .= plagiarism_get_links(array('userid'=>$userid, 'file'=>$file, 'cmid'=>$this->cm->id, 'course'=>$this->course, 'assignment'=>$this->assignment));
2030 $output .= '<br />';
2033 if ($CFG->enableportfolios && count($files) > 1 && $this->portfolio_exportable() && has_capability('mod/assignment:exportownsubmission', $this->context)) {
2034 $button->set_callback_options('assignment_portfolio_caller', array('id' => $this->cm->id, 'submissionid' => $submission->id), '/mod/assignment/locallib.php');
2035 $output .= '<br />' . $button->to_html(PORTFOLIO_ADD_TEXT_LINK);
2039 $output = '<div class="files">'.$output.'</div>';
2048 * Count the files uploaded by a given user
2050 * @param $itemid int The submission's id as the file's itemid.
2053 function count_user_files($itemid) {
2054 $fs = get_file_storage();
2055 $files = $fs->get_area_files($this->context->id, 'mod_assignment', 'submission', $itemid, "id", false);
2056 return count($files);
2060 * Returns true if the student is allowed to submit
2062 * Checks that the assignment has started and, if the option to prevent late
2063 * submissions is set, also checks that the assignment has not yet closed.
2068 if ($this->assignment->preventlate && $this->assignment->timedue) {
2069 return ($this->assignment->timeavailable <= $time && $time <= $this->assignment->timedue);
2071 return ($this->assignment->timeavailable <= $time);
2077 * Return true if is set description is hidden till available date
2079 * This is needed by calendar so that hidden descriptions do not
2080 * come up in upcoming events.
2082 * Check that description is hidden till available date
2083 * By default return false
2084 * Assignments types should implement this method if needed
2087 function description_is_hidden() {
2092 * Return an outline of the user's interaction with the assignment
2094 * The default method prints the grade and timemodified
2095 * @param $grade object
2096 * @return object with properties ->info and ->time
2098 function user_outline($grade) {
2100 $result = new stdClass();
2101 $result->info = get_string('grade').': '.$grade->str_long_grade;
2102 $result->time = $grade->dategraded;
2107 * Print complete information about the user's interaction with the assignment
2109 * @param $user object
2111 function user_complete($user, $grade=null) {
2114 if ($submission = $this->get_submission($user->id)) {
2116 $fs = get_file_storage();
2118 if ($files = $fs->get_area_files($this->context->id, 'mod_assignment', 'submission', $submission->id, "timemodified", false)) {
2119 $countfiles = count($files)." ".get_string("uploadedfiles", "assignment");
2120 foreach ($files as $file) {
2121 $countfiles .= "; ".$file->get_filename();
2125 echo $OUTPUT->box_start();
2126 echo get_string("lastmodified").": ";
2127 echo userdate($submission->timemodified);
2128 echo $this->display_lateness($submission->timemodified);
2130 $this->print_user_files($user->id);
2134 $this->view_feedback($submission);
2136 echo $OUTPUT->box_end();
2140 echo $OUTPUT->container(get_string('grade').': '.$grade->str_long_grade);
2141 if ($grade->str_feedback) {
2142 echo $OUTPUT->container(get_string('feedback').': '.$grade->str_feedback);
2145 print_string("notsubmittedyet", "assignment");
2150 * Return a string indicating how late a submission is
2152 * @param $timesubmitted int
2155 function display_lateness($timesubmitted) {
2156 return assignment_display_lateness($timesubmitted, $this->assignment->timedue);
2160 * Empty method stub for all delete actions.
2163 //nothing by default
2164 redirect('view.php?id='.$this->cm->id);
2168 * Empty custom feedback grading form.
2170 function custom_feedbackform($submission, $return=false) {
2171 //nothing by default
2176 * Add a get_coursemodule_info function in case any assignment type wants to add 'extra' information
2177 * for the course (see resource).
2179 * Given a course_module object, this function returns any "extra" information that may be needed
2180 * when printing this activity in a course listing. See get_array_of_activities() in course/lib.php.
2182 * @param $coursemodule object The coursemodule object (record).
2183 * @return cached_cm_info Object used to customise appearance on course page
2185 function get_coursemodule_info($coursemodule) {
2190 * Plugin cron method - do not use $this here, create new assignment instances if needed.
2194 //no plugin cron by default - override if needed
2198 * Reset all submissions
2200 function reset_userdata($data) {
2203 if (!$DB->count_records('assignment', array('course'=>$data->courseid, 'assignmenttype'=>$this->type))) {
2204 return array(); // no assignments of this type present
2207 $componentstr = get_string('modulenameplural', 'assignment');
2210 $typestr = get_string('type'.$this->type, 'assignment');
2211 // ugly hack to support pluggable assignment type titles...
2212 if($typestr === '[[type'.$this->type.']]'){
2213 $typestr = get_string('type'.$this->type, 'assignment_'.$this->type);
2216 if (!empty($data->reset_assignment_submissions)) {
2217 $assignmentssql = "SELECT a.id
2219 WHERE a.course=? AND a.assignmenttype=?";
2220 $params = array($data->courseid, $this->type);
2222 // now get rid of all submissions and responses
2223 $fs = get_file_storage();
2224 if ($assignments = $DB->get_records_sql($assignmentssql, $params)) {
2225 foreach ($assignments as $assignmentid=>$unused) {
2226 if (!$cm = get_coursemodule_from_instance('assignment', $assignmentid)) {
2229 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
2230 $fs->delete_area_files($context->id, 'mod_assignment', 'submission');
2231 $fs->delete_area_files($context->id, 'mod_assignment', 'response');
2235 $DB->delete_records_select('assignment_submissions', "assignment IN ($assignmentssql)", $params);
2237 $status[] = array('component'=>$componentstr, 'item'=>get_string('deleteallsubmissions','assignment').': '.$typestr, 'error'=>false);
2239 if (empty($data->reset_gradebook_grades)) {
2240 // remove all grades from gradebook
2241 assignment_reset_gradebook($data->courseid, $this->type);
2245 /// updating dates - shift may be negative too
2246 if ($data->timeshift) {
2247 shift_course_mod_dates('assignment', array('timedue', 'timeavailable'), $data->timeshift, $data->courseid);
2248 $status[] = array('component'=>$componentstr, 'item'=>get_string('datechanged').': '.$typestr, 'error'=>false);
2255 function portfolio_exportable() {
2260 * base implementation for backing up subtype specific information
2261 * for one single module
2263 * @param filehandle $bf file handle for xml file to write to
2264 * @param mixed $preferences the complete backup preference object
2270 static function backup_one_mod($bf, $preferences, $assignment) {
2275 * base implementation for backing up subtype specific information
2276 * for one single submission
2278 * @param filehandle $bf file handle for xml file to write to
2279 * @param mixed $preferences the complete backup preference object
2280 * @param object $submission the assignment submission db record
2286 static function backup_one_submission($bf, $preferences, $assignment, $submission) {
2291 * base implementation for restoring subtype specific information
2292 * for one single module
2294 * @param array $info the array representing the xml
2295 * @param object $restore the restore preferences
2301 static function restore_one_mod($info, $restore, $assignment) {
2306 * base implementation for restoring subtype specific information
2307 * for one single submission
2309 * @param object $submission the newly created submission
2310 * @param array $info the array representing the xml
2311 * @param object $restore the restore preferences
2317 static function restore_one_submission($info, $restore, $assignment, $submission) {
2321 } ////// End of the assignment_base class
2324 class mod_assignment_grading_form extends moodleform {
2326 function definition() {
2328 $mform =& $this->_form;
2330 if (isset($this->_customdata->advancedgradinginstance)) {
2331 $this->use_advanced_grading($this->_customdata->advancedgradinginstance);
2334 $formattr = $mform->getAttributes();
2335 $formattr['id'] = 'submitform';
2336 $mform->setAttributes($formattr);
2338 $mform->addElement('hidden', 'offset', ($this->_customdata->offset+1));
2339 $mform->setType('offset', PARAM_INT);
2340 $mform->addElement('hidden', 'userid', $this->_customdata->userid);
2341 $mform->setType('userid', PARAM_INT);
2342 $mform->addElement('hidden', 'nextid', $this->_customdata->nextid);
2343 $mform->setType('nextid', PARAM_INT);
2344 $mform->addElement('hidden', 'id', $this->_customdata->cm->id);
2345 $mform->setType('id', PARAM_INT);
2346 $mform->addElement('hidden', 'sesskey', sesskey());
2347 $mform->setType('sesskey', PARAM_ALPHANUM);
2348 $mform->addElement('hidden', 'mode', 'grade');
2349 $mform->setType('mode', PARAM_TEXT);
2350 $mform->addElement('hidden', 'menuindex', "0");
2351 $mform->setType('menuindex', PARAM_INT);
2352 $mform->addElement('hidden', 'saveuserid', "-1");
2353 $mform->setType('saveuserid', PARAM_INT);
2354 $mform->addElement('hidden', 'filter', "0");
2355 $mform->setType('filter', PARAM_INT);
2357 $mform->addElement('static', 'picture', $OUTPUT->user_picture($this->_customdata->user),
2358 fullname($this->_customdata->user, true) . '<br/>' .
2359 userdate($this->_customdata->submission->timemodified) .
2360 $this->_customdata->lateness );
2362 $this->add_submission_content();
2363 $this->add_grades_section();
2365 $this->add_feedback_section();
2367 if ($this->_customdata->submission->timemarked) {
2368 $datestring = userdate($this->_customdata->submission->timemarked)." (".format_time(time() - $this->_customdata->submission->timemarked).")";
2369 $mform->addElement('header', 'Last Grade', get_string('lastgrade', 'assignment'));
2370 $mform->addElement('static', 'picture', $OUTPUT->user_picture($this->_customdata->teacher) ,
2371 fullname($this->_customdata->teacher,true).
2372 '<br/>'.$datestring);
2375 $this->add_action_buttons();
2379 private $advancegradinginstance;
2381 * Gets or sets the instance for advanced grading
2383 * @param gradingform_instance $gradinginstance
2385 public function use_advanced_grading($gradinginstance = false) {
2386 if ($gradinginstance !== false) {
2387 $this->advancegradinginstance = $gradinginstance;
2389 return $this->advancegradinginstance;
2392 function add_grades_section() {
2394 $mform =& $this->_form;
2395 $attributes = array();
2396 if ($this->_customdata->gradingdisabled) {
2397 $attributes['disabled'] ='disabled';
2400 $mform->addElement('header', 'Grades', get_string('grades', 'grades'));
2402 $grademenu = make_grades_menu($this->_customdata->assignment->grade);
2403 if ($gradinginstance = $this->use_advanced_grading()) {
2404 $gradinginstance->get_controller()->set_grade_range($grademenu);
2405 $gradingelement = $mform->addElement('grading', 'advancedgrading', get_string('grade').':', array('gradinginstance' => $gradinginstance));
2406 if ($this->_customdata->gradingdisabled) {
2407 $gradingelement->freeze();
2409 $mform->addElement('hidden', 'advancedgradinginstanceid', $gradinginstance->get_id());
2412 // use simple direct grading
2413 $grademenu['-1'] = get_string('nograde');
2415 $mform->addElement('select', 'xgrade', get_string('grade').':', $grademenu, $attributes);
2416 $mform->setDefault('xgrade', $this->_customdata->submission->grade ); //@fixme some bug when element called 'grade' makes it break
2417 $mform->setType('xgrade', PARAM_INT);
2420 if (!empty($this->_customdata->enableoutcomes)) {
2421 foreach($this->_customdata->grading_info->outcomes as $n=>$outcome) {
2422 $options = make_grades_menu(-$outcome->scaleid);
2423 if ($outcome->grades[$this->_customdata->submission->userid]->locked) {
2424 $options[0] = get_string('nooutcome', 'grades');
2425 $mform->addElement('static', 'outcome_'.$n.'['.$this->_customdata->userid.']', $outcome->name.':',
2426 $options[$outcome->grades[$this->_customdata->submission->userid]->grade]);
2428 $options[''] = get_string('nooutcome', 'grades');
2429 $attributes = array('id' => 'menuoutcome_'.$n );
2430 $mform->addElement('select', 'outcome_'.$n.'['.$this->_customdata->userid.']', $outcome->name.':', $options, $attributes );
2431 $mform->setType('outcome_'.$n.'['.$this->_customdata->userid.']', PARAM_INT);
2432 $mform->setDefault('outcome_'.$n.'['.$this->_customdata->userid.']', $outcome->grades[$this->_customdata->submission->userid]->grade );
2436 $course_context = get_context_instance(CONTEXT_MODULE , $this->_customdata->cm->id);
2437 if (has_capability('gradereport/grader:view', $course_context) && has_capability('moodle/grade:viewall', $course_context)) {
2438 $grade = '<a href="'.$CFG->wwwroot.'/grade/report/grader/index.php?id='. $this->_customdata->courseid .'" >'.
2439 $this->_customdata->grading_info->items[0]->grades[$this->_customdata->userid]->str_grade . '</a>';
2441 $grade = $this->_customdata->grading_info->items[0]->grades[$this->_customdata->userid]->str_grade;
2443 $mform->addElement('static', 'finalgrade', get_string('currentgrade', 'assignment').':' ,$grade);
2444 $mform->setType('finalgrade', PARAM_INT);
2449 * @global core_renderer $OUTPUT
2451 function add_feedback_section() {
2453 $mform =& $this->_form;
2454 $mform->addElement('header', 'Feed Back', get_string('feedback', 'grades'));
2456 if ($this->_customdata->gradingdisabled) {
2457 $mform->addElement('static', 'disabledfeedback', $this->_customdata->grading_info->items[0]->grades[$this->_customdata->userid]->str_feedback );
2461 $mform->addElement('editor', 'submissioncomment_editor', get_string('feedback', 'assignment').':', null, $this->get_editor_options() );
2462 $mform->setType('submissioncomment_editor', PARAM_RAW); // to be cleaned before display
2463 $mform->setDefault('submissioncomment_editor', $this->_customdata->submission->submissioncomment);
2464 //$mform->addRule('submissioncomment', get_string('required'), 'required', null, 'client');
2465 switch ($this->_customdata->assignment->assignmenttype) {
2467 case 'uploadsingle' :
2468 $mform->addElement('filemanager', 'files_filemanager', get_string('responsefiles', 'assignment'). ':', null, $this->_customdata->fileui_options);
2473 $mform->addElement('hidden', 'mailinfo_h', "0");
2474 $mform->setType('mailinfo_h', PARAM_INT);
2475 $mform->addElement('checkbox', 'mailinfo',get_string('enablenotification','assignment').
2476 $OUTPUT->help_icon('enablenotification', 'assignment') .':' );
2477 $mform->setType('mailinfo', PARAM_INT);
2481 function add_action_buttons() {
2482 $mform =& $this->_form;
2483 //if there are more to be graded.
2484 if ($this->_customdata->nextid>0) {
2485 $buttonarray=array();
2486 $buttonarray[] = &$mform->createElement('submit', 'submitbutton', get_string('savechanges'));
2487 //@todo: fix accessibility: javascript dependency not necessary
2488 $buttonarray[] = &$mform->createElement('submit', 'saveandnext', get_string('saveandnext'));
2489 $buttonarray[] = &$mform->createElement('submit', 'next', get_string('next'));
2490 $buttonarray[] = &$mform->createElement('cancel');
2492 $buttonarray=array();
2493 $buttonarray[] = &$mform->createElement('submit', 'submitbutton', get_string('savechanges'));
2494 $buttonarray[] = &$mform->createElement('cancel');
2496 $mform->addGroup($buttonarray, 'grading_buttonar', '', array(' '), false);
2497 $mform->closeHeaderBefore('grading_buttonar');
2498 $mform->setType('grading_buttonar', PARAM_RAW);
2501 function add_submission_content() {
2502 $mform =& $this->_form;
2503 $mform->addElement('header', 'Submission', get_string('submission', 'assignment'));
2504 $mform->addElement('static', '', '' , $this->_customdata->submission_content );
2507 protected function get_editor_options() {
2508 $editoroptions = array();
2509 $editoroptions['component'] = 'mod_assignment';
2510 $editoroptions['filearea'] = 'feedback';
2511 $editoroptions['noclean'] = false;
2512 $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)
2513 $editoroptions['maxbytes'] = $this->_customdata->maxbytes;
2514 $editoroptions['context'] = $this->_customdata->context;
2515 return $editoroptions;
2518 public function set_data($data) {
2519 $editoroptions = $this->get_editor_options();
2520 if (!isset($data->text)) {
2523 if (!isset($data->format)) {
2524 $data->textformat = FORMAT_HTML;
2526 $data->textformat = $data->format;
2529 if (!empty($this->_customdata->submission->id)) {
2530 $itemid = $this->_customdata->submission->id;
2535 switch ($this->_customdata->assignment->assignmenttype) {
2537 case 'uploadsingle' :
2538 $data = file_prepare_standard_filemanager($data, 'files', $editoroptions, $this->_customdata->context, 'mod_assignment', 'response', $itemid);
2544 $data = file_prepare_standard_editor($data, 'submissioncomment', $editoroptions, $this->_customdata->context, $editoroptions['component'], $editoroptions['filearea'], $itemid);
2545 return parent::set_data($data);
2548 public function get_data() {
2549 $data = parent::get_data();
2551 if (!empty($this->_customdata->submission->id)) {
2552 $itemid = $this->_customdata->submission->id;
2554 $itemid = null; //TODO: this is wrong, itemid MUST be known when saving files!! (skodak)
2558 $editoroptions = $this->get_editor_options();
2559 switch ($this->_customdata->assignment->assignmenttype) {
2561 case 'uploadsingle' :
2562 $data = file_postupdate_standard_filemanager($data, 'files', $editoroptions, $this->_customdata->context, 'mod_assignment', 'response', $itemid);
2567 $data = file_postupdate_standard_editor($data, 'submissioncomment', $editoroptions, $this->_customdata->context, $editoroptions['component'], $editoroptions['filearea'], $itemid);
2570 if ($this->use_advanced_grading() && !isset($data->advancedgrading)) {
2571 $data->advancedgrading = null;
2578 /// OTHER STANDARD FUNCTIONS ////////////////////////////////////////////////////////
2581 * Deletes an assignment instance
2583 * This is done by calling the delete_instance() method of the assignment type class
2585 function assignment_delete_instance($id){
2588 if (! $assignment = $DB->get_record('assignment', array('id'=>$id))) {
2592 // fall back to base class if plugin missing
2593 $classfile = "$CFG->dirroot/mod/assignment/type/$assignment->assignmenttype/assignment.class.php";
2594 if (file_exists($classfile)) {
2595 require_once($classfile);
2596 $assignmentclass = "assignment_$assignment->assignmenttype";
2599 debugging("Missing assignment plug-in: {$assignment->assignmenttype}. Using base class for deleting instead.");
2600 $assignmentclass = "assignment_base";
2603 $ass = new $assignmentclass();
2604 return $ass->delete_instance($assignment);
2609 * Updates an assignment instance
2611 * This is done by calling the update_instance() method of the assignment type class
2613 function assignment_update_instance($assignment){
2616 $assignment->assignmenttype = clean_param($assignment->assignmenttype, PARAM_PLUGIN);
2618 require_once("$CFG->dirroot/mod/assignment/type/$assignment->assignmenttype/assignment.class.php");
2619 $assignmentclass = "assignment_$assignment->assignmenttype";
2620 $ass = new $assignmentclass();
2621 return $ass->update_instance($assignment);
2626 * Adds an assignment instance
2628 * This is done by calling the add_instance() method of the assignment type class
2630 function assignment_add_instance($assignment) {
2633 $assignment->assignmenttype = clean_param($assignment->assignmenttype, PARAM_PLUGIN);
2635 require_once("$CFG->dirroot/mod/assignment/type/$assignment->assignmenttype/assignment.class.php");
2636 $assignmentclass = "assignment_$assignment->assignmenttype";
2637 $ass = new $assignmentclass();
2638 return $ass->add_instance($assignment);
2643 * Returns an outline of a user interaction with an assignment
2645 * This is done by calling the user_outline() method of the assignment type class
2647 function assignment_user_outline($course, $user, $mod, $assignment) {
2650 require_once("$CFG->libdir/gradelib.php");
2651 require_once("$CFG->dirroot/mod/assignment/type/$assignment->assignmenttype/assignment.class.php");
2652 $assignmentclass = "assignment_$assignment->assignmenttype";
2653 $ass = new $assignmentclass($mod->id, $assignment, $mod, $course);
2654 $grades = grade_get_grades($course->id, 'mod', 'assignment', $assignment->id, $user->id);
2655 if (!empty($grades->items[0]->grades)) {
2656 return $ass->user_outline(reset($grades->items[0]->grades));
2663 * Prints the complete info about a user's interaction with an assignment
2665 * This is done by calling the user_complete() method of the assignment type class
2667 function assignment_user_complete($course, $user, $mod, $assignment) {
2670 require_once("$CFG->libdir/gradelib.php");
2671 require_once("$CFG->dirroot/mod/assignment/type/$assignment->assignmenttype/assignment.class.php");
2672 $assignmentclass = "assignment_$assignment->assignmenttype";
2673 $ass = new $assignmentclass($mod->id, $assignment, $mod, $course);
2674 $grades = grade_get_grades($course->id, 'mod', 'assignment', $assignment->id, $user->id);
2675 if (empty($grades->items[0]->grades)) {
2678 $grade = reset($grades->items[0]->grades);
2680 return $ass->user_complete($user, $grade);
2684 * Function to be run periodically according to the moodle cron
2686 * Finds all assignment notifications that have yet to be mailed out, and mails them
2688 function assignment_cron () {
2689 global $CFG, $USER, $DB;
2691 /// first execute all crons in plugins
2692 if ($plugins = get_plugin_list('assignment')) {
2693 foreach ($plugins as $plugin=>$dir) {
2694 require_once("$dir/assignment.class.php");
2695 $assignmentclass = "assignment_$plugin";
2696 $ass = new $assignmentclass();
2701 /// Notices older than 1 day will not be mailed. This is to avoid the problem where
2702 /// cron has not been running for a long time, and then suddenly people are flooded
2703 /// with mail from the past few weeks or months
2706 $endtime = $timenow - $CFG->maxeditingtime;
2707 $starttime = $endtime - 24 * 3600; /// One day earlier
2709 if ($submissions = assignment_get_unmailed_submissions($starttime, $endtime)) {
2711 $realuser = clone($USER);
2713 foreach ($submissions as $key => $submission) {
2714 $DB->set_field("assignment_submissions", "mailed", "1", array("id"=>$submission->id));
2719 foreach ($submissions as $submission) {
2721 echo "Processing assignment submission $submission->id\n";
2723 if (! $user = $DB->get_record("user", array("id"=>$submission->userid))) {
2724 echo "Could not find user $user->id\n";
2728 if (! $course = $DB->get_record("course", array("id"=>$submission->course))) {
2729 echo "Could not find course $submission->course\n";
2733 /// Override the language and timezone of the "current" user, so that
2734 /// mail is customised for the receiver.
2735 cron_setup_user($user, $course);
2737 $coursecontext = get_context_instance(CONTEXT_COURSE, $submission->course);
2738 $courseshortname = format_string($course->shortname, true, array('context' => $coursecontext));
2739 if (!is_enrolled($coursecontext, $user->id)) {
2740 echo fullname($user)." not an active participant in " . $courseshortname . "\n";
2744 if (! $teacher = $DB->get_record("user", array("id"=>$submission->teacher))) {
2745 echo "Could not find teacher $submission->teacher\n";
2749 if (! $mod = get_coursemodule_from_instance("assignment", $submission->assignment, $course->id)) {
2750 echo "Could not find course module for assignment id $submission->assignment\n";
2754 if (! $mod->visible) { /// Hold mail notification for hidden assignments until later
2758 $strassignments = get_string("modulenameplural", "assignment");
2759 $strassignment = get_string("modulename", "assignment");
2761 $assignmentinfo = new stdClass();
2762 $assignmentinfo->teacher = fullname($teacher);
2763 $assignmentinfo->assignment = format_string($submission->name,true);
2764 $assignmentinfo->url = "$CFG->wwwroot/mod/assignment/view.php?id=$mod->id";
2766 $postsubject = "$courseshortname: $strassignments: ".format_string($submission->name,true);
2767 $posttext = "$courseshortname -> $strassignments -> ".format_string($submission->name,true)."\n";
2768 $posttext .= "---------------------------------------------------------------------\n";
2769 $posttext .= get_string("assignmentmail", "assignment", $assignmentinfo)."\n";
2770 $posttext .= "---------------------------------------------------------------------\n";
2772 if ($user->mailformat == 1) { // HTML
2773 $posthtml = "<p><font face=\"sans-serif\">".
2774 "<a href=\"$CFG->wwwroot/course/view.php?id=$course->id\">$courseshortname</a> ->".
2775 "<a href=\"$CFG->wwwroot/mod/assignment/index.php?id=$course->id\">$strassignments</a> ->".
2776 "<a href=\"$CFG->wwwroot/mod/assignment/view.php?id=$mod->id\">".format_string($submission->name,true)."</a></font></p>";
2777 $posthtml .= "<hr /><font face=\"sans-serif\">";
2778 $posthtml .= "<p>".get_string("assignmentmailhtml", "assignment", $assignmentinfo)."</p>";
2779 $posthtml .= "</font><hr />";
2784 $eventdata = new stdClass();
2785 $eventdata->modulename = 'assignment';
2786 $eventdata->userfrom = $teacher;
2787 $eventdata->userto = $user;
2788 $eventdata->subject = $postsubject;
2789 $eventdata->fullmessage = $posttext;
2790 $eventdata->fullmessageformat = FORMAT_PLAIN;
2791 $eventdata->fullmessagehtml = $posthtml;
2792 $eventdata->smallmessage = get_string('assignmentmailsmall', 'assignment', $assignmentinfo);
2794 $eventdata->name = 'assignment_updates';
2795 $eventdata->component = 'mod_assignment';
2796 $eventdata->notification = 1;
2797 $eventdata->contexturl = $assignmentinfo->url;
2798 $eventdata->contexturlname = $assignmentinfo->assignment;
2800 message_send($eventdata);
2810 * Return grade for given user or all users.
2812 * @param int $assignmentid id of assignment
2813 * @param int $userid optional user id, 0 means all users
2814 * @return array array of grades, false if none
2816 function assignment_get_user_grades($assignment, $userid=0) {
2820 $user = "AND u.id = :userid";
2821 $params = array('userid'=>$userid);
2825 $params['aid'] = $assignment->id;
2827 $sql = "SELECT u.id, u.id AS userid, s.grade AS rawgrade, s.submissioncomment AS feedback, s.format AS feedbackformat,
2828 s.teacher AS usermodified, s.timemarked AS dategraded, s.timemodified AS datesubmitted
2829 FROM {user} u, {assignment_submissions} s
2830 WHERE u.id = s.userid AND s.assignment = :aid
2833 return $DB->get_records_sql($sql, $params);
2837 * Update activity grades
2839 * @param object $assignment
2840 * @param int $userid specific user only, 0 means all
2842 function assignment_update_grades($assignment, $userid=0, $nullifnone=true) {
2844 require_once($CFG->libdir.'/gradelib.php');
2846 if ($assignment->grade == 0) {
2847 assignment_grade_item_update($assignment);
2849 } else if ($grades = assignment_get_user_grades($assignment, $userid)) {
2850 foreach($grades as $k=>$v) {
2851 if ($v->rawgrade == -1) {
2852 $grades[$k]->rawgrade = null;
2855 assignment_grade_item_update($assignment, $grades);
2858 assignment_grade_item_update($assignment);
2863 * Update all grades in gradebook.
2865 function assignment_upgrade_grades() {
2868 $sql = "SELECT COUNT('x')
2869 FROM {assignment} a, {course_modules} cm, {modules} m
2870 WHERE m.name='assignment' AND m.id=cm.module AND cm.instance=a.id";
2871 $count = $DB->count_records_sql($sql);
2873 $sql = "SELECT a.*, cm.idnumber AS cmidnumber, a.course AS courseid
2874 FROM {assignment} a, {course_modules} cm, {modules} m
2875 WHERE m.name='assignment' AND m.id=cm.module AND cm.instance=a.id";
2876 $rs = $DB->get_recordset_sql($sql);
2878 // too much debug output
2879 $pbar = new progress_bar('assignmentupgradegrades', 500, true);
2881 foreach ($rs as $assignment) {
2883 upgrade_set_timeout(60*5); // set up timeout, may also abort execution
2884 assignment_update_grades($assignment);
2885 $pbar->update($i, $count, "Updating Assignment grades ($i/$count).");
2887 upgrade_set_timeout(); // reset to default timeout
2893 * Create grade item for given assignment
2895 * @param object $assignment object with extra cmidnumber
2896 * @param mixed optional array/object of grade(s); 'reset' means reset grades in gradebook
2897 * @return int 0 if ok, error code otherwise
2899 function assignment_grade_item_update($assignment, $grades=NULL) {
2901 require_once($CFG->libdir.'/gradelib.php');
2903 if (!isset($assignment->courseid)) {
2904 $assignment->courseid = $assignment->course;
2907 $params = array('itemname'=>$assignment->name, 'idnumber'=>$assignment->cmidnumber);
2909 if ($assignment->grade > 0) {
2910 $params['gradetype'] = GRADE_TYPE_VALUE;
2911 $params['grademax'] = $assignment->grade;
2912 $params['grademin'] = 0;
2914 } else if ($assignment->grade < 0) {
2915 $params['gradetype'] = GRADE_TYPE_SCALE;
2916 $params['scaleid'] = -$assignment->grade;
2919 $params['gradetype'] = GRADE_TYPE_TEXT; // allow text comments only
2922 if ($grades === 'reset') {
2923 $params['reset'] = true;
2927 return grade_update('mod/assignment', $assignment->courseid, 'mod', 'assignment', $assignment->id, 0, $grades, $params);
2931 * Delete grade item for given assignment
2933 * @param object $assignment object
2934 * @return object assignment
2936 function assignment_grade_item_delete($assignment) {
2938 require_once($CFG->libdir.'/gradelib.php');
2940 if (!isset($assignment->courseid)) {
2941 $assignment->courseid = $assignment->course;
2944 return grade_update('mod/assignment', $assignment->courseid, 'mod', 'assignment', $assignment->id, 0, NULL, array('deleted'=>1));
2948 * Returns the users with data in one assignment (students and teachers)
2950 * @todo: deprecated - to be deleted in 2.2
2952 * @param $assignmentid int
2953 * @return array of user objects
2955 function assignment_get_participants($assignmentid) {
2959 $students = $DB->get_records_sql("SELECT DISTINCT u.id, u.id
2961 {assignment_submissions} a
2962 WHERE a.assignment = ? and
2963 u.id = a.userid", array($assignmentid));
2965 $teachers = $DB->get_records_sql("SELECT DISTINCT u.id, u.id
2967 {assignment_submissions} a
2968 WHERE a.assignment = ? and
2969 u.id = a.teacher", array($assignmentid));
2971 //Add teachers to students
2973 foreach ($teachers as $teacher) {
2974 $students[$teacher->id] = $teacher;
2977 //Return students array (it contains an array of unique users)
2982 * Serves assignment submissions and other files.
2984 * @param object $course
2986 * @param object $context
2987 * @param string $filearea
2988 * @param array $args
2989 * @param bool $forcedownload
2990 * @return bool false if file not found, does not return if found - just send the file
2992 function assignment_pluginfile($course, $cm, $context, $filearea, $args, $forcedownload) {
2995 if ($context->contextlevel != CONTEXT_MODULE) {
2999 require_login($course, false, $cm);
3001 if (!$assignment = $DB->get_record('assignment', array('id'=>$cm->instance))) {
3005 require_once($CFG->dirroot.'/mod/assignment/type/'.$assignment->assignmenttype.'/assignment.class.php');
3006 $assignmentclass = 'assignment_'.$assignment->assignmenttype;
3007 $assignmentinstance = new $assignmentclass($cm->id, $assignment, $cm, $course);
3009 return $assignmentinstance->send_file($filearea, $args);
3012 * Checks if a scale is being used by an assignment
3014 * This is used by the backup code to decide whether to back up a scale
3015 * @param $assignmentid int
3016 * @param $scaleid int
3017 * @return boolean True if the scale is used by the assignment
3019 function assignment_scale_used($assignmentid, $scaleid) {
3024 $rec = $DB->get_record('assignment', array('id'=>$assignmentid,'grade'=>-$scaleid));
3026 if (!empty($rec) && !empty($scaleid)) {
3034 * Checks if scale is being used by any instance of assignment
3036 * This is used to find out if scale used anywhere
3037 * @param $scaleid int
3038 * @return boolean True if the scale is used by any assignment
3040 function assignment_scale_used_anywhere($scaleid) {
3043 if ($scaleid and $DB->record_exists('assignment', array('grade'=>-$scaleid))) {
3051 * Make sure up-to-date events are created for all assignment instances
3053 * This standard function will check all instances of this module
3054 * and make sure there are up-to-date events created for each of them.
3055 * If courseid = 0, then every assignment event in the site is checked, else
3056 * only assignment events belonging to the course specified are checked.
3057 * This function is used, in its new format, by restore_refresh_events()
3059 * @param $courseid int optional If zero then all assignments for all courses are covered
3060 * @return boolean Always returns true
3062 function assignment_refresh_events($courseid = 0) {
3065 if ($courseid == 0) {
3066 if (! $assignments = $DB->get_records("assignment")) {
3070 if (! $assignments = $DB->get_records("assignment", array("course"=>$courseid))) {
3074 $moduleid = $DB->get_field('modules', 'id', array('name'=>'assignment'));
3076 foreach ($assignments as $assignment) {
3077 $cm = get_coursemodule_from_id('assignment', $assignment->id);
3078 $event = new stdClass();
3079 $event->name = $assignment->name;
3080 $event->description = format_module_intro('assignment', $assignment, $cm->id);
3081 $event->timestart = $assignment->timedue;
3083 if ($event->id = $DB->get_field('event', 'id', array('modulename'=>'assignment', 'instance'=>$assignment->id))) {
3084 update_event($event);
3087 $event->courseid = $assignment->course;
3088 $event->groupid = 0;
3090 $event->modulename = 'assignment';
3091 $event->instance = $assignment->id;
3092 $event->eventtype = 'due';
3093 $event->timeduration = 0;
3094 $event->visible = $DB->get_field('course_modules', 'visible', array('module'=>$moduleid, 'instance'=>$assignment->id));
3103 * Print recent activity from all assignments in a given course
3105 * This is used by the recent activity block
3107 function assignment_print_recent_activity($course, $viewfullnames, $timestart) {
3108 global $CFG, $USER, $DB, $OUTPUT;
3110 // do not use log table if possible, it may be huge
3112 if (!$submissions = $DB->get_records_sql("SELECT asb.id, asb.timemodified, cm.id AS cmid, asb.userid,
3113 u.firstname, u.lastname, u.email, u.picture
3114 FROM {assignment_submissions} asb
3115 JOIN {assignment} a ON a.id = asb.assignment
3116 JOIN {course_modules} cm ON cm.instance = a.id
3117 JOIN {modules} md ON md.id = cm.module
3118 JOIN {user} u ON u.id = asb.userid
3119 WHERE asb.timemodified > ? AND
3121 md.name = 'assignment'
3122 ORDER BY asb.timemodified ASC", array($timestart, $course->id))) {
3126 $modinfo =& get_fast_modinfo($course); // reference needed because we might load the groups
3130 foreach($submissions as $submission) {
3131 if (!array_key_exists($submission->cmid, $modinfo->cms)) {
3134 $cm = $modinfo->cms[$submission->cmid];
3135 if (!$cm->uservisible) {
3138 if ($submission->userid == $USER->id) {
3139 $show[] = $submission;
3143 // the act of sumbitting of assignment may be considered private - only graders will see it if specified
3144 if (empty($CFG->assignment_showrecentsubmissions)) {
3145 if (!array_key_exists($cm->id, $grader)) {
3146 $grader[$cm->id] = has_capability('moodle/grade:viewall', get_context_instance(CONTEXT_MODULE, $cm->id));
3148 if (!$grader[$cm->id]) {
3153 $groupmode = groups_get_activity_groupmode($cm, $course);
3155 if ($groupmode == SEPARATEGROUPS and !has_capability('moodle/site:accessallgroups', get_context_instance(CONTEXT_MODULE, $cm->id))) {
3156 if (isguestuser()) {
3157 // shortcut - guest user does not belong into any group
3161 if (is_null($modinfo->groups)) {
3162 $modinfo->groups = groups_get_user_groups($course->id); // load all my groups and cache it in modinfo
3165 // this will be slow - show only users that share group with me in this cm
3166 if (empty($modinfo->groups[$cm->id])) {
3169 $usersgroups = groups_get_all_groups($course->id, $submission->userid, $cm->groupingid);
3170 if (is_array($usersgroups)) {
3171 $usersgroups = array_keys($usersgroups);
3172 $intersect = array_intersect($usersgroups, $modinfo->groups[$cm->id]);
3173 if (empty($intersect)) {
3178 $show[] = $submission;
3185 echo $OUTPUT->heading(get_string('newsubmissions', 'assignment').':', 3);
3187 foreach ($show as $submission) {
3188 $cm = $modinfo->cms[$submission->cmid];
3189 $link = $CFG->wwwroot.'/mod/assignment/view.php?id='.$cm->id;
3190 print_recent_activity_note($submission->timemodified, $submission, $cm->name, $link, false, $viewfullnames);
3198 * Returns all assignments since a given time in specified forum.
3200 function assignment_get_recent_mod_activity(&$activities, &$index, $timestart, $courseid, $cmid, $userid=0, $groupid=0) {
3201 global $CFG, $COURSE, $USER, $DB;
3203 if ($COURSE->id == $courseid) {
3206 $course = $DB->get_record('course', array('id'=>$courseid));
3209 $modinfo =& get_fast_modinfo($course);
3211 $cm = $modinfo->cms[$cmid];
3215 $userselect = "AND u.id = :userid";
3216 $params['userid'] = $userid;
3222 $groupselect = "AND gm.groupid = :groupid";
3223 $groupjoin = "JOIN {groups_members} gm ON gm.userid=u.id";
3224 $params['groupid'] = $groupid;
3230 $params['cminstance'] = $cm->instance;
3231 $params['timestart'] = $timestart;
3233 $userfields = user_picture::fields('u', null, 'userid');
3235 if (!$submissions = $DB->get_records_sql("SELECT asb.id, asb.timemodified,
3237 FROM {assignment_submissions} asb
3238 JOIN {assignment} a ON a.id = asb.assignment
3239 JOIN {user} u ON u.id = asb.userid
3241 WHERE asb.timemodified > :timestart AND a.id = :cminstance
3242 $userselect $groupselect
3243 ORDER BY asb.timemodified ASC", $params)) {
3247 $groupmode = groups_get_activity_groupmode($cm, $course);
3248 $cm_context = get_context_instance(CONTEXT_MODULE, $cm->id);
3249 $grader = has_capability('moodle/grade:viewall', $cm_context);
3250 $accessallgroups = has_capability('moodle/site:accessallgroups', $cm_context);
3251 $viewfullnames = has_capability('moodle/site:viewfullnames', $cm_context);
3253 if (is_null($modinfo->groups)) {
3254 $modinfo->groups = groups_get_user_groups($course->id); // load all my groups and cache it in modinfo
3259 foreach($submissions as $submission) {
3260 if ($submission->userid == $USER->id) {
3261 $show[] = $submission;
3264 // the act of submitting of assignment may be considered private - only graders will see it if specified
3265 if (empty($CFG->assignment_showrecentsubmissions)) {
3271 if ($groupmode == SEPARATEGROUPS and !$accessallgroups) {
3272 if (isguestuser()) {
3273 // shortcut - guest user does not belong into any group
3277 // this will be slow - show only users that share group with me in this cm
3278 if (empty($modinfo->groups[$cm->id])) {
3281 $usersgroups = groups_get_all_groups($course->id, $cm->userid, $cm->groupingid);
3282 if (is_array($usersgroups)) {
3283 $usersgroups = array_keys($usersgroups);
3284 $intersect = array_intersect($usersgroups, $modinfo->groups[$cm->id]);
3285 if (empty($intersect)) {
3290 $show[] = $submission;
3298 require_once($CFG->libdir.'/gradelib.php');
3300 foreach ($show as $id=>$submission) {
3301 $userids[] = $submission->userid;
3304 $grades = grade_get_grades($courseid, 'mod', 'assignment', $cm->instance, $userids);
3307 $aname = format_string($cm->name,true);
3308 foreach ($show as $submission) {
3309 $tmpactivity = new stdClass();
3311 $tmpactivity->type = 'assignment';
3312 $tmpactivity->cmid = $cm->id;
3313 $tmpactivity->name = $aname;
3314 $tmpactivity->sectionnum = $cm->sectionnum;
3315 $tmpactivity->timestamp = $submission->timemodified;
3318 $tmpactivity->grade = $grades->items[0]->grades[$submission->userid]->str_long_grade;
3321 $userfields = explode(',', user_picture::fields());
3322 foreach ($userfields as $userfield) {
3323 if ($userfield == 'id') {
3324 $tmpactivity->user->{$userfield} = $submission->userid; // aliased in SQL above