3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * assignment_base is the base class for assignment types
21 * This class provides all the functionality for an assignment
23 * @package mod-assignment
24 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 /** Include eventslib.php */
29 require_once($CFG->libdir.'/eventslib.php');
30 /** Include formslib.php */
31 require_once($CFG->libdir.'/formslib.php');
32 /** Include calendar/lib.php */
33 require_once($CFG->dirroot.'/calendar/lib.php');
35 /** ASSIGNMENT_COUNT_WORDS = 1 */
36 define('ASSIGNMENT_COUNT_WORDS', 1);
37 /** ASSIGNMENT_COUNT_LETTERS = 2 */
38 define('ASSIGNMENT_COUNT_LETTERS', 2);
41 * Standard base class for all assignment submodules (assignment types).
43 * @package mod-assignment
44 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
45 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
47 class assignment_base {
50 const FILTER_SUBMITTED = 1;
51 const FILTER_REQUIRE_GRADING = 2;
72 * @todo document this var
76 * @todo document this var
83 * Constructor for the base assignment class
85 * Constructor for the base assignment class.
86 * If cmid is set create the cm, course, assignment objects.
87 * If the assignment is hidden and the user is not a teacher then
88 * this prints a page header and notice.
92 * @param int $cmid the current course module id - not set for new assignments
93 * @param object $assignment usually null, but if we have it we pass it to save db access
94 * @param object $cm usually null, but if we have it we pass it to save db access
95 * @param object $course usually null, but if we have it we pass it to save db access
97 function assignment_base($cmid='staticonly', $assignment=NULL, $cm=NULL, $course=NULL) {
100 if ($cmid == 'staticonly') {
101 //use static functions only!
109 } else if (! $this->cm = get_coursemodule_from_id('assignment', $cmid)) {
110 print_error('invalidcoursemodule');
113 $this->context = get_context_instance(CONTEXT_MODULE, $this->cm->id);
116 $this->course = $course;
117 } else if ($this->cm->course == $COURSE->id) {
118 $this->course = $COURSE;
119 } else if (! $this->course = $DB->get_record('course', array('id'=>$this->cm->course))) {
120 print_error('invalidid', 'assignment');
124 $this->assignment = $assignment;
125 } else if (! $this->assignment = $DB->get_record('assignment', array('id'=>$this->cm->instance))) {
126 print_error('invalidid', 'assignment');
129 $this->assignment->cmidnumber = $this->cm->idnumber; // compatibility with modedit assignment obj
130 $this->assignment->courseid = $this->course->id; // compatibility with modedit assignment obj
132 $this->strassignment = get_string('modulename', 'assignment');
133 $this->strassignments = get_string('modulenameplural', 'assignment');
134 $this->strsubmissions = get_string('submissions', 'assignment');
135 $this->strlastmodified = get_string('lastmodified');
136 $this->pagetitle = strip_tags($this->course->shortname.': '.$this->strassignment.': '.format_string($this->assignment->name,true));
138 // visibility handled by require_login() with $cm parameter
139 // get current group only when really needed
141 /// Set up things for a HTML editor if it's needed
142 $this->defaultformat = editors_get_preferred_format();
146 * Display the assignment, used by view.php
148 * This in turn calls the methods producing individual parts of the page
152 $context = get_context_instance(CONTEXT_MODULE,$this->cm->id);
153 require_capability('mod/assignment:view', $context);
155 add_to_log($this->course->id, "assignment", "view", "view.php?id={$this->cm->id}",
156 $this->assignment->id, $this->cm->id);
158 $this->view_header();
164 $this->view_feedback();
166 $this->view_footer();
170 * Display the header and top of a page
172 * (this doesn't change much for assignment types)
173 * This is used by the view() method to print the header of view.php but
174 * it can be used on other pages in which case the string to denote the
175 * page in the navigation trail should be passed as an argument
178 * @param string $subpage Description of subpage to be used in navigation trail
180 function view_header($subpage='') {
181 global $CFG, $PAGE, $OUTPUT;
184 $PAGE->navbar->add($subpage);
187 $PAGE->set_title($this->pagetitle);
188 $PAGE->set_heading($this->course->fullname);
190 echo $OUTPUT->header();
192 groups_print_activity_menu($this->cm, $CFG->wwwroot . '/mod/assignment/view.php?id=' . $this->cm->id);
194 echo '<div class="reportlink">'.$this->submittedlink().'</div>';
195 echo '<div class="clearer"></div>';
200 * Display the assignment intro
202 * This will most likely be extended by assignment type plug-ins
203 * The default implementation prints the assignment description in a box
205 function view_intro() {
207 echo $OUTPUT->box_start('generalbox boxaligncenter', 'intro');
208 echo format_module_intro('assignment', $this->assignment, $this->cm->id);
209 echo $OUTPUT->box_end();
210 plagiarism_print_disclosure($this->cm->id);
214 * Display the assignment dates
216 * Prints the assignment start and end dates in a box.
217 * This will be suitable for most assignment types
219 function view_dates() {
221 if (!$this->assignment->timeavailable && !$this->assignment->timedue) {
225 echo $OUTPUT->box_start('generalbox boxaligncenter', 'dates');
227 if ($this->assignment->timeavailable) {
228 echo '<tr><td class="c0">'.get_string('availabledate','assignment').':</td>';
229 echo ' <td class="c1">'.userdate($this->assignment->timeavailable).'</td></tr>';
231 if ($this->assignment->timedue) {
232 echo '<tr><td class="c0">'.get_string('duedate','assignment').':</td>';
233 echo ' <td class="c1">'.userdate($this->assignment->timedue).'</td></tr>';
236 echo $OUTPUT->box_end();
241 * Display the bottom and footer of a page
243 * This default method just prints the footer.
244 * This will be suitable for most assignment types
246 function view_footer() {
248 echo $OUTPUT->footer();
252 * Display the feedback to the student
254 * This default method prints the teacher picture and name, date when marked,
255 * grade and teacher submissioncomment.
260 * @param object $submission The submission object or NULL in which case it will be loaded
262 function view_feedback($submission=NULL) {
263 global $USER, $CFG, $DB, $OUTPUT;
264 require_once($CFG->libdir.'/gradelib.php');
266 if (!is_enrolled($this->context, $USER, 'mod/assignment:view')) {
267 // can not submit assignments -> no feedback
271 if (!$submission) { /// Get submission for this assignment
272 $submission = $this->get_submission($USER->id);
274 // Check the user can submit
275 $cansubmit = has_capability('mod/assignment:submit', $this->context, $USER->id, false);
276 // If not then check if the user still has the view cap and has a previous submission
277 $cansubmit = $cansubmit || (!empty($submission) && has_capability('mod/assignment:view', $this->context, $USER->id, false));
280 // can not submit assignments -> no feedback
284 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, $USER->id);
285 $item = $grading_info->items[0];
286 $grade = $item->grades[$USER->id];
288 if ($grade->hidden or $grade->grade === false) { // hidden or error
292 if ($grade->grade === null and empty($grade->str_feedback)) { /// Nothing to show yet
296 $graded_date = $grade->dategraded;
297 $graded_by = $grade->usermodified;
299 /// We need the teacher info
300 if (!$teacher = $DB->get_record('user', array('id'=>$graded_by))) {
301 print_error('cannotfindteacher');
304 /// Print the feedback
305 echo $OUTPUT->heading(get_string('feedbackfromteacher', 'assignment', fullname($teacher)));
307 echo '<table cellspacing="0" class="feedback">';
310 echo '<td class="left picture">';
312 echo $OUTPUT->user_picture($teacher);
315 echo '<td class="topic">';
316 echo '<div class="from">';
318 echo '<div class="fullname">'.fullname($teacher).'</div>';
320 echo '<div class="time">'.userdate($graded_date).'</div>';
326 echo '<td class="left side"> </td>';
327 echo '<td class="content">';
328 echo '<div class="grade">';
329 echo get_string("grade").': '.$grade->str_long_grade;
331 echo '<div class="clearer"></div>';
333 echo '<div class="comment">';
334 echo $grade->str_feedback;
338 if ($this->type == 'uploadsingle') { //@TODO: move to overload view_feedback method in the class or is uploadsingle merging into upload?
339 $responsefiles = $this->print_responsefiles($submission->userid, true);
340 if (!empty($responsefiles)) {
342 echo '<td class="left side"> </td>';
343 echo '<td class="content">';
353 * Returns a link with info about the state of the assignment submissions
355 * This is used by view_header to put this link at the top right of the page.
356 * For teachers it gives the number of submitted assignments with a link
357 * For students it gives the time of their submission.
358 * This will be suitable for most assignment types.
362 * @param bool $allgroup print all groups info if user can access all groups, suitable for index.php
365 function submittedlink($allgroups=false) {
370 $urlbase = "{$CFG->wwwroot}/mod/assignment/";
372 $context = get_context_instance(CONTEXT_MODULE,$this->cm->id);
373 if (has_capability('mod/assignment:grade', $context)) {
374 if ($allgroups and has_capability('moodle/site:accessallgroups', $context)) {
377 $group = groups_get_activity_group($this->cm);
379 if ($count = $this->count_real_submissions($group)) {
380 $submitted = '<a href="'.$urlbase.'submissions.php?id='.$this->cm->id.'">'.
381 get_string('viewsubmissions', 'assignment', $count).'</a>';
383 $submitted = '<a href="'.$urlbase.'submissions.php?id='.$this->cm->id.'">'.
384 get_string('noattempts', 'assignment').'</a>';
388 if ($submission = $this->get_submission($USER->id)) {
389 if ($submission->timemodified) {
390 if ($submission->timemodified <= $this->assignment->timedue || empty($this->assignment->timedue)) {
391 $submitted = '<span class="early">'.userdate($submission->timemodified).'</span>';
393 $submitted = '<span class="late">'.userdate($submission->timemodified).'</span>';
405 * @todo Document this function
407 function setup_elements(&$mform) {
412 * Any preprocessing needed for the settings form for
413 * this assignment type
415 * @param array $default_values - array to fill in with the default values
416 * in the form 'formelement' => 'value'
417 * @param object $form - the form that is to be displayed
420 function form_data_preprocessing(&$default_values, $form) {
424 * Any extra validation checks needed for the settings
425 * form for this assignment type
427 * See lib/formslib.php, 'validation' function for details
429 function form_validation($data, $files) {
434 * Create a new assignment activity
436 * Given an object containing all the necessary data,
437 * (defined by the form in mod_form.php) this function
438 * will create a new instance and return the id number
439 * of the new instance.
440 * The due data is added to the calendar
441 * This is common to all assignment types.
445 * @param object $assignment The data from the form on mod_form.php
446 * @return int The id of the assignment
448 function add_instance($assignment) {
451 $assignment->timemodified = time();
452 $assignment->courseid = $assignment->course;
454 $returnid = $DB->insert_record("assignment", $assignment);
455 $assignment->id = $returnid;
457 if ($assignment->timedue) {
458 $event = new stdClass();
459 $event->name = $assignment->name;
460 $event->description = format_module_intro('assignment', $assignment, $assignment->coursemodule);
461 $event->courseid = $assignment->course;
464 $event->modulename = 'assignment';
465 $event->instance = $returnid;
466 $event->eventtype = 'due';
467 $event->timestart = $assignment->timedue;
468 $event->timeduration = 0;
470 calendar_event::create($event);
473 assignment_grade_item_update($assignment);
479 * Deletes an assignment activity
481 * Deletes all database records, files and calendar events for this assignment.
485 * @param object $assignment The assignment to be deleted
486 * @return boolean False indicates error
488 function delete_instance($assignment) {
491 $assignment->courseid = $assignment->course;
495 // now get rid of all files
496 $fs = get_file_storage();
497 if ($cm = get_coursemodule_from_instance('assignment', $assignment->id)) {
498 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
499 $fs->delete_area_files($context->id);
502 if (! $DB->delete_records('assignment_submissions', array('assignment'=>$assignment->id))) {
506 if (! $DB->delete_records('event', array('modulename'=>'assignment', 'instance'=>$assignment->id))) {
510 if (! $DB->delete_records('assignment', array('id'=>$assignment->id))) {
513 $mod = $DB->get_field('modules','id',array('name'=>'assignment'));
515 assignment_grade_item_delete($assignment);
521 * Updates a new assignment activity
523 * Given an object containing all the necessary data,
524 * (defined by the form in mod_form.php) this function
525 * will update the assignment instance and return the id number
526 * The due date is updated in the calendar
527 * This is common to all assignment types.
531 * @param object $assignment The data from the form on mod_form.php
532 * @return bool success
534 function update_instance($assignment) {
537 $assignment->timemodified = time();
539 $assignment->id = $assignment->instance;
540 $assignment->courseid = $assignment->course;
542 $DB->update_record('assignment', $assignment);
544 if ($assignment->timedue) {
545 $event = new stdClass();
547 if ($event->id = $DB->get_field('event', 'id', array('modulename'=>'assignment', 'instance'=>$assignment->id))) {
549 $event->name = $assignment->name;
550 $event->description = format_module_intro('assignment', $assignment, $assignment->coursemodule);
551 $event->timestart = $assignment->timedue;
553 $calendarevent = calendar_event::load($event->id);
554 $calendarevent->update($event);
556 $event = new stdClass();
557 $event->name = $assignment->name;
558 $event->description = format_module_intro('assignment', $assignment, $assignment->coursemodule);
559 $event->courseid = $assignment->course;
562 $event->modulename = 'assignment';
563 $event->instance = $assignment->id;
564 $event->eventtype = 'due';
565 $event->timestart = $assignment->timedue;
566 $event->timeduration = 0;
568 calendar_event::create($event);
571 $DB->delete_records('event', array('modulename'=>'assignment', 'instance'=>$assignment->id));
574 // get existing grade item
575 assignment_grade_item_update($assignment);
581 * Update grade item for this submission.
583 function update_grade($submission) {
584 assignment_update_grades($this->assignment, $submission->userid);
588 * Top-level function for handling of submissions called by submissions.php
590 * This is for handling the teacher interaction with the grading interface
591 * This should be suitable for most assignment types.
594 * @param string $mode Specifies the kind of teacher interaction taking place
596 function submissions($mode) {
597 ///The main switch is changed to facilitate
598 ///1) Batch fast grading
599 ///2) Skip to the next one on the popup
600 ///3) Save and Skip to the next one on the popup
602 //make user global so we can use the id
603 global $USER, $OUTPUT, $DB, $PAGE;
605 $mailinfo = optional_param('mailinfo', null, PARAM_BOOL);
607 if (optional_param('next', null, PARAM_BOOL)) {
610 if (optional_param('saveandnext', null, PARAM_BOOL)) {
614 if (is_null($mailinfo)) {
615 if (optional_param('sesskey', null, PARAM_BOOL)) {
616 set_user_preference('assignment_mailinfo', $mailinfo);
618 $mailinfo = get_user_preferences('assignment_mailinfo', 0);
621 set_user_preference('assignment_mailinfo', $mailinfo);
625 case 'grade': // We are in a main window grading
626 if ($submission = $this->process_feedback()) {
627 $this->display_submissions(get_string('changessaved'));
629 $this->display_submissions();
633 case 'single': // We are in a main window displaying one submission
634 if ($submission = $this->process_feedback()) {
635 $this->display_submissions(get_string('changessaved'));
637 $this->display_submission();
641 case 'all': // Main window, display everything
642 $this->display_submissions();
646 ///do the fast grading stuff - this process should work for all 3 subclasses
650 if (isset($_POST['submissioncomment'])) {
651 $col = 'submissioncomment';
654 if (isset($_POST['menu'])) {
659 //both submissioncomment and grade columns collapsed..
660 $this->display_submissions();
664 foreach ($_POST[$col] as $id => $unusedvalue){
666 $id = (int)$id; //clean parameter name
668 $this->process_outcomes($id);
670 if (!$submission = $this->get_submission($id)) {
671 $submission = $this->prepare_new_submission($id);
672 $newsubmission = true;
674 $newsubmission = false;
676 unset($submission->data1); // Don't need to update this.
677 unset($submission->data2); // Don't need to update this.
679 //for fast grade, we need to check if any changes take place
683 $grade = $_POST['menu'][$id];
684 $updatedb = $updatedb || ($submission->grade != $grade);
685 $submission->grade = $grade;
687 if (!$newsubmission) {
688 unset($submission->grade); // Don't need to update this.
692 $commentvalue = trim($_POST['submissioncomment'][$id]);
693 $updatedb = $updatedb || ($submission->submissioncomment != $commentvalue);
694 $submission->submissioncomment = $commentvalue;
696 unset($submission->submissioncomment); // Don't need to update this.
699 $submission->teacher = $USER->id;
701 $submission->mailed = (int)(!$mailinfo);
704 $submission->timemarked = time();
706 //if it is not an update, we don't change the last modified time etc.
707 //this will also not write into database if no submissioncomment and grade is entered.
710 if ($newsubmission) {
711 if (!isset($submission->submissioncomment)) {
712 $submission->submissioncomment = '';
714 $sid = $DB->insert_record('assignment_submissions', $submission);
715 $submission->id = $sid;
717 $DB->update_record('assignment_submissions', $submission);
720 // trigger grade event
721 $this->update_grade($submission);
723 //add to log only if updating
724 add_to_log($this->course->id, 'assignment', 'update grades',
725 'submissions.php?id='.$this->cm->id.'&user='.$submission->userid,
726 $submission->userid, $this->cm->id);
731 $message = $OUTPUT->notification(get_string('changessaved'), 'notifysuccess');
733 $this->display_submissions($message);
738 ///We are in pop up. save the current one and go to the next one.
739 //first we save the current changes
740 if ($submission = $this->process_feedback()) {
741 //print_heading(get_string('changessaved'));
742 //$extra_javascript = $this->update_main_listing($submission);
746 /// We are currently in pop up, but we want to skip to next one without saving.
747 /// This turns out to be similar to a single case
748 /// The URL used is for the next submission.
749 $offset = required_param('offset', PARAM_INT);
750 $nextid = required_param('nextid', PARAM_INT);
751 $id = required_param('id', PARAM_INT);
752 $offset = (int)$offset+1;
753 //$this->display_submission($offset+1 , $nextid);
754 redirect('submissions.php?id='.$id.'&userid='. $nextid . '&mode=single&offset='.$offset);
758 $this->display_submission();
762 echo "something seriously is wrong!!";
768 * Helper method updating the listing on the main script from popup using javascript
772 * @param $submission object The submission whose data is to be updated on the main page
774 function update_main_listing($submission) {
775 global $SESSION, $CFG, $OUTPUT;
779 $perpage = get_user_preferences('assignment_perpage', 10);
781 $quickgrade = get_user_preferences('assignment_quickgrade', 0);
783 /// Run some Javascript to try and update the parent page
784 $output .= '<script type="text/javascript">'."\n<!--\n";
785 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['submissioncomment'])) {
787 $output.= 'opener.document.getElementById("submissioncomment'.$submission->userid.'").value="'
788 .trim($submission->submissioncomment).'";'."\n";
790 $output.= 'opener.document.getElementById("com'.$submission->userid.
791 '").innerHTML="'.shorten_text(trim(strip_tags($submission->submissioncomment)), 15)."\";\n";
795 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['grade'])) {
796 //echo optional_param('menuindex');
798 $output.= 'opener.document.getElementById("menumenu'.$submission->userid.
799 '").selectedIndex="'.optional_param('menuindex', 0, PARAM_INT).'";'."\n";
801 $output.= 'opener.document.getElementById("g'.$submission->userid.'").innerHTML="'.
802 $this->display_grade($submission->grade)."\";\n";
805 //need to add student's assignments in there too.
806 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['timemodified']) &&
807 $submission->timemodified) {
808 $output.= 'opener.document.getElementById("ts'.$submission->userid.
809 '").innerHTML="'.addslashes_js($this->print_student_answer($submission->userid)).userdate($submission->timemodified)."\";\n";
812 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['timemarked']) &&
813 $submission->timemarked) {
814 $output.= 'opener.document.getElementById("tt'.$submission->userid.
815 '").innerHTML="'.userdate($submission->timemarked)."\";\n";
818 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['status'])) {
819 $output.= 'opener.document.getElementById("up'.$submission->userid.'").className="s1";';
820 $buttontext = get_string('update');
821 $url = new moodle_url('/mod/assignment/submissions.php', array(
822 'id' => $this->cm->id,
823 'userid' => $submission->userid,
825 'offset' => (optional_param('offset', '', PARAM_INT)-1)));
826 $button = $OUTPUT->action_link($url, $buttontext, new popup_action('click', $url, 'grade'.$submission->userid, array('height' => 450, 'width' => 700)), array('ttile'=>$buttontext));
828 $output .= 'opener.document.getElementById("up'.$submission->userid.'").innerHTML="'.addslashes_js($button).'";';
831 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, $submission->userid);
833 if (empty($SESSION->flextable['mod-assignment-submissions']->collapse['finalgrade'])) {
834 $output.= 'opener.document.getElementById("finalgrade_'.$submission->userid.
835 '").innerHTML="'.$grading_info->items[0]->grades[$submission->userid]->str_grade.'";'."\n";
838 if (!empty($CFG->enableoutcomes) and empty($SESSION->flextable['mod-assignment-submissions']->collapse['outcome'])) {
840 if (!empty($grading_info->outcomes)) {
841 foreach($grading_info->outcomes as $n=>$outcome) {
842 if ($outcome->grades[$submission->userid]->locked) {
847 $output.= 'opener.document.getElementById("outcome_'.$n.'_'.$submission->userid.
848 '").selectedIndex="'.$outcome->grades[$submission->userid]->grade.'";'."\n";
851 $options = make_grades_menu(-$outcome->scaleid);
852 $options[0] = get_string('nooutcome', 'grades');
853 $output.= 'opener.document.getElementById("outcome_'.$n.'_'.$submission->userid.'").innerHTML="'.$options[$outcome->grades[$submission->userid]->grade]."\";\n";
860 $output .= "\n-->\n</script>";
865 * Return a grade in user-friendly form, whether it's a scale or not
868 * @param mixed $grade
869 * @return string User-friendly representation of grade
871 function display_grade($grade) {
874 static $scalegrades = array(); // Cache scales for each assignment - they might have different scales!!
876 if ($this->assignment->grade >= 0) { // Normal number
880 return $grade.' / '.$this->assignment->grade;
884 if (empty($scalegrades[$this->assignment->id])) {
885 if ($scale = $DB->get_record('scale', array('id'=>-($this->assignment->grade)))) {
886 $scalegrades[$this->assignment->id] = make_menu_from_list($scale->scale);
891 if (isset($scalegrades[$this->assignment->id][$grade])) {
892 return $scalegrades[$this->assignment->id][$grade];
899 * Display a single submission, ready for grading on a popup window
901 * This default method prints the teacher info and submissioncomment box at the top and
902 * the student info and submission at the bottom.
903 * This method also fetches the necessary data in order to be able to
904 * provide a "Next submission" button.
905 * Calls preprocess_submission() to give assignment type plug-ins a chance
906 * to process submissions before they are graded
907 * This method gets its arguments from the page parameters userid and offset
911 * @param string $extra_javascript
913 function display_submission($offset=-1,$userid =-1, $display=true) {
914 global $CFG, $DB, $PAGE, $OUTPUT;
915 require_once($CFG->libdir.'/gradelib.php');
916 require_once($CFG->libdir.'/tablelib.php');
917 require_once("$CFG->dirroot/repository/lib.php");
919 $userid = required_param('userid', PARAM_INT);
922 $offset = required_param('offset', PARAM_INT);//offset for where to start looking for student.
924 $filter = optional_param('filter', 0, PARAM_INT);
926 if (!$user = $DB->get_record('user', array('id'=>$userid))) {
927 print_error('nousers');
930 if (!$submission = $this->get_submission($user->id)) {
931 $submission = $this->prepare_new_submission($userid);
933 if ($submission->timemodified > $submission->timemarked) {
934 $subtype = 'assignmentnew';
936 $subtype = 'assignmentold';
939 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, array($user->id));
940 $gradingdisabled = $grading_info->items[0]->grades[$userid]->locked || $grading_info->items[0]->grades[$userid]->overridden;
942 /// construct SQL, using current offset to find the data of the next student
943 $course = $this->course;
944 $assignment = $this->assignment;
946 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
948 /// Get all ppl that can submit assignments
950 $currentgroup = groups_get_activity_group($cm);
951 $users = get_enrolled_users($context, 'mod/assignment:view', $currentgroup, 'u.id');
953 $users = array_keys($users);
954 // if groupmembersonly used, remove users who are not in any group
955 if (!empty($CFG->enablegroupmembersonly) and $cm->groupmembersonly) {
956 if ($groupingusers = groups_get_grouping_members($cm->groupingid, 'u.id', 'u.id')) {
957 $users = array_intersect($users, array_keys($groupingusers));
964 if($filter == 'submitted') {
965 $where .= 's.timemodified > 0 AND ';
966 } else if($filter == 'requiregrading') {
967 $where .= 's.timemarked < s.timemodified AND ';
971 $userfields = user_picture::fields('u', array('lastaccess'));
972 $select = "SELECT $userfields,
973 s.id AS submissionid, s.grade, s.submissioncomment,
974 s.timemodified, s.timemarked ";
975 $sql = 'FROM {user} u '.
976 'LEFT JOIN {assignment_submissions} s ON u.id = s.userid
977 AND s.assignment = '.$this->assignment->id.' '.
978 'WHERE '.$where.'u.id IN ('.implode(',', $users).') ';
980 if ($sort = flexible_table::get_sort_for_table('mod-assignment-submissions')) {
981 $sort = 'ORDER BY '.$sort.' ';
983 $auser = $DB->get_records_sql($select.$sql.$sort, null, $offset, 2);
985 if (is_array($auser) && count($auser)>1) {
986 $nextuser = next($auser);
987 /// Calculate user status
988 $nextuser->status = ($nextuser->timemarked > 0) && ($nextuser->timemarked >= $nextuser->timemodified);
989 $nextid = $nextuser->id;
993 if ($submission->teacher) {
994 $teacher = $DB->get_record('user', array('id'=>$submission->teacher));
1000 $this->preprocess_submission($submission);
1002 $mformdata = new stdClass();
1003 $mformdata->context = $this->context;
1004 $mformdata->maxbytes = $this->course->maxbytes;
1005 $mformdata->courseid = $this->course->id;
1006 $mformdata->teacher = $teacher;
1007 $mformdata->assignment = $assignment;
1008 $mformdata->submission = $submission;
1009 $mformdata->lateness = $this->display_lateness($submission->timemodified);
1010 $mformdata->auser = $auser;
1011 $mformdata->user = $user;
1012 $mformdata->offset = $offset;
1013 $mformdata->userid = $userid;
1014 $mformdata->cm = $this->cm;
1015 $mformdata->grading_info = $grading_info;
1016 $mformdata->enableoutcomes = $CFG->enableoutcomes;
1017 $mformdata->grade = $this->assignment->grade;
1018 $mformdata->gradingdisabled = $gradingdisabled;
1019 $mformdata->nextid = $nextid;
1020 $mformdata->submissioncomment= $submission->submissioncomment;
1021 $mformdata->submissioncommentformat= FORMAT_HTML;
1022 $mformdata->submission_content= $this->print_user_files($user->id,true);
1023 $mformdata->filter = $filter;
1024 $mformdata->mailinfo = get_user_preferences('assignment_mailinfo', 0);
1025 if ($assignment->assignmenttype == 'upload') {
1026 $mformdata->fileui_options = array('subdirs'=>1, 'maxbytes'=>$assignment->maxbytes, 'maxfiles'=>$assignment->var1, 'accepted_types'=>'*', 'return_types'=>FILE_INTERNAL);
1027 } elseif ($assignment->assignmenttype == 'uploadsingle') {
1028 $mformdata->fileui_options = array('subdirs'=>0, 'maxbytes'=>$CFG->userquota, 'maxfiles'=>1, 'accepted_types'=>'*', 'return_types'=>FILE_INTERNAL);
1031 $submitform = new mod_assignment_grading_form( null, $mformdata );
1034 $ret_data = new stdClass();
1035 $ret_data->mform = $submitform;
1036 $ret_data->fileui_options = $mformdata->fileui_options;
1040 if ($submitform->is_cancelled()) {
1041 redirect('submissions.php?id='.$this->cm->id);
1044 $submitform->set_data($mformdata);
1046 $PAGE->set_title($this->course->fullname . ': ' .get_string('feedback', 'assignment').' - '.fullname($user, true));
1047 $PAGE->set_heading($this->course->fullname);
1048 $PAGE->navbar->add(get_string('submissions', 'assignment'), new moodle_url('/mod/assignment/submissions.php', array('id'=>$cm->id)));
1049 $PAGE->navbar->add(fullname($user, true));
1051 echo $OUTPUT->header();
1052 echo $OUTPUT->heading(get_string('feedback', 'assignment').': '.fullname($user, true));
1054 // display mform here...
1055 $submitform->display();
1057 $customfeedback = $this->custom_feedbackform($submission, true);
1058 if (!empty($customfeedback)) {
1059 echo $customfeedback;
1062 echo $OUTPUT->footer();
1066 * Preprocess submission before grading
1068 * Called by display_submission()
1069 * The default type does nothing here.
1071 * @param object $submission The submission object
1073 function preprocess_submission(&$submission) {
1077 * Display all the submissions ready for grading
1083 * @param string $message
1086 function display_submissions($message='') {
1087 global $CFG, $DB, $USER, $DB, $OUTPUT, $PAGE;
1088 require_once($CFG->libdir.'/gradelib.php');
1090 /* first we check to see if the form has just been submitted
1091 * to request user_preference updates
1094 $filters = array(self::FILTER_ALL => get_string('all'),
1095 self::FILTER_SUBMITTED => get_string('submitted', 'assignment'),
1096 self::FILTER_REQUIRE_GRADING => get_string('requiregrading', 'assignment'));
1098 $updatepref = optional_param('updatepref', 0, PARAM_INT);
1100 if (isset($_POST['updatepref'])){
1101 $perpage = optional_param('perpage', 10, PARAM_INT);
1102 $perpage = ($perpage <= 0) ? 10 : $perpage ;
1103 $filter = optional_param('filter', 0, PARAM_INT);
1104 set_user_preference('assignment_perpage', $perpage);
1105 set_user_preference('assignment_quickgrade', optional_param('quickgrade', 0, PARAM_BOOL));
1106 set_user_preference('assignment_filter', $filter);
1109 /* next we get perpage and quickgrade (allow quick grade) params
1112 $perpage = get_user_preferences('assignment_perpage', 10);
1113 $quickgrade = get_user_preferences('assignment_quickgrade', 0);
1114 $filter = get_user_preferences('assignment_filter', 0);
1115 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id);
1117 if (!empty($CFG->enableoutcomes) and !empty($grading_info->outcomes)) {
1118 $uses_outcomes = true;
1120 $uses_outcomes = false;
1123 $page = optional_param('page', 0, PARAM_INT);
1124 $strsaveallfeedback = get_string('saveallfeedback', 'assignment');
1126 /// Some shortcuts to make the code read better
1128 $course = $this->course;
1129 $assignment = $this->assignment;
1131 $hassubmission = false;
1133 $tabindex = 1; //tabindex for quick grading tabbing; Not working for dropdowns yet
1134 add_to_log($course->id, 'assignment', 'view submission', 'submissions.php?id='.$this->cm->id, $this->assignment->id, $this->cm->id);
1136 $PAGE->set_title(format_string($this->assignment->name,true));
1137 $PAGE->set_heading($this->course->fullname);
1138 echo $OUTPUT->header();
1140 echo '<div class="usersubmissions">';
1142 //hook to allow plagiarism plugins to update status/print links.
1143 plagiarism_update_status($this->course, $this->cm);
1145 $course_context = get_context_instance(CONTEXT_COURSE, $course->id);
1146 if (has_capability('gradereport/grader:view', $course_context) && has_capability('moodle/grade:viewall', $course_context)) {
1147 echo '<div class="allcoursegrades"><a href="' . $CFG->wwwroot . '/grade/report/grader/index.php?id=' . $course->id . '">'
1148 . get_string('seeallcoursegrades', 'grades') . '</a></div>';
1151 if (!empty($message)) {
1152 echo $message; // display messages here if any
1155 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
1157 /// Check to see if groups are being used in this assignment
1159 /// find out current groups mode
1160 $groupmode = groups_get_activity_groupmode($cm);
1161 $currentgroup = groups_get_activity_group($cm, true);
1162 groups_print_activity_menu($cm, $CFG->wwwroot . '/mod/assignment/submissions.php?id=' . $this->cm->id);
1164 /// Print quickgrade form around the table
1166 $formattrs = array();
1167 $formattrs['action'] = new moodle_url('/mod/assignment/submissions.php');
1168 $formattrs['id'] = 'fastg';
1169 $formattrs['method'] = 'post';
1171 echo html_writer::start_tag('form', $formattrs);
1172 echo html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'id', 'value'=> $this->cm->id));
1173 echo html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'mode', 'value'=> 'fastgrade'));
1174 echo html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'page', 'value'=> $page));
1175 echo html_writer::empty_tag('input', array('type'=>'hidden', 'name'=>'sesskey', 'value'=> sesskey()));
1178 /// Get all ppl that are allowed to submit assignments
1179 list($esql, $params) = get_enrolled_sql($context, 'mod/assignment:view', $currentgroup);
1181 if ($filter == self::FILTER_ALL) {
1182 $sql = "SELECT u.id FROM {user} u ".
1183 "LEFT JOIN ($esql) eu ON eu.id=u.id ".
1184 "WHERE u.deleted = 0 AND eu.id=u.id ";
1187 if($filter == self::FILTER_SUBMITTED) {
1188 $wherefilter = ' AND s.timemodified > 0';
1189 } else if($filter == self::FILTER_REQUIRE_GRADING) {
1190 $wherefilter = ' AND s.timemarked < s.timemodified ';
1193 $sql = "SELECT u.id FROM {user} u ".
1194 "LEFT JOIN ($esql) eu ON eu.id=u.id ".
1195 "LEFT JOIN {assignment_submissions} s ON (u.id = s.userid) " .
1196 "WHERE u.deleted = 0 AND eu.id=u.id ".
1197 'AND s.assignment = '. $this->assignment->id .
1201 $users = $DB->get_records_sql($sql, $params);
1202 if (!empty($users)) {
1203 $users = array_keys($users);
1206 // if groupmembersonly used, remove users who are not in any group
1207 if ($users and !empty($CFG->enablegroupmembersonly) and $cm->groupmembersonly) {
1208 if ($groupingusers = groups_get_grouping_members($cm->groupingid, 'u.id', 'u.id')) {
1209 $users = array_intersect($users, array_keys($groupingusers));
1213 $tablecolumns = array('picture', 'fullname', 'grade', 'submissioncomment', 'timemodified', 'timemarked', 'status', 'finalgrade');
1214 if ($uses_outcomes) {
1215 $tablecolumns[] = 'outcome'; // no sorting based on outcomes column
1218 $tableheaders = array('',
1219 get_string('fullnameuser'),
1220 get_string('grade'),
1221 get_string('comment', 'assignment'),
1222 get_string('lastmodified').' ('.get_string('submission', 'assignment').')',
1223 get_string('lastmodified').' ('.get_string('grade').')',
1224 get_string('status'),
1225 get_string('finalgrade', 'grades'));
1226 if ($uses_outcomes) {
1227 $tableheaders[] = get_string('outcome', 'grades');
1230 require_once($CFG->libdir.'/tablelib.php');
1231 $table = new flexible_table('mod-assignment-submissions');
1233 $table->define_columns($tablecolumns);
1234 $table->define_headers($tableheaders);
1235 $table->define_baseurl($CFG->wwwroot.'/mod/assignment/submissions.php?id='.$this->cm->id.'&currentgroup='.$currentgroup);
1237 $table->sortable(true, 'lastname');//sorted by lastname by default
1238 $table->collapsible(true);
1239 $table->initialbars(true);
1241 $table->column_suppress('picture');
1242 $table->column_suppress('fullname');
1244 $table->column_class('picture', 'picture');
1245 $table->column_class('fullname', 'fullname');
1246 $table->column_class('grade', 'grade');
1247 $table->column_class('submissioncomment', 'comment');
1248 $table->column_class('timemodified', 'timemodified');
1249 $table->column_class('timemarked', 'timemarked');
1250 $table->column_class('status', 'status');
1251 $table->column_class('finalgrade', 'finalgrade');
1252 if ($uses_outcomes) {
1253 $table->column_class('outcome', 'outcome');
1256 $table->set_attribute('cellspacing', '0');
1257 $table->set_attribute('id', 'attempts');
1258 $table->set_attribute('class', 'submissions');
1259 $table->set_attribute('width', '100%');
1260 //$table->set_attribute('align', 'center');
1262 $table->no_sorting('finalgrade');
1263 $table->no_sorting('outcome');
1265 // Start working -- this is necessary as soon as the niceties are over
1268 /// Construct the SQL
1269 list($where, $params) = $table->get_sql_where();
1274 if ($filter == self::FILTER_SUBMITTED) {
1275 $where .= 's.timemodified > 0 AND ';
1276 } else if($filter == self::FILTER_REQUIRE_GRADING) {
1277 $where .= 's.timemarked < s.timemodified AND ';
1280 if ($sort = $table->get_sql_sort()) {
1281 $sort = ' ORDER BY '.$sort;
1284 $ufields = user_picture::fields('u');
1285 if (!empty($users)) {
1286 $select = "SELECT $ufields,
1287 s.id AS submissionid, s.grade, s.submissioncomment,
1288 s.timemodified, s.timemarked ";
1289 $sql = 'FROM {user} u '.
1290 'LEFT JOIN {assignment_submissions} s ON u.id = s.userid
1291 AND s.assignment = '.$this->assignment->id.' '.
1292 'WHERE '.$where.'u.id IN ('.implode(',',$users).') ';
1294 $ausers = $DB->get_records_sql($select.$sql.$sort, $params, $table->get_page_start(), $table->get_page_size());
1296 $table->pagesize($perpage, count($users));
1298 ///offset used to calculate index of student in that particular query, needed for the pop up to know who's next
1299 $offset = $page * $perpage;
1300 $strupdate = get_string('update');
1301 $strgrade = get_string('grade');
1302 $grademenu = make_grades_menu($this->assignment->grade);
1304 if ($ausers !== false) {
1305 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, array_keys($ausers));
1306 $endposition = $offset + $perpage;
1307 $currentposition = 0;
1308 foreach ($ausers as $auser) {
1309 if ($currentposition == $offset && $offset < $endposition) {
1310 $final_grade = $grading_info->items[0]->grades[$auser->id];
1311 $grademax = $grading_info->items[0]->grademax;
1312 $final_grade->formatted_grade = round($final_grade->grade,2) .' / ' . round($grademax,2);
1313 $locked_overridden = 'locked';
1314 if ($final_grade->overridden) {
1315 $locked_overridden = 'overridden';
1318 /// Calculate user status
1319 $auser->status = ($auser->timemarked > 0) && ($auser->timemarked >= $auser->timemodified);
1320 $picture = $OUTPUT->user_picture($auser);
1322 if (empty($auser->submissionid)) {
1323 $auser->grade = -1; //no submission yet
1326 if (!empty($auser->submissionid)) {
1327 $hassubmission = true;
1328 ///Prints student answer and student modified date
1329 ///attach file or print link to student answer, depending on the type of the assignment.
1330 ///Refer to print_student_answer in inherited classes.
1331 if ($auser->timemodified > 0) {
1332 $studentmodified = '<div id="ts'.$auser->id.'">'.$this->print_student_answer($auser->id)
1333 . userdate($auser->timemodified).'</div>';
1335 $studentmodified = '<div id="ts'.$auser->id.'"> </div>';
1337 ///Print grade, dropdown or text
1338 if ($auser->timemarked > 0) {
1339 $teachermodified = '<div id="tt'.$auser->id.'">'.userdate($auser->timemarked).'</div>';
1341 if ($final_grade->locked or $final_grade->overridden) {
1342 $grade = '<div id="g'.$auser->id.'" class="'. $locked_overridden .'">'.$final_grade->formatted_grade.'</div>';
1343 } else if ($quickgrade) {
1344 $attributes = array();
1345 $attributes['tabindex'] = $tabindex++;
1346 $menu = html_writer::select(make_grades_menu($this->assignment->grade), 'menu['.$auser->id.']', $auser->grade, array(-1=>get_string('nograde')), $attributes);
1347 $grade = '<div id="g'.$auser->id.'">'. $menu .'</div>';
1349 $grade = '<div id="g'.$auser->id.'">'.$this->display_grade($auser->grade).'</div>';
1353 $teachermodified = '<div id="tt'.$auser->id.'"> </div>';
1354 if ($final_grade->locked or $final_grade->overridden) {
1355 $grade = '<div id="g'.$auser->id.'" class="'. $locked_overridden .'">'.$final_grade->formatted_grade.'</div>';
1356 } else if ($quickgrade) {
1357 $attributes = array();
1358 $attributes['tabindex'] = $tabindex++;
1359 $menu = html_writer::select(make_grades_menu($this->assignment->grade), 'menu['.$auser->id.']', $auser->grade, array(-1=>get_string('nograde')), $attributes);
1360 $grade = '<div id="g'.$auser->id.'">'.$menu.'</div>';
1362 $grade = '<div id="g'.$auser->id.'">'.$this->display_grade($auser->grade).'</div>';
1366 if ($final_grade->locked or $final_grade->overridden) {
1367 $comment = '<div id="com'.$auser->id.'">'.shorten_text(strip_tags($final_grade->str_feedback),15).'</div>';
1369 } else if ($quickgrade) {
1370 $comment = '<div id="com'.$auser->id.'">'
1371 . '<textarea tabindex="'.$tabindex++.'" name="submissioncomment['.$auser->id.']" id="submissioncomment'
1372 . $auser->id.'" rows="2" cols="20">'.($auser->submissioncomment).'</textarea></div>';
1374 $comment = '<div id="com'.$auser->id.'">'.shorten_text(strip_tags($auser->submissioncomment),15).'</div>';
1377 $studentmodified = '<div id="ts'.$auser->id.'"> </div>';
1378 $teachermodified = '<div id="tt'.$auser->id.'"> </div>';
1379 $status = '<div id="st'.$auser->id.'"> </div>';
1381 if ($final_grade->locked or $final_grade->overridden) {
1382 $grade = '<div id="g'.$auser->id.'">'.$final_grade->formatted_grade . '</div>';
1383 $hassubmission = true;
1384 } else if ($quickgrade) { // allow editing
1385 $attributes = array();
1386 $attributes['tabindex'] = $tabindex++;
1387 $menu = html_writer::select(make_grades_menu($this->assignment->grade), 'menu['.$auser->id.']', $auser->grade, array(-1=>get_string('nograde')), $attributes);
1388 $grade = '<div id="g'.$auser->id.'">'.$menu.'</div>';
1389 $hassubmission = true;
1391 $grade = '<div id="g'.$auser->id.'">-</div>';
1394 if ($final_grade->locked or $final_grade->overridden) {
1395 $comment = '<div id="com'.$auser->id.'">'.$final_grade->str_feedback.'</div>';
1396 } else if ($quickgrade) {
1397 $comment = '<div id="com'.$auser->id.'">'
1398 . '<textarea tabindex="'.$tabindex++.'" name="submissioncomment['.$auser->id.']" id="submissioncomment'
1399 . $auser->id.'" rows="2" cols="20">'.($auser->submissioncomment).'</textarea></div>';
1401 $comment = '<div id="com'.$auser->id.'"> </div>';
1405 if (empty($auser->status)) { /// Confirm we have exclusively 0 or 1
1411 $buttontext = ($auser->status == 1) ? $strupdate : $strgrade;
1413 ///No more buttons, we use popups ;-).
1414 $popup_url = '/mod/assignment/submissions.php?id='.$this->cm->id
1415 . '&userid='.$auser->id.'&mode=single'.'&filter='.$filter.'&offset='.$offset++;
1417 $button = $OUTPUT->action_link($popup_url, $buttontext);
1419 $status = '<div id="up'.$auser->id.'" class="s'.$auser->status.'">'.$button.'</div>';
1421 $finalgrade = '<span id="finalgrade_'.$auser->id.'">'.$final_grade->str_grade.'</span>';
1425 if ($uses_outcomes) {
1427 foreach($grading_info->outcomes as $n=>$outcome) {
1428 $outcomes .= '<div class="outcome"><label>'.$outcome->name.'</label>';
1429 $options = make_grades_menu(-$outcome->scaleid);
1431 if ($outcome->grades[$auser->id]->locked or !$quickgrade) {
1432 $options[0] = get_string('nooutcome', 'grades');
1433 $outcomes .= ': <span id="outcome_'.$n.'_'.$auser->id.'">'.$options[$outcome->grades[$auser->id]->grade].'</span>';
1435 $attributes = array();
1436 $attributes['tabindex'] = $tabindex++;
1437 $attributes['id'] = 'outcome_'.$n.'_'.$auser->id;
1438 $outcomes .= ' '.html_writer::select($options, 'outcome_'.$n.'['.$auser->id.']', $outcome->grades[$auser->id]->grade, array(0=>get_string('nooutcome', 'grades')), $attributes);
1440 $outcomes .= '</div>';
1444 $userlink = '<a href="' . $CFG->wwwroot . '/user/view.php?id=' . $auser->id . '&course=' . $course->id . '">' . fullname($auser, has_capability('moodle/site:viewfullnames', $this->context)) . '</a>';
1445 $row = array($picture, $userlink, $grade, $comment, $studentmodified, $teachermodified, $status, $finalgrade);
1446 if ($uses_outcomes) {
1449 $table->add_data($row);
1454 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)
1455 echo html_writer::start_tag('div', array('class' => 'mod-assignment-download-link'));
1456 echo html_writer::link(new moodle_url('/mod/assignment/submissions.php', array('id' => $this->cm->id, 'download' => 'zip')), get_string('downloadall', 'assignment'));
1457 echo html_writer::end_tag('div');
1459 $table->print_html(); /// Print the whole table
1461 if ($filter == self::FILTER_SUBMITTED) {
1462 echo html_writer::tag('div', get_string('nosubmisson', 'assignment'), array('class'=>'nosubmisson'));
1463 } else if ($filter == self::FILTER_REQUIRE_GRADING) {
1464 echo html_writer::tag('div', get_string('norequiregrading', 'assignment'), array('class'=>'norequiregrading'));
1468 /// Print quickgrade form around the table
1469 if ($quickgrade && $table->started_output && !empty($users)){
1470 $mailinfopref = false;
1471 if (get_user_preferences('assignment_mailinfo', 1)) {
1472 $mailinfopref = true;
1474 $emailnotification = html_writer::checkbox('mailinfo', 1, $mailinfopref, get_string('enablenotification','assignment'));
1476 $emailnotification .= $OUTPUT->help_icon('enablenotification', 'assignment');
1477 echo html_writer::tag('div', $emailnotification, array('class'=>'emailnotification'));
1479 $savefeedback = html_writer::empty_tag('input', array('type'=>'submit', 'name'=>'fastg', 'value'=>get_string('saveallfeedback', 'assignment')));
1480 echo html_writer::tag('div', $savefeedback, array('class'=>'fastgbutton'));
1482 echo html_writer::end_tag('form');
1483 } else if ($quickgrade) {
1484 echo html_writer::end_tag('form');
1488 /// End of fast grading form
1490 /// Mini form for setting user preference
1492 $formaction = new moodle_url('/mod/assignment/submissions.php', array('id'=>$this->cm->id));
1493 $mform = new MoodleQuickForm('optionspref', 'post', $formaction, '', array('class'=>'optionspref'));
1495 $mform->addElement('hidden', 'updatepref');
1496 $mform->setDefault('updatepref', 1);
1497 $mform->addElement('header', 'qgprefs', get_string('optionalsettings', 'assignment'));
1498 $mform->addElement('select', 'filter', get_string('show'), $filters);
1500 $mform->setDefault('filter', $filter);
1502 $mform->addElement('text', 'perpage', get_string('pagesize', 'assignment'), array('size'=>1));
1503 $mform->setDefault('perpage', $perpage);
1505 $mform->addElement('checkbox', 'quickgrade', get_string('quickgrade','assignment'));
1506 $mform->setDefault('quickgrade', $quickgrade);
1507 $mform->addHelpButton('quickgrade', 'quickgrade', 'assignment');
1509 $mform->addElement('submit', 'savepreferences', get_string('savepreferences'));
1513 echo $OUTPUT->footer();
1517 * Process teacher feedback submission
1519 * This is called by submissions() when a grading even has taken place.
1520 * It gets its data from the submitted form.
1525 * @return object|bool The updated submission object or false
1527 function process_feedback($formdata=null) {
1528 global $CFG, $USER, $DB;
1529 require_once($CFG->libdir.'/gradelib.php');
1531 if (!$feedback = data_submitted() or !confirm_sesskey()) { // No incoming data?
1535 ///For save and next, we need to know the userid to save, and the userid to go
1536 ///We use a new hidden field in the form, and set it to -1. If it's set, we use this
1537 ///as the userid to store
1538 if ((int)$feedback->saveuserid !== -1){
1539 $feedback->userid = $feedback->saveuserid;
1542 if (!empty($feedback->cancel)) { // User hit cancel button
1546 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, $feedback->userid);
1548 // store outcomes if needed
1549 $this->process_outcomes($feedback->userid);
1551 $submission = $this->get_submission($feedback->userid, true); // Get or make one
1553 if (!($grading_info->items[0]->grades[$feedback->userid]->locked ||
1554 $grading_info->items[0]->grades[$feedback->userid]->overridden) ) {
1556 $submission->grade = $feedback->xgrade;
1557 $submission->submissioncomment = $feedback->submissioncomment_editor['text'];
1558 $submission->teacher = $USER->id;
1559 $mailinfo = get_user_preferences('assignment_mailinfo', 0);
1561 $submission->mailed = 1; // treat as already mailed
1563 $submission->mailed = 0; // Make sure mail goes out (again, even)
1565 $submission->timemarked = time();
1567 unset($submission->data1); // Don't need to update this.
1568 unset($submission->data2); // Don't need to update this.
1570 if (empty($submission->timemodified)) { // eg for offline assignments
1571 // $submission->timemodified = time();
1574 $DB->update_record('assignment_submissions', $submission);
1576 // triger grade event
1577 $this->update_grade($submission);
1579 add_to_log($this->course->id, 'assignment', 'update grades',
1580 'submissions.php?id='.$this->cm->id.'&user='.$feedback->userid, $feedback->userid, $this->cm->id);
1581 if (!is_null($formdata)) {
1582 if ($this->type == 'upload' || $this->type == 'uploadsingle') {
1583 $mformdata = $formdata->mform->get_data();
1584 $mformdata = file_postupdate_standard_filemanager($mformdata, 'files', $formdata->fileui_options, $this->context, 'mod_assignment', 'response', $submission->id);
1593 function process_outcomes($userid) {
1596 if (empty($CFG->enableoutcomes)) {
1600 require_once($CFG->libdir.'/gradelib.php');
1602 if (!$formdata = data_submitted() or !confirm_sesskey()) {
1607 $grading_info = grade_get_grades($this->course->id, 'mod', 'assignment', $this->assignment->id, $userid);
1609 if (!empty($grading_info->outcomes)) {
1610 foreach($grading_info->outcomes as $n=>$old) {
1611 $name = 'outcome_'.$n;
1612 if (isset($formdata->{$name}[$userid]) and $old->grades[$userid]->grade != $formdata->{$name}[$userid]) {
1613 $data[$n] = $formdata->{$name}[$userid];
1617 if (count($data) > 0) {
1618 grade_update_outcomes('mod/assignment', $this->course->id, 'mod', 'assignment', $this->assignment->id, $userid, $data);
1624 * Load the submission object for a particular user
1628 * @param $userid int The id of the user whose submission we want or 0 in which case USER->id is used
1629 * @param $createnew boolean optional Defaults to false. If set to true a new submission object will be created in the database
1630 * @param bool $teachermodified student submission set if false
1631 * @return object The submission
1633 function get_submission($userid=0, $createnew=false, $teachermodified=false) {
1636 if (empty($userid)) {
1637 $userid = $USER->id;
1640 $submission = $DB->get_record('assignment_submissions', array('assignment'=>$this->assignment->id, 'userid'=>$userid));
1642 if ($submission || !$createnew) {
1645 $newsubmission = $this->prepare_new_submission($userid, $teachermodified);
1646 $DB->insert_record("assignment_submissions", $newsubmission);
1648 return $DB->get_record('assignment_submissions', array('assignment'=>$this->assignment->id, 'userid'=>$userid));
1652 * Instantiates a new submission object for a given user
1654 * Sets the assignment, userid and times, everything else is set to default values.
1656 * @param int $userid The userid for which we want a submission object
1657 * @param bool $teachermodified student submission set if false
1658 * @return object The submission
1660 function prepare_new_submission($userid, $teachermodified=false) {
1661 $submission = new stdClass();
1662 $submission->assignment = $this->assignment->id;
1663 $submission->userid = $userid;
1664 $submission->timecreated = time();
1665 // teachers should not be modifying modified date, except offline assignments
1666 if ($teachermodified) {
1667 $submission->timemodified = 0;
1669 $submission->timemodified = $submission->timecreated;
1671 $submission->numfiles = 0;
1672 $submission->data1 = '';
1673 $submission->data2 = '';
1674 $submission->grade = -1;
1675 $submission->submissioncomment = '';
1676 $submission->format = 0;
1677 $submission->teacher = 0;
1678 $submission->timemarked = 0;
1679 $submission->mailed = 0;
1684 * Return all assignment submissions by ENROLLED students (even empty)
1686 * @param string $sort optional field names for the ORDER BY in the sql query
1687 * @param string $dir optional specifying the sort direction, defaults to DESC
1688 * @return array The submission objects indexed by id
1690 function get_submissions($sort='', $dir='DESC') {
1691 return assignment_get_all_submissions($this->assignment, $sort, $dir);
1695 * Counts all real assignment submissions by ENROLLED students (not empty ones)
1697 * @param int $groupid optional If nonzero then count is restricted to this group
1698 * @return int The number of submissions
1700 function count_real_submissions($groupid=0) {
1701 return assignment_count_real_submissions($this->cm, $groupid);
1705 * Alerts teachers by email of new or changed assignments that need grading
1707 * First checks whether the option to email teachers is set for this assignment.
1708 * Sends an email to ALL teachers in the course (or in the group if using separate groups).
1709 * Uses the methods email_teachers_text() and email_teachers_html() to construct the content.
1713 * @param $submission object The submission that has changed
1716 function email_teachers($submission) {
1719 if (empty($this->assignment->emailteachers)) { // No need to do anything
1723 $user = $DB->get_record('user', array('id'=>$submission->userid));
1725 if ($teachers = $this->get_graders($user)) {
1727 $strassignments = get_string('modulenameplural', 'assignment');
1728 $strassignment = get_string('modulename', 'assignment');
1729 $strsubmitted = get_string('submitted', 'assignment');
1731 foreach ($teachers as $teacher) {
1732 $info = new stdClass();
1733 $info->username = fullname($user, true);
1734 $info->assignment = format_string($this->assignment->name,true);
1735 $info->url = $CFG->wwwroot.'/mod/assignment/submissions.php?id='.$this->cm->id;
1736 $info->timeupdated = strftime('%c',$submission->timemodified);
1738 $postsubject = $strsubmitted.': '.$info->username.' -> '.$this->assignment->name;
1739 $posttext = $this->email_teachers_text($info);
1740 $posthtml = ($teacher->mailformat == 1) ? $this->email_teachers_html($info) : '';
1742 $eventdata = new stdClass();
1743 $eventdata->modulename = 'assignment';
1744 $eventdata->userfrom = $user;
1745 $eventdata->userto = $teacher;
1746 $eventdata->subject = $postsubject;
1747 $eventdata->fullmessage = $posttext;
1748 $eventdata->fullmessageformat = FORMAT_PLAIN;
1749 $eventdata->fullmessagehtml = $posthtml;
1750 $eventdata->smallmessage = $postsubject;
1752 $eventdata->name = 'assignment_updates';
1753 $eventdata->component = 'mod_assignment';
1754 $eventdata->notification = 1;
1755 $eventdata->contexturl = $info->url;
1756 $eventdata->contexturlname = $info->assignment;
1758 message_send($eventdata);
1764 * @param string $filearea
1765 * @param array $args
1768 function send_file($filearea, $args) {
1769 debugging('plugin does not implement file sending', DEBUG_DEVELOPER);
1774 * Returns a list of teachers that should be grading given submission
1776 * @param object $user
1779 function get_graders($user) {
1781 $potgraders = get_users_by_capability($this->context, 'mod/assignment:grade', '', '', '', '', '', '', false, false);
1784 if (groups_get_activity_groupmode($this->cm) == SEPARATEGROUPS) { // Separate groups are being used
1785 if ($groups = groups_get_all_groups($this->course->id, $user->id)) { // Try to find all groups
1786 foreach ($groups as $group) {
1787 foreach ($potgraders as $t) {
1788 if ($t->id == $user->id) {
1789 continue; // do not send self
1791 if (groups_is_member($group->id, $t->id)) {
1792 $graders[$t->id] = $t;
1797 // user not in group, try to find graders without group
1798 foreach ($potgraders as $t) {
1799 if ($t->id == $user->id) {
1800 continue; // do not send self
1802 if (!groups_get_all_groups($this->course->id, $t->id)) { //ugly hack
1803 $graders[$t->id] = $t;
1808 foreach ($potgraders as $t) {
1809 if ($t->id == $user->id) {
1810 continue; // do not send self
1812 $graders[$t->id] = $t;
1819 * Creates the text content for emails to teachers
1821 * @param $info object The info used by the 'emailteachermail' language string
1824 function email_teachers_text($info) {
1825 $posttext = format_string($this->course->shortname).' -> '.$this->strassignments.' -> '.
1826 format_string($this->assignment->name)."\n";
1827 $posttext .= '---------------------------------------------------------------------'."\n";
1828 $posttext .= get_string("emailteachermail", "assignment", $info)."\n";
1829 $posttext .= "\n---------------------------------------------------------------------\n";
1834 * Creates the html content for emails to teachers
1836 * @param $info object The info used by the 'emailteachermailhtml' language string
1839 function email_teachers_html($info) {
1841 $posthtml = '<p><font face="sans-serif">'.
1842 '<a href="'.$CFG->wwwroot.'/course/view.php?id='.$this->course->id.'">'.format_string($this->course->shortname).'</a> ->'.
1843 '<a href="'.$CFG->wwwroot.'/mod/assignment/index.php?id='.$this->course->id.'">'.$this->strassignments.'</a> ->'.
1844 '<a href="'.$CFG->wwwroot.'/mod/assignment/view.php?id='.$this->cm->id.'">'.format_string($this->assignment->name).'</a></font></p>';
1845 $posthtml .= '<hr /><font face="sans-serif">';
1846 $posthtml .= '<p>'.get_string('emailteachermailhtml', 'assignment', $info).'</p>';
1847 $posthtml .= '</font><hr />';
1852 * Produces a list of links to the files uploaded by a user
1854 * @param $userid int optional id of the user. If 0 then $USER->id is used.
1855 * @param $return boolean optional defaults to false. If true the list is returned rather than printed
1856 * @return string optional
1858 function print_user_files($userid=0, $return=false) {
1859 global $CFG, $USER, $OUTPUT;
1862 if (!isloggedin()) {
1865 $userid = $USER->id;
1870 $submission = $this->get_submission($userid);
1875 $fs = get_file_storage();
1876 $files = $fs->get_area_files($this->context->id, 'mod_assignment', 'submission', $submission->id, "timemodified", false);
1877 if (!empty($files)) {
1878 require_once($CFG->dirroot . '/mod/assignment/locallib.php');
1879 if ($CFG->enableportfolios) {
1880 require_once($CFG->libdir.'/portfoliolib.php');
1881 $button = new portfolio_add_button();
1883 foreach ($files as $file) {
1884 $filename = $file->get_filename();
1885 $mimetype = $file->get_mimetype();
1886 $path = file_encode_url($CFG->wwwroot.'/pluginfile.php', '/'.$this->context->id.'/mod_assignment/submission/'.$submission->id.'/'.$filename);
1887 $output .= '<a href="'.$path.'" ><img src="'.$OUTPUT->pix_url(file_mimetype_icon($mimetype)).'" class="icon" alt="'.$mimetype.'" />'.s($filename).'</a>';
1888 if ($CFG->enableportfolios && $this->portfolio_exportable() && has_capability('mod/assignment:exportownsubmission', $this->context)) {
1889 $button->set_callback_options('assignment_portfolio_caller', array('id' => $this->cm->id, 'fileid' => $file->get_id()), '/mod/assignment/locallib.php');
1890 $button->set_format_by_file($file);
1891 $output .= $button->to_html(PORTFOLIO_ADD_ICON_LINK);
1893 $output .= plagiarism_get_links(array('userid'=>$userid, 'file'=>$file, 'cmid'=>$this->cm->id, 'course'=>$this->course, 'assignment'=>$this->assignment));
1894 $output .= '<br />';
1896 if ($CFG->enableportfolios && count($files) > 1 && $this->portfolio_exportable() && has_capability('mod/assignment:exportownsubmission', $this->context)) {
1897 $button->set_callback_options('assignment_portfolio_caller', array('id' => $this->cm->id), '/mod/assignment/locallib.php');
1898 $output .= '<br />' . $button->to_html();
1902 $output = '<div class="files">'.$output.'</div>';
1911 * Count the files uploaded by a given user
1913 * @param $itemid int The submission's id as the file's itemid.
1916 function count_user_files($itemid) {
1917 $fs = get_file_storage();
1918 $files = $fs->get_area_files($this->context->id, 'mod_assignment', 'submission', $itemid, "id", false);
1919 return count($files);
1923 * Returns true if the student is allowed to submit
1925 * Checks that the assignment has started and, if the option to prevent late
1926 * submissions is set, also checks that the assignment has not yet closed.
1931 if ($this->assignment->preventlate && $this->assignment->timedue) {
1932 return ($this->assignment->timeavailable <= $time && $time <= $this->assignment->timedue);
1934 return ($this->assignment->timeavailable <= $time);
1940 * Return true if is set description is hidden till available date
1942 * This is needed by calendar so that hidden descriptions do not
1943 * come up in upcoming events.
1945 * Check that description is hidden till available date
1946 * By default return false
1947 * Assignments types should implement this method if needed
1950 function description_is_hidden() {
1955 * Return an outline of the user's interaction with the assignment
1957 * The default method prints the grade and timemodified
1958 * @param $grade object
1959 * @return object with properties ->info and ->time
1961 function user_outline($grade) {
1963 $result = new stdClass();
1964 $result->info = get_string('grade').': '.$grade->str_long_grade;
1965 $result->time = $grade->dategraded;
1970 * Print complete information about the user's interaction with the assignment
1972 * @param $user object
1974 function user_complete($user, $grade=null) {
1977 echo $OUTPUT->container(get_string('grade').': '.$grade->str_long_grade);
1978 if ($grade->str_feedback) {
1979 echo $OUTPUT->container(get_string('feedback').': '.$grade->str_feedback);
1983 if ($submission = $this->get_submission($user->id)) {
1985 $fs = get_file_storage();
1987 if ($files = $fs->get_area_files($this->context->id, 'mod_assignment', 'submission', $submission->id, "timemodified", false)) {
1988 $countfiles = count($files)." ".get_string("uploadedfiles", "assignment");
1989 foreach ($files as $file) {
1990 $countfiles .= "; ".$file->get_filename();
1994 echo $OUTPUT->box_start();
1995 echo get_string("lastmodified").": ";
1996 echo userdate($submission->timemodified);
1997 echo $this->display_lateness($submission->timemodified);
1999 $this->print_user_files($user->id);
2003 $this->view_feedback($submission);
2005 echo $OUTPUT->box_end();
2008 print_string("notsubmittedyet", "assignment");
2013 * Return a string indicating how late a submission is
2015 * @param $timesubmitted int
2018 function display_lateness($timesubmitted) {
2019 return assignment_display_lateness($timesubmitted, $this->assignment->timedue);
2023 * Empty method stub for all delete actions.
2026 //nothing by default
2027 redirect('view.php?id='.$this->cm->id);
2031 * Empty custom feedback grading form.
2033 function custom_feedbackform($submission, $return=false) {
2034 //nothing by default
2039 * Add a get_coursemodule_info function in case any assignment type wants to add 'extra' information
2040 * for the course (see resource).
2042 * Given a course_module object, this function returns any "extra" information that may be needed
2043 * when printing this activity in a course listing. See get_array_of_activities() in course/lib.php.
2045 * @param $coursemodule object The coursemodule object (record).
2046 * @return object An object on information that the courses will know about (most noticeably, an icon).
2049 function get_coursemodule_info($coursemodule) {
2054 * Plugin cron method - do not use $this here, create new assignment instances if needed.
2058 //no plugin cron by default - override if needed
2062 * Reset all submissions
2064 function reset_userdata($data) {
2067 if (!$DB->count_records('assignment', array('course'=>$data->courseid, 'assignmenttype'=>$this->type))) {
2068 return array(); // no assignments of this type present
2071 $componentstr = get_string('modulenameplural', 'assignment');
2074 $typestr = get_string('type'.$this->type, 'assignment');
2075 // ugly hack to support pluggable assignment type titles...
2076 if($typestr === '[[type'.$this->type.']]'){
2077 $typestr = get_string('type'.$this->type, 'assignment_'.$this->type);
2080 if (!empty($data->reset_assignment_submissions)) {
2081 $assignmentssql = "SELECT a.id
2083 WHERE a.course=? AND a.assignmenttype=?";
2084 $params = array($data->courseid, $this->type);
2086 // now get rid of all submissions and responses
2087 $fs = get_file_storage();
2088 if ($assignments = $DB->get_records_sql($assignmentssql, $params)) {
2089 foreach ($assignments as $assignmentid=>$unused) {
2090 if (!$cm = get_coursemodule_from_instance('assignment', $assignmentid)) {
2093 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
2094 $fs->delete_area_files($context->id, 'mod_assignment', 'submission');
2095 $fs->delete_area_files($context->id, 'mod_assignment', 'response');
2099 $DB->delete_records_select('assignment_submissions', "assignment IN ($assignmentssql)", $params);
2101 $status[] = array('component'=>$componentstr, 'item'=>get_string('deleteallsubmissions','assignment').': '.$typestr, 'error'=>false);
2103 if (empty($data->reset_gradebook_grades)) {
2104 // remove all grades from gradebook
2105 assignment_reset_gradebook($data->courseid, $this->type);
2109 /// updating dates - shift may be negative too
2110 if ($data->timeshift) {
2111 shift_course_mod_dates('assignment', array('timedue', 'timeavailable'), $data->timeshift, $data->courseid);
2112 $status[] = array('component'=>$componentstr, 'item'=>get_string('datechanged').': '.$typestr, 'error'=>false);
2119 function portfolio_exportable() {
2124 * base implementation for backing up subtype specific information
2125 * for one single module
2127 * @param filehandle $bf file handle for xml file to write to
2128 * @param mixed $preferences the complete backup preference object
2134 static function backup_one_mod($bf, $preferences, $assignment) {
2139 * base implementation for backing up subtype specific information
2140 * for one single submission
2142 * @param filehandle $bf file handle for xml file to write to
2143 * @param mixed $preferences the complete backup preference object
2144 * @param object $submission the assignment submission db record
2150 static function backup_one_submission($bf, $preferences, $assignment, $submission) {
2155 * base implementation for restoring subtype specific information
2156 * for one single module
2158 * @param array $info the array representing the xml
2159 * @param object $restore the restore preferences
2165 static function restore_one_mod($info, $restore, $assignment) {
2170 * base implementation for restoring subtype specific information
2171 * for one single submission
2173 * @param object $submission the newly created submission
2174 * @param array $info the array representing the xml
2175 * @param object $restore the restore preferences
2181 static function restore_one_submission($info, $restore, $assignment, $submission) {
2185 } ////// End of the assignment_base class
2188 class mod_assignment_grading_form extends moodleform {
2190 function definition() {
2192 $mform =& $this->_form;
2194 $formattr = $mform->getAttributes();
2195 $formattr['id'] = 'submitform';
2196 $mform->setAttributes($formattr);
2198 $mform->addElement('hidden', 'offset', ($this->_customdata->offset+1));
2199 $mform->setType('offset', PARAM_INT);
2200 $mform->addElement('hidden', 'userid', $this->_customdata->userid);
2201 $mform->setType('userid', PARAM_INT);
2202 $mform->addElement('hidden', 'nextid', $this->_customdata->nextid);
2203 $mform->setType('nextid', PARAM_INT);
2204 $mform->addElement('hidden', 'id', $this->_customdata->cm->id);
2205 $mform->setType('id', PARAM_INT);
2206 $mform->addElement('hidden', 'sesskey', sesskey());
2207 $mform->setType('sesskey', PARAM_ALPHANUM);
2208 $mform->addElement('hidden', 'mode', 'grade');
2209 $mform->setType('mode', PARAM_TEXT);
2210 $mform->addElement('hidden', 'menuindex', "0");
2211 $mform->setType('menuindex', PARAM_INT);
2212 $mform->addElement('hidden', 'saveuserid', "-1");
2213 $mform->setType('saveuserid', PARAM_INT);
2214 $mform->addElement('hidden', 'filter', "0");
2215 $mform->setType('filter', PARAM_INT);
2217 $mform->addElement('static', 'picture', $OUTPUT->user_picture($this->_customdata->user),
2218 fullname($this->_customdata->user, true) . '<br/>' .
2219 userdate($this->_customdata->submission->timemodified) .
2220 $this->_customdata->lateness );
2222 $this->add_submission_content();
2223 $this->add_grades_section();
2225 $this->add_feedback_section();
2227 if ($this->_customdata->submission->timemarked) {
2228 $datestring = userdate($this->_customdata->submission->timemarked)." (".format_time(time() - $this->_customdata->submission->timemarked).")";
2229 $mform->addElement('header', 'Last Grade', get_string('lastgrade', 'assignment'));
2230 $mform->addElement('static', 'picture', $OUTPUT->user_picture($this->_customdata->teacher) ,
2231 fullname($this->_customdata->teacher,true).
2232 '<br/>'.$datestring);
2235 $this->add_action_buttons();
2239 function add_grades_section() {
2241 $mform =& $this->_form;
2242 $attributes = array();
2243 if ($this->_customdata->gradingdisabled) {
2244 $attributes['disabled'] ='disabled';
2247 $grademenu = make_grades_menu($this->_customdata->assignment->grade);
2248 $grademenu['-1'] = get_string('nograde');
2250 $mform->addElement('header', 'Grades', get_string('grades', 'grades'));
2251 $mform->addElement('select', 'xgrade', get_string('grade').':', $grademenu, $attributes);
2252 $mform->setDefault('xgrade', $this->_customdata->submission->grade ); //@fixme some bug when element called 'grade' makes it break
2253 $mform->setType('xgrade', PARAM_INT);
2255 if (!empty($this->_customdata->enableoutcomes)) {
2256 foreach($this->_customdata->grading_info->outcomes as $n=>$outcome) {
2257 $options = make_grades_menu(-$outcome->scaleid);
2258 if ($outcome->grades[$this->_customdata->submission->userid]->locked) {
2259 $options[0] = get_string('nooutcome', 'grades');
2260 echo $options[$outcome->grades[$this->_customdata->submission->userid]->grade];
2262 $options[''] = get_string('nooutcome', 'grades');
2263 $attributes = array('id' => 'menuoutcome_'.$n );
2264 $mform->addElement('select', 'outcome_'.$n.'['.$this->_customdata->userid.']', $outcome->name.':', $options, $attributes );
2265 $mform->setType('outcome_'.$n.'['.$this->_customdata->userid.']', PARAM_INT);
2266 $mform->setDefault('outcome_'.$n.'['.$this->_customdata->userid.']', $outcome->grades[$this->_customdata->submission->userid]->grade );
2270 $course_context = get_context_instance(CONTEXT_MODULE , $this->_customdata->cm->id);
2271 if (has_capability('gradereport/grader:view', $course_context) && has_capability('moodle/grade:viewall', $course_context)) {
2272 $grade = '<a href="'.$CFG->wwwroot.'/grade/report/grader/index.php?id='. $this->_customdata->courseid .'" >'.
2273 $this->_customdata->grading_info->items[0]->grades[$this->_customdata->userid]->str_grade . '</a>';
2275 $grade = $this->_customdata->grading_info->items[0]->grades[$this->_customdata->userid]->str_grade;
2277 $mform->addElement('static', 'finalgrade', get_string('currentgrade', 'assignment').':' ,$grade);
2278 $mform->setType('finalgrade', PARAM_INT);
2283 * @global core_renderer $OUTPUT
2285 function add_feedback_section() {
2287 $mform =& $this->_form;
2288 $mform->addElement('header', 'Feed Back', get_string('feedback', 'grades'));
2290 if ($this->_customdata->gradingdisabled) {
2291 $mform->addElement('static', 'disabledfeedback', $this->_customdata->grading_info->items[0]->grades[$this->_customdata->userid]->str_feedback );
2295 $mform->addElement('editor', 'submissioncomment_editor', get_string('feedback', 'assignment').':', null, $this->get_editor_options() );
2296 $mform->setType('submissioncomment_editor', PARAM_RAW); // to be cleaned before display
2297 $mform->setDefault('submissioncomment_editor', $this->_customdata->submission->submissioncomment);
2298 //$mform->addRule('submissioncomment', get_string('required'), 'required', null, 'client');
2299 switch ($this->_customdata->assignment->assignmenttype) {
2301 case 'uploadsingle' :
2302 $mform->addElement('filemanager', 'files_filemanager', get_string('responsefiles', 'assignment'). ':', null, $this->_customdata->fileui_options);
2307 $mform->addElement('hidden', 'mailinfo_h', "0");
2308 $mform->setType('mailinfo_h', PARAM_INT);
2309 $mform->addElement('checkbox', 'mailinfo',get_string('enablenotification','assignment').
2310 $OUTPUT->help_icon('enablenotification', 'assignment') .':' );
2311 $mform->setType('mailinfo', PARAM_INT);
2315 function add_action_buttons() {
2316 $mform =& $this->_form;
2317 //if there are more to be graded.
2318 if ($this->_customdata->nextid>0) {
2319 $buttonarray=array();
2320 $buttonarray[] = &$mform->createElement('submit', 'submitbutton', get_string('savechanges'));
2321 //@todo: fix accessibility: javascript dependency not necessary
2322 $buttonarray[] = &$mform->createElement('submit', 'saveandnext', get_string('saveandnext'));
2323 $buttonarray[] = &$mform->createElement('submit', 'next', get_string('next'));
2324 $buttonarray[] = &$mform->createElement('cancel');
2326 $buttonarray=array();
2327 $buttonarray[] = &$mform->createElement('submit', 'submitbutton', get_string('savechanges'));
2328 $buttonarray[] = &$mform->createElement('cancel');
2330 $mform->addGroup($buttonarray, 'grading_buttonar', '', array(' '), false);
2331 $mform->closeHeaderBefore('grading_buttonar');
2332 $mform->setType('grading_buttonar', PARAM_RAW);
2335 function add_submission_content() {
2336 $mform =& $this->_form;
2337 $mform->addElement('header', 'Submission', get_string('submission', 'assignment'));
2338 $mform->addElement('static', '', '' , $this->_customdata->submission_content );
2341 protected function get_editor_options() {
2342 $editoroptions = array();
2343 $editoroptions['component'] = 'mod_assignment';
2344 $editoroptions['filearea'] = 'feedback';
2345 $editoroptions['noclean'] = false;
2346 $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)
2347 $editoroptions['maxbytes'] = $this->_customdata->maxbytes;
2348 return $editoroptions;
2351 public function set_data($data) {
2352 $editoroptions = $this->get_editor_options();
2353 if (!isset($data->text)) {
2356 if (!isset($data->format)) {
2357 $data->textformat = FORMAT_HTML;
2359 $data->textformat = $data->format;
2362 if (!empty($this->_customdata->submission->id)) {
2363 $itemid = $this->_customdata->submission->id;
2368 switch ($this->_customdata->assignment->assignmenttype) {
2370 case 'uploadsingle' :
2371 $data = file_prepare_standard_filemanager($data, 'files', $editoroptions, $this->_customdata->context, 'mod_assignment', 'response', $itemid);
2377 $data = file_prepare_standard_editor($data, 'submissioncomment', $editoroptions, $this->_customdata->context, $editoroptions['component'], $editoroptions['filearea'], $itemid);
2378 return parent::set_data($data);
2381 public function get_data() {
2382 $data = parent::get_data();
2384 if (!empty($this->_customdata->submission->id)) {
2385 $itemid = $this->_customdata->submission->id;
2387 $itemid = null; //TODO: this is wrong, itemid MUST be known when saving files!! (skodak)
2391 $editoroptions = $this->get_editor_options();
2392 switch ($this->_customdata->assignment->assignmenttype) {
2394 case 'uploadsingle' :
2395 $data = file_postupdate_standard_filemanager($data, 'files', $editoroptions, $this->_customdata->context, 'mod_assignment', 'response', $itemid);
2400 $data = file_postupdate_standard_editor($data, 'submissioncomment', $editoroptions, $this->_customdata->context, $editoroptions['component'], $editoroptions['filearea'], $itemid);
2406 /// OTHER STANDARD FUNCTIONS ////////////////////////////////////////////////////////
2409 * Deletes an assignment instance
2411 * This is done by calling the delete_instance() method of the assignment type class
2413 function assignment_delete_instance($id){
2416 if (! $assignment = $DB->get_record('assignment', array('id'=>$id))) {
2420 // fall back to base class if plugin missing
2421 $classfile = "$CFG->dirroot/mod/assignment/type/$assignment->assignmenttype/assignment.class.php";
2422 if (file_exists($classfile)) {
2423 require_once($classfile);
2424 $assignmentclass = "assignment_$assignment->assignmenttype";
2427 debugging("Missing assignment plug-in: {$assignment->assignmenttype}. Using base class for deleting instead.");
2428 $assignmentclass = "assignment_base";
2431 $ass = new $assignmentclass();
2432 return $ass->delete_instance($assignment);
2437 * Updates an assignment instance
2439 * This is done by calling the update_instance() method of the assignment type class
2441 function assignment_update_instance($assignment){
2444 $assignment->assignmenttype = clean_param($assignment->assignmenttype, PARAM_SAFEDIR);
2446 require_once("$CFG->dirroot/mod/assignment/type/$assignment->assignmenttype/assignment.class.php");
2447 $assignmentclass = "assignment_$assignment->assignmenttype";
2448 $ass = new $assignmentclass();
2449 return $ass->update_instance($assignment);
2454 * Adds an assignment instance
2456 * This is done by calling the add_instance() method of the assignment type class
2458 function assignment_add_instance($assignment) {
2461 $assignment->assignmenttype = clean_param($assignment->assignmenttype, PARAM_SAFEDIR);
2463 require_once("$CFG->dirroot/mod/assignment/type/$assignment->assignmenttype/assignment.class.php");
2464 $assignmentclass = "assignment_$assignment->assignmenttype";
2465 $ass = new $assignmentclass();
2466 return $ass->add_instance($assignment);
2471 * Returns an outline of a user interaction with an assignment
2473 * This is done by calling the user_outline() method of the assignment type class
2475 function assignment_user_outline($course, $user, $mod, $assignment) {
2478 require_once("$CFG->libdir/gradelib.php");
2479 require_once("$CFG->dirroot/mod/assignment/type/$assignment->assignmenttype/assignment.class.php");
2480 $assignmentclass = "assignment_$assignment->assignmenttype";
2481 $ass = new $assignmentclass($mod->id, $assignment, $mod, $course);
2482 $grades = grade_get_grades($course->id, 'mod', 'assignment', $assignment->id, $user->id);
2483 if (!empty($grades->items[0]->grades)) {
2484 return $ass->user_outline(reset($grades->items[0]->grades));
2491 * Prints the complete info about a user's interaction with an assignment
2493 * This is done by calling the user_complete() method of the assignment type class
2495 function assignment_user_complete($course, $user, $mod, $assignment) {
2498 require_once("$CFG->libdir/gradelib.php");
2499 require_once("$CFG->dirroot/mod/assignment/type/$assignment->assignmenttype/assignment.class.php");
2500 $assignmentclass = "assignment_$assignment->assignmenttype";
2501 $ass = new $assignmentclass($mod->id, $assignment, $mod, $course);
2502 $grades = grade_get_grades($course->id, 'mod', 'assignment', $assignment->id, $user->id);
2503 if (empty($grades->items[0]->grades)) {
2506 $grade = reset($grades->items[0]->grades);
2508 return $ass->user_complete($user, $grade);
2512 * Function to be run periodically according to the moodle cron
2514 * Finds all assignment notifications that have yet to be mailed out, and mails them
2516 function assignment_cron () {
2517 global $CFG, $USER, $DB;
2519 /// first execute all crons in plugins
2520 if ($plugins = get_plugin_list('assignment')) {
2521 foreach ($plugins as $plugin=>$dir) {
2522 require_once("$dir/assignment.class.php");
2523 $assignmentclass = "assignment_$plugin";
2524 $ass = new $assignmentclass();
2529 /// Notices older than 1 day will not be mailed. This is to avoid the problem where
2530 /// cron has not been running for a long time, and then suddenly people are flooded
2531 /// with mail from the past few weeks or months
2534 $endtime = $timenow - $CFG->maxeditingtime;
2535 $starttime = $endtime - 24 * 3600; /// One day earlier
2537 if ($submissions = assignment_get_unmailed_submissions($starttime, $endtime)) {
2539 $realuser = clone($USER);
2541 foreach ($submissions as $key => $submission) {
2542 $DB->set_field("assignment_submissions", "mailed", "1", array("id"=>$submission->id));
2547 foreach ($submissions as $submission) {
2549 echo "Processing assignment submission $submission->id\n";
2551 if (! $user = $DB->get_record("user", array("id"=>$submission->userid))) {
2552 echo "Could not find user $user->id\n";
2556 if (! $course = $DB->get_record("course", array("id"=>$submission->course))) {
2557 echo "Could not find course $submission->course\n";
2561 /// Override the language and timezone of the "current" user, so that
2562 /// mail is customised for the receiver.
2563 cron_setup_user($user, $course);
2565 if (!is_enrolled(get_context_instance(CONTEXT_COURSE, $submission->course), $user->id)) {
2566 echo fullname($user)." not an active participant in " . format_string($course->shortname) . "\n";
2570 if (! $teacher = $DB->get_record("user", array("id"=>$submission->teacher))) {
2571 echo "Could not find teacher $submission->teacher\n";
2575 if (! $mod = get_coursemodule_from_instance("assignment", $submission->assignment, $course->id)) {
2576 echo "Could not find course module for assignment id $submission->assignment\n";
2580 if (! $mod->visible) { /// Hold mail notification for hidden assignments until later
2584 $strassignments = get_string("modulenameplural", "assignment");
2585 $strassignment = get_string("modulename", "assignment");
2587 $assignmentinfo = new stdClass();
2588 $assignmentinfo->teacher = fullname($teacher);
2589 $assignmentinfo->assignment = format_string($submission->name,true);
2590 $assignmentinfo->url = "$CFG->wwwroot/mod/assignment/view.php?id=$mod->id";
2592 $postsubject = "$course->shortname: $strassignments: ".format_string($submission->name,true);
2593 $posttext = "$course->shortname -> $strassignments -> ".format_string($submission->name,true)."\n";
2594 $posttext .= "---------------------------------------------------------------------\n";
2595 $posttext .= get_string("assignmentmail", "assignment", $assignmentinfo)."\n";
2596 $posttext .= "---------------------------------------------------------------------\n";
2598 if ($user->mailformat == 1) { // HTML
2599 $posthtml = "<p><font face=\"sans-serif\">".
2600 "<a href=\"$CFG->wwwroot/course/view.php?id=$course->id\">$course->shortname</a> ->".
2601 "<a href=\"$CFG->wwwroot/mod/assignment/index.php?id=$course->id\">$strassignments</a> ->".
2602 "<a href=\"$CFG->wwwroot/mod/assignment/view.php?id=$mod->id\">".format_string($submission->name,true)."</a></font></p>";
2603 $posthtml .= "<hr /><font face=\"sans-serif\">";
2604 $posthtml .= "<p>".get_string("assignmentmailhtml", "assignment", $assignmentinfo)."</p>";
2605 $posthtml .= "</font><hr />";
2610 $eventdata = new stdClass();
2611 $eventdata->modulename = 'assignment';
2612 $eventdata->userfrom = $teacher;
2613 $eventdata->userto = $user;
2614 $eventdata->subject = $postsubject;
2615 $eventdata->fullmessage = $posttext;
2616 $eventdata->fullmessageformat = FORMAT_PLAIN;
2617 $eventdata->fullmessagehtml = $posthtml;
2618 $eventdata->smallmessage = get_string('assignmentmailsmall', 'assignment', $assignmentinfo);
2620 $eventdata->name = 'assignment_updates';
2621 $eventdata->component = 'mod_assignment';
2622 $eventdata->notification = 1;
2623 $eventdata->contexturl = $assignmentinfo->url;
2624 $eventdata->contexturlname = $assignmentinfo->assignment;
2626 message_send($eventdata);
2636 * Return grade for given user or all users.
2638 * @param int $assignmentid id of assignment
2639 * @param int $userid optional user id, 0 means all users
2640 * @return array array of grades, false if none
2642 function assignment_get_user_grades($assignment, $userid=0) {
2646 $user = "AND u.id = :userid";
2647 $params = array('userid'=>$userid);
2651 $params['aid'] = $assignment->id;
2653 $sql = "SELECT u.id, u.id AS userid, s.grade AS rawgrade, s.submissioncomment AS feedback, s.format AS feedbackformat,
2654 s.teacher AS usermodified, s.timemarked AS dategraded, s.timemodified AS datesubmitted
2655 FROM {user} u, {assignment_submissions} s
2656 WHERE u.id = s.userid AND s.assignment = :aid
2659 return $DB->get_records_sql($sql, $params);
2663 * Update activity grades
2665 * @param object $assignment
2666 * @param int $userid specific user only, 0 means all
2668 function assignment_update_grades($assignment, $userid=0, $nullifnone=true) {
2670 require_once($CFG->libdir.'/gradelib.php');
2672 if ($assignment->grade == 0) {
2673 assignment_grade_item_update($assignment);
2675 } else if ($grades = assignment_get_user_grades($assignment, $userid)) {
2676 foreach($grades as $k=>$v) {
2677 if ($v->rawgrade == -1) {
2678 $grades[$k]->rawgrade = null;
2681 assignment_grade_item_update($assignment, $grades);
2684 assignment_grade_item_update($assignment);
2689 * Update all grades in gradebook.
2691 function assignment_upgrade_grades() {
2694 $sql = "SELECT COUNT('x')
2695 FROM {assignment} a, {course_modules} cm, {modules} m
2696 WHERE m.name='assignment' AND m.id=cm.module AND cm.instance=a.id";
2697 $count = $DB->count_records_sql($sql);
2699 $sql = "SELECT a.*, cm.idnumber AS cmidnumber, a.course AS courseid
2700 FROM {assignment} a, {course_modules} cm, {modules} m
2701 WHERE m.name='assignment' AND m.id=cm.module AND cm.instance=a.id";
2702 $rs = $DB->get_recordset_sql($sql);
2704 // too much debug output
2705 $pbar = new progress_bar('assignmentupgradegrades', 500, true);
2707 foreach ($rs as $assignment) {
2709 upgrade_set_timeout(60*5); // set up timeout, may also abort execution
2710 assignment_update_grades($assignment);
2711 $pbar->update($i, $count, "Updating Assignment grades ($i/$count).");
2713 upgrade_set_timeout(); // reset to default timeout
2719 * Create grade item for given assignment
2721 * @param object $assignment object with extra cmidnumber
2722 * @param mixed optional array/object of grade(s); 'reset' means reset grades in gradebook
2723 * @return int 0 if ok, error code otherwise
2725 function assignment_grade_item_update($assignment, $grades=NULL) {
2727 require_once($CFG->libdir.'/gradelib.php');
2729 if (!isset($assignment->courseid)) {
2730 $assignment->courseid = $assignment->course;
2733 $params = array('itemname'=>$assignment->name, 'idnumber'=>$assignment->cmidnumber);
2735 if ($assignment->grade > 0) {
2736 $params['gradetype'] = GRADE_TYPE_VALUE;
2737 $params['grademax'] = $assignment->grade;
2738 $params['grademin'] = 0;
2740 } else if ($assignment->grade < 0) {
2741 $params['gradetype'] = GRADE_TYPE_SCALE;
2742 $params['scaleid'] = -$assignment->grade;
2745 $params['gradetype'] = GRADE_TYPE_TEXT; // allow text comments only
2748 if ($grades === 'reset') {
2749 $params['reset'] = true;
2753 return grade_update('mod/assignment', $assignment->courseid, 'mod', 'assignment', $assignment->id, 0, $grades, $params);
2757 * Delete grade item for given assignment
2759 * @param object $assignment object
2760 * @return object assignment
2762 function assignment_grade_item_delete($assignment) {
2764 require_once($CFG->libdir.'/gradelib.php');
2766 if (!isset($assignment->courseid)) {
2767 $assignment->courseid = $assignment->course;
2770 return grade_update('mod/assignment', $assignment->courseid, 'mod', 'assignment', $assignment->id, 0, NULL, array('deleted'=>1));
2774 * Returns the users with data in one assignment (students and teachers)
2776 * @todo: deprecated - to be deleted in 2.2
2778 * @param $assignmentid int
2779 * @return array of user objects
2781 function assignment_get_participants($assignmentid) {
2785 $students = $DB->get_records_sql("SELECT DISTINCT u.id, u.id
2787 {assignment_submissions} a
2788 WHERE a.assignment = ? and
2789 u.id = a.userid", array($assignmentid));
2791 $teachers = $DB->get_records_sql("SELECT DISTINCT u.id, u.id
2793 {assignment_submissions} a
2794 WHERE a.assignment = ? and
2795 u.id = a.teacher", array($assignmentid));
2797 //Add teachers to students
2799 foreach ($teachers as $teacher) {
2800 $students[$teacher->id] = $teacher;
2803 //Return students array (it contains an array of unique users)
2808 * Serves assignment submissions and other files.
2810 * @param object $course
2812 * @param object $context
2813 * @param string $filearea
2814 * @param array $args
2815 * @param bool $forcedownload
2816 * @return bool false if file not found, does not return if found - just send the file
2818 function assignment_pluginfile($course, $cm, $context, $filearea, $args, $forcedownload) {
2821 if ($context->contextlevel != CONTEXT_MODULE) {
2825 require_login($course, false, $cm);
2827 if (!$assignment = $DB->get_record('assignment', array('id'=>$cm->instance))) {
2831 require_once($CFG->dirroot.'/mod/assignment/type/'.$assignment->assignmenttype.'/assignment.class.php');
2832 $assignmentclass = 'assignment_'.$assignment->assignmenttype;
2833 $assignmentinstance = new $assignmentclass($cm->id, $assignment, $cm, $course);
2835 return $assignmentinstance->send_file($filearea, $args);
2838 * Checks if a scale is being used by an assignment
2840 * This is used by the backup code to decide whether to back up a scale
2841 * @param $assignmentid int
2842 * @param $scaleid int
2843 * @return boolean True if the scale is used by the assignment
2845 function assignment_scale_used($assignmentid, $scaleid) {
2850 $rec = $DB->get_record('assignment', array('id'=>$assignmentid,'grade'=>-$scaleid));
2852 if (!empty($rec) && !empty($scaleid)) {
2860 * Checks if scale is being used by any instance of assignment
2862 * This is used to find out if scale used anywhere
2863 * @param $scaleid int
2864 * @return boolean True if the scale is used by any assignment
2866 function assignment_scale_used_anywhere($scaleid) {
2869 if ($scaleid and $DB->record_exists('assignment', array('grade'=>-$scaleid))) {
2877 * Make sure up-to-date events are created for all assignment instances
2879 * This standard function will check all instances of this module
2880 * and make sure there are up-to-date events created for each of them.
2881 * If courseid = 0, then every assignment event in the site is checked, else
2882 * only assignment events belonging to the course specified are checked.
2883 * This function is used, in its new format, by restore_refresh_events()
2885 * @param $courseid int optional If zero then all assignments for all courses are covered
2886 * @return boolean Always returns true
2888 function assignment_refresh_events($courseid = 0) {
2891 if ($courseid == 0) {
2892 if (! $assignments = $DB->get_records("assignment")) {
2896 if (! $assignments = $DB->get_records("assignment", array("course"=>$courseid))) {
2900 $moduleid = $DB->get_field('modules', 'id', array('name'=>'assignment'));
2902 foreach ($assignments as $assignment) {
2903 $cm = get_coursemodule_from_id('assignment', $assignment->id);
2904 $event = new stdClass();
2905 $event->name = $assignment->name;
2906 $event->description = format_module_intro('assignment', $assignment, $cm->id);
2907 $event->timestart = $assignment->timedue;
2909 if ($event->id = $DB->get_field('event', 'id', array('modulename'=>'assignment', 'instance'=>$assignment->id))) {
2910 update_event($event);
2913 $event->courseid = $assignment->course;
2914 $event->groupid = 0;
2916 $event->modulename = 'assignment';
2917 $event->instance = $assignment->id;
2918 $event->eventtype = 'due';
2919 $event->timeduration = 0;
2920 $event->visible = $DB->get_field('course_modules', 'visible', array('module'=>$moduleid, 'instance'=>$assignment->id));
2929 * Print recent activity from all assignments in a given course
2931 * This is used by the recent activity block
2933 function assignment_print_recent_activity($course, $viewfullnames, $timestart) {
2934 global $CFG, $USER, $DB, $OUTPUT;
2936 // do not use log table if possible, it may be huge
2938 if (!$submissions = $DB->get_records_sql("SELECT asb.id, asb.timemodified, cm.id AS cmid, asb.userid,
2939 u.firstname, u.lastname, u.email, u.picture
2940 FROM {assignment_submissions} asb
2941 JOIN {assignment} a ON a.id = asb.assignment
2942 JOIN {course_modules} cm ON cm.instance = a.id
2943 JOIN {modules} md ON md.id = cm.module
2944 JOIN {user} u ON u.id = asb.userid
2945 WHERE asb.timemodified > ? AND
2947 md.name = 'assignment'
2948 ORDER BY asb.timemodified ASC", array($timestart, $course->id))) {
2952 $modinfo =& get_fast_modinfo($course); // reference needed because we might load the groups
2956 foreach($submissions as $submission) {
2957 if (!array_key_exists($submission->cmid, $modinfo->cms)) {
2960 $cm = $modinfo->cms[$submission->cmid];
2961 if (!$cm->uservisible) {
2964 if ($submission->userid == $USER->id) {
2965 $show[] = $submission;
2969 // the act of sumbitting of assignment may be considered private - only graders will see it if specified
2970 if (empty($CFG->assignment_showrecentsubmissions)) {
2971 if (!array_key_exists($cm->id, $grader)) {
2972 $grader[$cm->id] = has_capability('moodle/grade:viewall', get_context_instance(CONTEXT_MODULE, $cm->id));
2974 if (!$grader[$cm->id]) {
2979 $groupmode = groups_get_activity_groupmode($cm, $course);
2981 if ($groupmode == SEPARATEGROUPS and !has_capability('moodle/site:accessallgroups', get_context_instance(CONTEXT_MODULE, $cm->id))) {
2982 if (isguestuser()) {
2983 // shortcut - guest user does not belong into any group
2987 if (is_null($modinfo->groups)) {
2988 $modinfo->groups = groups_get_user_groups($course->id); // load all my groups and cache it in modinfo
2991 // this will be slow - show only users that share group with me in this cm
2992 if (empty($modinfo->groups[$cm->id])) {
2995 $usersgroups = groups_get_all_groups($course->id, $submission->userid, $cm->groupingid);
2996 if (is_array($usersgroups)) {
2997 $usersgroups = array_keys($usersgroups);
2998 $intersect = array_intersect($usersgroups, $modinfo->groups[$cm->id]);
2999 if (empty($intersect)) {
3004 $show[] = $submission;
3011 echo $OUTPUT->heading(get_string('newsubmissions', 'assignment').':', 3);
3013 foreach ($show as $submission) {
3014 $cm = $modinfo->cms[$submission->cmid];
3015 $link = $CFG->wwwroot.'/mod/assignment/view.php?id='.$cm->id;
3016 print_recent_activity_note($submission->timemodified, $submission, $cm->name, $link, false, $viewfullnames);
3024 * Returns all assignments since a given time in specified forum.
3026 function assignment_get_recent_mod_activity(&$activities, &$index, $timestart, $courseid, $cmid, $userid=0, $groupid=0) {
3027 global $CFG, $COURSE, $USER, $DB;
3029 if ($COURSE->id == $courseid) {
3032 $course = $DB->get_record('course', array('id'=>$courseid));
3035 $modinfo =& get_fast_modinfo($course);
3037 $cm = $modinfo->cms[$cmid];
3041 $userselect = "AND u.id = :userid";
3042 $params['userid'] = $userid;
3048 $groupselect = "AND gm.groupid = :groupid";
3049 $groupjoin = "JOIN {groups_members} gm ON gm.userid=u.id";
3050 $params['groupid'] = $groupid;
3056 $params['cminstance'] = $cm->instance;
3057 $params['timestart'] = $timestart;
3059 $userfields = user_picture::fields('u', null, 'userid');
3061 if (!$submissions = $DB->get_records_sql("SELECT asb.id, asb.timemodified,
3063 FROM {assignment_submissions} asb
3064 JOIN {assignment} a ON a.id = asb.assignment
3065 JOIN {user} u ON u.id = asb.userid
3067 WHERE asb.timemodified > :timestart AND a.id = :cminstance
3068 $userselect $groupselect
3069 ORDER BY asb.timemodified ASC", $params)) {
3073 $groupmode = groups_get_activity_groupmode($cm, $course);
3074 $cm_context = get_context_instance(CONTEXT_MODULE, $cm->id);
3075 $grader = has_capability('moodle/grade:viewall', $cm_context);
3076 $accessallgroups = has_capability('moodle/site:accessallgroups', $cm_context);
3077 $viewfullnames = has_capability('moodle/site:viewfullnames', $cm_context);
3079 if (is_null($modinfo->groups)) {
3080 $modinfo->groups = groups_get_user_groups($course->id); // load all my groups and cache it in modinfo
3085 foreach($submissions as $submission) {
3086 if ($submission->userid == $USER->id) {
3087 $show[] = $submission;
3090 // the act of submitting of assignment may be considered private - only graders will see it if specified
3091 if (empty($CFG->assignment_showrecentsubmissions)) {
3097 if ($groupmode == SEPARATEGROUPS and !$accessallgroups) {
3098 if (isguestuser()) {
3099 // shortcut - guest user does not belong into any group
3103 // this will be slow - show only users that share group with me in this cm
3104 if (empty($modinfo->groups[$cm->id])) {
3107 $usersgroups = groups_get_all_groups($course->id, $cm->userid, $cm->groupingid);
3108 if (is_array($usersgroups)) {
3109 $usersgroups = array_keys($usersgroups);
3110 $intersect = array_intersect($usersgroups, $modinfo->groups[$cm->id]);
3111 if (empty($intersect)) {
3116 $show[] = $submission;
3124 require_once($CFG->libdir.'/gradelib.php');
3126 foreach ($show as $id=>$submission) {
3127 $userids[] = $submission->userid;
3130 $grades = grade_get_grades($courseid, 'mod', 'assignment', $cm->instance, $userids);
3133 $aname = format_string($cm->name,true);
3134 foreach ($show as $submission) {
3135 $tmpactivity = new stdClass();
3137 $tmpactivity->type = 'assignment';
3138 $tmpactivity->cmid = $cm->id;
3139 $tmpactivity->name = $aname;
3140 $tmpactivity->sectionnum = $cm->sectionnum;
3141 $tmpactivity->timestamp = $submission->timemodified;
3144 $tmpactivity->grade = $grades->items[0]->grades[$submission->userid]->str_long_grade;
3147 $userfields = explode(',', user_picture::fields());
3148 foreach ($userfields as $userfield) {
3149 if ($userfield == 'id') {
3150 $tmpactivity->user->{$userfield} = $submission->userid; // aliased in SQL above
3152 $tmpactivity->user->{$userfield} = $submission->{$userfield};
3155 $tmpactivity->user->fullname = fullname($submission, $viewfullnames);
3157 $activities[$index++] = $tmpactivity;
3164 * Print recent activity from all assignments in a given course
3166 * This is used by course/recent.php
3168 function assignment_print_recent_mod_activity($activity, $courseid, $detail, $modnames) {
3169 global $CFG, $OUTPUT;
3171 echo '<table border="0" cellpadding="3" cellspacing="0" class="assignment-recent">';
3173 echo "<tr><td class=\"userpicture\" valign=\"top\">";
3174 echo $OUTPUT->user_picture($activity->user);
3178 $modname = $modnames[$activity->type];
3179 echo '<div class="title">';
3180 echo "<img src=\"" . $OUTPUT->pix_url('icon', 'assignment') . "\" ".
3181 "class=\"icon\" alt=\"$modname\">";
3182 echo "<a href=\"$CFG->wwwroot/mod/assignment/view.php?id={$activity->cmid}\">{$activity->name}</a>";
3186 if (isset($activity->grade)) {
3187 echo '<div class="grade">';
3188 echo get_string('grade').': ';
3189 echo $activity->grade;
3193 echo '<div class="user">';
3194 echo "<a href=\"$CFG->wwwroot/user/view.php?id={$activity->user->id}&course=$courseid\">"
3195 ."{$activity->user->fullname}</a> - ".userdate($activity->timestamp);
3198 echo "</td></tr></table>";
3201 /// GENERIC SQL FUNCTIONS
3204 * Fetch info from logs
3206 * @param $log object with properties ->info (the assignment id) and ->userid
3207 * @return array with assignment name and user firstname and lastname
3209 function assignment_log_info($log) {
3212 return $DB->get_record_sql("SELECT a.name, u.firstname, u.lastname
3213 FROM {assignment} a, {user} u
3214 WHERE a.id = ? AND u.id = ?", array($log->info, $log->userid));
3218 * Return list of marked submissions that have not been mailed out for currently enrolled students
3222 function assignment_get_unmailed_submissions($starttime, $endtime) {
3225 return $DB->get_records_sql("SELECT s.*, a.course, a.name
3226 FROM {assignment_submissions} s,
3229 AND s.timemarked <= ?
3230 AND s.timemarked >= ?
3231 AND s.assignment = a.id", array($endtime, $starttime));
3235 * Counts all real assignment submissions by ENROLLED students (not empty ones)
3237 * There are also assignment type methods count_real_submissions() which in the default
3238 * implementation simply call this function.
3239 * @param $groupid int optional If nonzero then count is restricted to this group
3240 * @return int The number of submissions
3242 function assignment_count_real_submissions($cm, $groupid=0) {
3245 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
3247 // this is all the users with this capability set, in this context or higher
3248 if ($users = get_enrolled_users($context, 'mod/assignment:view', $groupid, 'u.id')) {
3249 $users = array_keys($users);
3252 // if groupmembersonly used, remove users who are not in any group
3253 if ($users and !empty($CFG->enablegroupmembersonly) and $cm->groupmembersonly) {
3254 if ($groupingusers = groups_get_grouping_members($cm->groupingid, 'u.id', 'u.id')) {
3255 $users = array_intersect($users, array_keys($groupingusers));
3259 if (empty($users)) {
3263 $userlists = implode(',', $users);
3265 return $DB->count_records_sql("SELECT COUNT('x')
3266 FROM {assignment_submissions}
3267 WHERE assignment = ? AND
3268 timemodified > 0 AND
3269 userid IN ($userlists)", array($cm->instance));
3274 * Return all assignment submissions by ENROLLED students (even empty)
3276 * There are also assignment type methods get_submissions() wich in the default
3277 * implementation simply call this function.
3278 * @param $sort string optional field names for the ORDER BY in the sql query
3279 * @param $dir string optional specifying the sort direction, defaults to DESC
3280 * @return array The submission objects indexed by id
3282 function assignment_get_all_submissions($assignment, $sort="", $dir="DESC") {
3283 /// Return all assignment submissions by ENROLLED students (even empty)
3286 if ($sort == "lastname" or $sort == "firstname") {
3287 $sort = "u.$sort $dir";
3288 } else if (empty($sort)) {
3289 $sort = "a.timemodified DESC";
3291 $sort = "a.$sort $dir";
3294 /* not sure this is needed at all since assignment already has a course define, so this join?
3295 $select = "s.course = '$assignment->course' AND";
3296 if ($assignment->course == SITEID) {
3300 return $DB->get_records_sql("SELECT a.*
3301 FROM {assignment_submissions} a, {user} u
3302 WHERE u.id = a.userid
3303 AND a.assignment = ?
3304 ORDER BY $sort", array($assignment->id));
3309 * Add a get_coursemodule_info function in case any assignment type wants to add 'extra' information
3310 * for the course (see resource).
3312 * Given a course_module object, this function returns any "extra" information that may be needed
3313 * when printing this activity in a course listing. See get_array_of_activities() in course/lib.php.
3315 * @param $coursemodule object The coursemodule object (record).
3316 * @return object An object on information that the courses will know about (most noticeably, an icon).
3319 function assignment_get_coursemodule_info($coursemodule) {
3322 if (! $assignment = $DB->get_record('assignment', array('id'=>$coursemodule->instance), 'id, assignmenttype, name')) {
3326 $libfile = "$CFG->dirroot/mod/assignment/type/$assignment->assignmenttype/assignment.class.php";
3328 if (file_exists($libfile)) {
3329 require_once($libfile);
3330 $assignmentclass = "assignment_$assignment->assignmenttype";
3331 $ass = new $assignmentclass('staticonly');
3332 if ($result = $ass->get_coursemodule_info($coursemodule)) {
3335 $info = new stdClass();
3336 $info->name = $assignment->name;
3341 debugging('Incorrect assignment type: '.$assignment->assignmenttype);
3348 /// OTHER GENERAL FUNCTIONS FOR ASSIGNMENTS ///////////////////////////////////////
3351 * Returns an array of installed assignment types indexed and sorted by name