2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * This file contains the definition for the class assignment
20 * This class provides all the functionality for the new assign module.
23 * @copyright 2012 NetSpot {@link http://www.netspot.com.au}
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 defined('MOODLE_INTERNAL') || die();
29 // Assignment submission statuses.
30 define('ASSIGN_SUBMISSION_STATUS_DRAFT', 'draft');
31 define('ASSIGN_SUBMISSION_STATUS_SUBMITTED', 'submitted');
33 // Search filters for grading page.
34 define('ASSIGN_FILTER_SUBMITTED', 'submitted');
35 define('ASSIGN_FILTER_SINGLE_USER', 'singleuser');
36 define('ASSIGN_FILTER_REQUIRE_GRADING', 'require_grading');
38 require_once($CFG->libdir . '/accesslib.php');
39 require_once($CFG->libdir . '/formslib.php');
40 require_once($CFG->dirroot . '/repository/lib.php');
41 require_once($CFG->dirroot . '/mod/assign/mod_form.php');
42 require_once($CFG->libdir . '/gradelib.php');
43 require_once($CFG->dirroot . '/grade/grading/lib.php');
44 require_once($CFG->dirroot . '/mod/assign/feedbackplugin.php');
45 require_once($CFG->dirroot . '/mod/assign/submissionplugin.php');
46 require_once($CFG->dirroot . '/mod/assign/renderable.php');
47 require_once($CFG->dirroot . '/mod/assign/gradingtable.php');
48 require_once($CFG->libdir . '/eventslib.php');
49 require_once($CFG->libdir . '/portfolio/caller.php');
52 * Standard base class for mod_assign (assignment types).
55 * @copyright 2012 NetSpot {@link http://www.netspot.com.au}
56 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
60 /** @var stdClass the assignment record that contains the global settings for this assign instance */
63 /** @var context the context of the course module for this assign instance
64 * (or just the course if we are creating a new one)
68 /** @var stdClass the course this assign instance belongs to */
71 /** @var stdClass the admin config for all assign instances */
74 /** @var assign_renderer the custom renderer for this module */
77 /** @var stdClass the course module for this assign instance */
78 private $coursemodule;
80 /** @var array cache for things like the coursemodule name or the scale menu -
81 * only lives for a single request.
85 /** @var array list of the installed submission plugins */
86 private $submissionplugins;
88 /** @var array list of the installed feedback plugins */
89 private $feedbackplugins;
91 /** @var string action to be used to return to this page
92 * (without repeating any form submissions etc).
94 private $returnaction = 'view';
96 /** @var array params to be used to return to this page */
97 private $returnparams = array();
99 /** @var string modulename prevents excessive calls to get_string */
100 private static $modulename = null;
102 /** @var string modulenameplural prevents excessive calls to get_string */
103 private static $modulenameplural = null;
106 * Constructor for the base assign class.
108 * @param mixed $coursemodulecontext context|null the course module context
109 * (or the course context if the coursemodule has not been
111 * @param mixed $coursemodule the current course module if it was already loaded,
112 * otherwise this class will load one from the context as required.
113 * @param mixed $course the current course if it was already loaded,
114 * otherwise this class will load one from the context as required.
116 public function __construct($coursemodulecontext, $coursemodule, $course) {
119 $this->context = $coursemodulecontext;
120 $this->coursemodule = $coursemodule;
121 $this->course = $course;
123 // Temporary cache only lives for a single request - used to reduce db lookups.
124 $this->cache = array();
126 $this->submissionplugins = $this->load_plugins('assignsubmission');
127 $this->feedbackplugins = $this->load_plugins('assignfeedback');
131 * Set the action and parameters that can be used to return to the current page.
133 * @param string $action The action for the current page
134 * @param array $params An array of name value pairs which form the parameters
135 * to return to the current page.
138 public function register_return_link($action, $params) {
139 $this->returnaction = $action;
140 $this->returnparams = $params;
144 * Return an action that can be used to get back to the current page.
146 * @return string action
148 public function get_return_action() {
149 return $this->returnaction;
153 * Based on the current assignment settings should we display the intro.
155 * @return bool showintro
157 protected function show_intro() {
158 if ($this->get_instance()->alwaysshowdescription ||
159 time() > $this->get_instance()->allowsubmissionsfromdate) {
166 * Return a list of parameters that can be used to get back to the current page.
168 * @return array params
170 public function get_return_params() {
171 return $this->returnparams;
175 * Set the submitted form data.
177 * @param stdClass $data The form data (instance)
179 public function set_instance(stdClass $data) {
180 $this->instance = $data;
186 * @param context $context The new context
188 public function set_context(context $context) {
189 $this->context = $context;
193 * Set the course data.
195 * @param stdClass $course The course data
197 public function set_course(stdClass $course) {
198 $this->course = $course;
202 * Get list of feedback plugins installed.
206 public function get_feedback_plugins() {
207 return $this->feedbackplugins;
211 * Get list of submission plugins installed.
215 public function get_submission_plugins() {
216 return $this->submissionplugins;
220 * Is blind marking enabled and reveal identities not set yet?
224 public function is_blind_marking() {
225 return $this->get_instance()->blindmarking && !$this->get_instance()->revealidentities;
229 * Does an assignment have submission(s) or grade(s) already?
233 public function has_submissions_or_grades() {
234 $allgrades = $this->count_grades();
235 $allsubmissions = $this->count_submissions();
236 if (($allgrades == 0) && ($allsubmissions == 0)) {
243 * Get a specific submission plugin by its type.
245 * @param string $subtype assignsubmission | assignfeedback
246 * @param string $type
247 * @return mixed assign_plugin|null
249 public function get_plugin_by_type($subtype, $type) {
250 $shortsubtype = substr($subtype, strlen('assign'));
251 $name = $shortsubtype . 'plugins';
252 if ($name != 'feedbackplugins' && $name != 'submissionplugins') {
255 $pluginlist = $this->$name;
256 foreach ($pluginlist as $plugin) {
257 if ($plugin->get_type() == $type) {
265 * Get a feedback plugin by type.
267 * @param string $type - The type of plugin e.g comments
268 * @return mixed assign_feedback_plugin|null
270 public function get_feedback_plugin_by_type($type) {
271 return $this->get_plugin_by_type('assignfeedback', $type);
275 * Get a submission plugin by type.
277 * @param string $type - The type of plugin e.g comments
278 * @return mixed assign_submission_plugin|null
280 public function get_submission_plugin_by_type($type) {
281 return $this->get_plugin_by_type('assignsubmission', $type);
285 * Load the plugins from the sub folders under subtype.
287 * @param string $subtype - either submission or feedback
288 * @return array - The sorted list of plugins
290 protected function load_plugins($subtype) {
294 $names = get_plugin_list($subtype);
296 foreach ($names as $name => $path) {
297 if (file_exists($path . '/locallib.php')) {
298 require_once($path . '/locallib.php');
300 $shortsubtype = substr($subtype, strlen('assign'));
301 $pluginclass = 'assign_' . $shortsubtype . '_' . $name;
303 $plugin = new $pluginclass($this, $name);
305 if ($plugin instanceof assign_plugin) {
306 $idx = $plugin->get_sort_order();
307 while (array_key_exists($idx, $result)) {
310 $result[$idx] = $plugin;
319 * Display the assignment, used by view.php
321 * The assignment is displayed differently depending on your role,
322 * the settings for the assignment and the status of the assignment.
324 * @param string $action The current action if any.
327 public function view($action='') {
333 // Handle form submissions first.
334 if ($action == 'savesubmission') {
335 $action = 'editsubmission';
336 if ($this->process_save_submission($mform, $notices)) {
339 } else if ($action == 'lock') {
340 $this->process_lock();
342 } else if ($action == 'reverttodraft') {
343 $this->process_revert_to_draft();
345 } else if ($action == 'unlock') {
346 $this->process_unlock();
348 } else if ($action == 'confirmsubmit') {
350 if ($this->process_submit_for_grading($mform)) {
353 } else if ($action == 'gradingbatchoperation') {
354 $action = $this->process_grading_batch_operation($mform);
355 } else if ($action == 'submitgrade') {
356 if (optional_param('saveandshownext', null, PARAM_RAW)) {
357 // Save and show next.
359 if ($this->process_save_grade($mform)) {
360 $action = 'nextgrade';
362 } else if (optional_param('nosaveandprevious', null, PARAM_RAW)) {
363 $action = 'previousgrade';
364 } else if (optional_param('nosaveandnext', null, PARAM_RAW)) {
366 $action = 'nextgrade';
367 } else if (optional_param('savegrade', null, PARAM_RAW)) {
368 // Save changes button.
370 if ($this->process_save_grade($mform)) {
377 } else if ($action == 'quickgrade') {
378 $message = $this->process_save_quick_grades();
379 $action = 'quickgradingresult';
380 } else if ($action == 'saveoptions') {
381 $this->process_save_grading_options();
383 } else if ($action == 'saveextension') {
384 $action = 'grantextension';
385 if ($this->process_save_extension($mform)) {
388 } else if ($action == 'revealidentitiesconfirm') {
389 $this->process_reveal_identities();
393 $returnparams = array('rownum'=>optional_param('rownum', 0, PARAM_INT));
394 $this->register_return_link($action, $returnparams);
396 // Now show the right view page.
397 if ($action == 'previousgrade') {
399 $o .= $this->view_single_grade_page($mform, -1);
400 } else if ($action == 'quickgradingresult') {
402 $o .= $this->view_quickgrading_result($message);
403 } else if ($action == 'nextgrade') {
405 $o .= $this->view_single_grade_page($mform, 1);
406 } else if ($action == 'grade') {
407 $o .= $this->view_single_grade_page($mform);
408 } else if ($action == 'viewpluginassignfeedback') {
409 $o .= $this->view_plugin_content('assignfeedback');
410 } else if ($action == 'viewpluginassignsubmission') {
411 $o .= $this->view_plugin_content('assignsubmission');
412 } else if ($action == 'editsubmission') {
413 $o .= $this->view_edit_submission_page($mform, $notices);
414 } else if ($action == 'grading') {
415 $o .= $this->view_grading_page();
416 } else if ($action == 'downloadall') {
417 $o .= $this->download_submissions();
418 } else if ($action == 'submit') {
419 $o .= $this->check_submit_for_grading($mform);
420 } else if ($action == 'grantextension') {
421 $o .= $this->view_grant_extension($mform);
422 } else if ($action == 'revealidentities') {
423 $o .= $this->view_reveal_identities_confirm($mform);
424 } else if ($action == 'plugingradingbatchoperation') {
425 $o .= $this->view_plugin_grading_batch_operation($mform);
426 } else if ($action == 'viewpluginpage') {
427 $o .= $this->view_plugin_page();
428 } else if ($action == 'viewcourseindex') {
429 $o .= $this->view_course_index();
431 $o .= $this->view_submission_page();
438 * Add this instance to the database.
440 * @param stdClass $formdata The data submitted from the form
441 * @param bool $callplugins This is used to skip the plugin code
442 * when upgrading an old assignment to a new one (the plugins get called manually)
443 * @return mixed false if an error occurs or the int id of the new instance
445 public function add_instance(stdClass $formdata, $callplugins) {
450 // Add the database record.
451 $update = new stdClass();
452 $update->name = $formdata->name;
453 $update->timemodified = time();
454 $update->timecreated = time();
455 $update->course = $formdata->course;
456 $update->courseid = $formdata->course;
457 $update->intro = $formdata->intro;
458 $update->introformat = $formdata->introformat;
459 $update->alwaysshowdescription = $formdata->alwaysshowdescription;
460 $update->submissiondrafts = $formdata->submissiondrafts;
461 $update->requiresubmissionstatement = $formdata->requiresubmissionstatement;
462 $update->sendnotifications = $formdata->sendnotifications;
463 $update->sendlatenotifications = $formdata->sendlatenotifications;
464 $update->duedate = $formdata->duedate;
465 $update->cutoffdate = $formdata->cutoffdate;
466 $update->allowsubmissionsfromdate = $formdata->allowsubmissionsfromdate;
467 $update->grade = $formdata->grade;
468 $update->completionsubmit = !empty($formdata->completionsubmit);
469 $update->teamsubmission = $formdata->teamsubmission;
470 $update->requireallteammemberssubmit = $formdata->requireallteammemberssubmit;
471 $update->teamsubmissiongroupingid = $formdata->teamsubmissiongroupingid;
472 $update->blindmarking = $formdata->blindmarking;
474 $returnid = $DB->insert_record('assign', $update);
475 $this->instance = $DB->get_record('assign', array('id'=>$returnid), '*', MUST_EXIST);
476 // Cache the course record.
477 $this->course = $DB->get_record('course', array('id'=>$formdata->course), '*', MUST_EXIST);
480 // Call save_settings hook for submission plugins.
481 foreach ($this->submissionplugins as $plugin) {
482 if (!$this->update_plugin_instance($plugin, $formdata)) {
483 print_error($plugin->get_error());
487 foreach ($this->feedbackplugins as $plugin) {
488 if (!$this->update_plugin_instance($plugin, $formdata)) {
489 print_error($plugin->get_error());
494 // In the case of upgrades the coursemodule has not been set,
495 // so we need to wait before calling these two.
496 $this->update_calendar($formdata->coursemodule);
497 $this->update_gradebook(false, $formdata->coursemodule);
501 $update = new stdClass();
502 $update->id = $this->get_instance()->id;
503 $update->nosubmissions = (!$this->is_any_submission_plugin_enabled()) ? 1: 0;
504 $DB->update_record('assign', $update);
510 * Delete all grades from the gradebook for this assignment.
514 protected function delete_grades() {
517 $result = grade_update('mod/assign',
518 $this->get_course()->id,
521 $this->get_instance()->id,
524 array('deleted'=>1));
525 return $result == GRADE_UPDATE_OK;
529 * Delete this instance from the database.
531 * @return bool false if an error occurs
533 public function delete_instance() {
537 foreach ($this->submissionplugins as $plugin) {
538 if (!$plugin->delete_instance()) {
539 print_error($plugin->get_error());
543 foreach ($this->feedbackplugins as $plugin) {
544 if (!$plugin->delete_instance()) {
545 print_error($plugin->get_error());
550 // Delete files associated with this assignment.
551 $fs = get_file_storage();
552 if (! $fs->delete_area_files($this->context->id) ) {
556 // Delete_records will throw an exception if it fails - so no need for error checking here.
557 $DB->delete_records('assign_submission', array('assignment'=>$this->get_instance()->id));
558 $DB->delete_records('assign_grades', array('assignment'=>$this->get_instance()->id));
559 $DB->delete_records('assign_plugin_config', array('assignment'=>$this->get_instance()->id));
561 // Delete items from the gradebook.
562 if (! $this->delete_grades()) {
566 // Delete the instance.
567 $DB->delete_records('assign', array('id'=>$this->get_instance()->id));
573 * Actual implementation of the reset course functionality, delete all the
574 * assignment submissions for course $data->courseid.
576 * @param $data the data submitted from the reset course.
577 * @return array status array
579 public function reset_userdata($data) {
582 $componentstr = get_string('modulenameplural', 'assign');
585 $fs = get_file_storage();
586 if (!empty($data->reset_assign_submissions)) {
587 // Delete files associated with this assignment.
588 foreach ($this->submissionplugins as $plugin) {
589 $fileareas = array();
590 $plugincomponent = $plugin->get_subtype() . '_' . $plugin->get_type();
591 $fileareas = $plugin->get_file_areas();
592 foreach ($fileareas as $filearea) {
593 $fs->delete_area_files($this->context->id, $plugincomponent, $filearea);
596 if (!$plugin->delete_instance()) {
597 $status[] = array('component'=>$componentstr,
598 'item'=>get_string('deleteallsubmissions', 'assign'),
599 'error'=>$plugin->get_error());
603 foreach ($this->feedbackplugins as $plugin) {
604 $fileareas = array();
605 $plugincomponent = $plugin->get_subtype() . '_' . $plugin->get_type();
606 $fileareas = $plugin->get_file_areas();
607 foreach ($fileareas as $filearea) {
608 $fs->delete_area_files($this->context->id, $plugincomponent, $filearea);
611 if (!$plugin->delete_instance()) {
612 $status[] = array('component'=>$componentstr,
613 'item'=>get_string('deleteallsubmissions', 'assign'),
614 'error'=>$plugin->get_error());
618 $assignssql = 'SELECT a.id
620 WHERE a.course=:course';
621 $params = array('course'=>$data->courseid);
623 $DB->delete_records_select('assign_submission', "assignment IN ($assignssql)", $params);
625 $status[] = array('component'=>$componentstr,
626 'item'=>get_string('deleteallsubmissions', 'assign'),
629 if (!empty($data->reset_gradebook_grades)) {
630 $DB->delete_records_select('assign_grades', "assignment IN ($assignssql)", $params);
631 // Remove all grades from gradebook.
632 require_once($CFG->dirroot.'/mod/assign/lib.php');
633 assign_reset_gradebook($data->courseid);
636 // Updating dates - shift may be negative too.
637 if ($data->timeshift) {
638 shift_course_mod_dates('assign',
639 array('duedate', 'allowsubmissionsfromdate', 'cutoffdate'),
642 $status[] = array('component'=>$componentstr,
643 'item'=>get_string('datechanged'),
651 * Update the settings for a single plugin.
653 * @param assign_plugin $plugin The plugin to update
654 * @param stdClass $formdata The form data
655 * @return bool false if an error occurs
657 protected function update_plugin_instance(assign_plugin $plugin, stdClass $formdata) {
658 if ($plugin->is_visible()) {
659 $enabledname = $plugin->get_subtype() . '_' . $plugin->get_type() . '_enabled';
660 if ($formdata->$enabledname) {
662 if (!$plugin->save_settings($formdata)) {
663 print_error($plugin->get_error());
674 * Update the gradebook information for this assignment.
676 * @param bool $reset If true, will reset all grades in the gradbook for this assignment
677 * @param int $coursemoduleid This is required because it might not exist in the database yet
680 public function update_gradebook($reset, $coursemoduleid) {
683 require_once($CFG->dirroot.'/mod/assign/lib.php');
684 $assign = clone $this->get_instance();
685 $assign->cmidnumber = $coursemoduleid;
691 return assign_grade_item_update($assign, $param);
695 * Load and cache the admin config for this module.
697 * @return stdClass the plugin config
699 public function get_admin_config() {
700 if ($this->adminconfig) {
701 return $this->adminconfig;
703 $this->adminconfig = get_config('assign');
704 return $this->adminconfig;
708 * Update the calendar entries for this assignment.
710 * @param int $coursemoduleid - Required to pass this in because it might
711 * not exist in the database yet.
714 public function update_calendar($coursemoduleid) {
716 require_once($CFG->dirroot.'/calendar/lib.php');
718 // Special case for add_instance as the coursemodule has not been set yet.
719 $instance = $this->get_instance();
721 if ($instance->duedate) {
722 $event = new stdClass();
724 $params = array('modulename'=>'assign', 'instance'=>$instance->id);
725 $event->id = $DB->get_field('event',
730 $event->name = $instance->name;
731 $event->description = format_module_intro('assign', $instance, $coursemoduleid);
732 $event->timestart = $instance->duedate;
734 $calendarevent = calendar_event::load($event->id);
735 $calendarevent->update($event);
737 $event = new stdClass();
738 $event->name = $instance->name;
739 $event->description = format_module_intro('assign', $instance, $coursemoduleid);
740 $event->courseid = $instance->course;
743 $event->modulename = 'assign';
744 $event->instance = $instance->id;
745 $event->eventtype = 'due';
746 $event->timestart = $instance->duedate;
747 $event->timeduration = 0;
749 calendar_event::create($event);
752 $DB->delete_records('event', array('modulename'=>'assign', 'instance'=>$instance->id));
758 * Update this instance in the database.
760 * @param stdClass $formdata - the data submitted from the form
761 * @return bool false if an error occurs
763 public function update_instance($formdata) {
766 $update = new stdClass();
767 $update->id = $formdata->instance;
768 $update->name = $formdata->name;
769 $update->timemodified = time();
770 $update->course = $formdata->course;
771 $update->intro = $formdata->intro;
772 $update->introformat = $formdata->introformat;
773 $update->alwaysshowdescription = $formdata->alwaysshowdescription;
774 $update->submissiondrafts = $formdata->submissiondrafts;
775 $update->requiresubmissionstatement = $formdata->requiresubmissionstatement;
776 $update->sendnotifications = $formdata->sendnotifications;
777 $update->sendlatenotifications = $formdata->sendlatenotifications;
778 $update->duedate = $formdata->duedate;
779 $update->cutoffdate = $formdata->cutoffdate;
780 $update->allowsubmissionsfromdate = $formdata->allowsubmissionsfromdate;
781 $update->grade = $formdata->grade;
782 $update->completionsubmit = !empty($formdata->completionsubmit);
783 $update->teamsubmission = $formdata->teamsubmission;
784 $update->requireallteammemberssubmit = $formdata->requireallteammemberssubmit;
785 $update->teamsubmissiongroupingid = $formdata->teamsubmissiongroupingid;
786 $update->blindmarking = $formdata->blindmarking;
788 $result = $DB->update_record('assign', $update);
789 $this->instance = $DB->get_record('assign', array('id'=>$update->id), '*', MUST_EXIST);
791 // Load the assignment so the plugins have access to it.
793 // Call save_settings hook for submission plugins.
794 foreach ($this->submissionplugins as $plugin) {
795 if (!$this->update_plugin_instance($plugin, $formdata)) {
796 print_error($plugin->get_error());
800 foreach ($this->feedbackplugins as $plugin) {
801 if (!$this->update_plugin_instance($plugin, $formdata)) {
802 print_error($plugin->get_error());
807 $this->update_calendar($this->get_course_module()->id);
808 $this->update_gradebook(false, $this->get_course_module()->id);
810 $update = new stdClass();
811 $update->id = $this->get_instance()->id;
812 $update->nosubmissions = (!$this->is_any_submission_plugin_enabled()) ? 1: 0;
813 $DB->update_record('assign', $update);
819 * Add elements in grading plugin form.
821 * @param mixed $grade stdClass|null
822 * @param MoodleQuickForm $mform
823 * @param stdClass $data
824 * @param int $userid - The userid we are grading
827 protected function add_plugin_grade_elements($grade, MoodleQuickForm $mform, stdClass $data, $userid) {
828 foreach ($this->feedbackplugins as $plugin) {
829 if ($plugin->is_enabled() && $plugin->is_visible()) {
830 $mform->addElement('header', 'header_' . $plugin->get_type(), $plugin->get_name());
831 if (!$plugin->get_form_elements_for_user($grade, $mform, $data, $userid)) {
832 $mform->removeElement('header_' . $plugin->get_type());
841 * Add one plugins settings to edit plugin form.
843 * @param assign_plugin $plugin The plugin to add the settings from
844 * @param MoodleQuickForm $mform The form to add the configuration settings to.
845 * This form is modified directly (not returned).
848 protected function add_plugin_settings(assign_plugin $plugin, MoodleQuickForm $mform) {
850 if ($plugin->is_visible()) {
851 $mform->addElement('selectyesno',
852 $plugin->get_subtype() . '_' . $plugin->get_type() . '_enabled',
853 $plugin->get_name());
854 $mform->addHelpButton($plugin->get_subtype() . '_' . $plugin->get_type() . '_enabled',
856 $plugin->get_subtype() . '_' . $plugin->get_type());
858 $default = get_config($plugin->get_subtype() . '_' . $plugin->get_type(), 'default');
859 if ($plugin->get_config('enabled') !== false) {
860 $default = $plugin->is_enabled();
862 $mform->setDefault($plugin->get_subtype() . '_' . $plugin->get_type() . '_enabled', $default);
864 $plugin->get_settings($mform);
870 * Add settings to edit plugin form.
872 * @param MoodleQuickForm $mform The form to add the configuration settings to.
873 * This form is modified directly (not returned).
876 public function add_all_plugin_settings(MoodleQuickForm $mform) {
877 $mform->addElement('header', 'general', get_string('submissionsettings', 'assign'));
879 foreach ($this->submissionplugins as $plugin) {
880 $this->add_plugin_settings($plugin, $mform);
883 $mform->addElement('header', 'general', get_string('feedbacksettings', 'assign'));
884 foreach ($this->feedbackplugins as $plugin) {
885 $this->add_plugin_settings($plugin, $mform);
890 * Allow each plugin an opportunity to update the defaultvalues
891 * passed in to the settings form (needed to set up draft areas for
892 * editor and filemanager elements)
894 * @param array $defaultvalues
896 public function plugin_data_preprocessing(&$defaultvalues) {
897 foreach ($this->submissionplugins as $plugin) {
898 if ($plugin->is_visible()) {
899 $plugin->data_preprocessing($defaultvalues);
902 foreach ($this->feedbackplugins as $plugin) {
903 if ($plugin->is_visible()) {
904 $plugin->data_preprocessing($defaultvalues);
910 * Get the name of the current module.
912 * @return string the module name (Assignment)
914 protected function get_module_name() {
915 if (isset(self::$modulename)) {
916 return self::$modulename;
918 self::$modulename = get_string('modulename', 'assign');
919 return self::$modulename;
923 * Get the plural name of the current module.
925 * @return string the module name plural (Assignments)
927 protected function get_module_name_plural() {
928 if (isset(self::$modulenameplural)) {
929 return self::$modulenameplural;
931 self::$modulenameplural = get_string('modulenameplural', 'assign');
932 return self::$modulenameplural;
936 * Has this assignment been constructed from an instance?
940 public function has_instance() {
941 return $this->instance || $this->get_course_module();
945 * Get the settings for the current instance of this assignment
947 * @return stdClass The settings
949 public function get_instance() {
951 if ($this->instance) {
952 return $this->instance;
954 if ($this->get_course_module()) {
955 $params = array('id' => $this->get_course_module()->instance);
956 $this->instance = $DB->get_record('assign', $params, '*', MUST_EXIST);
958 if (!$this->instance) {
959 throw new coding_exception('Improper use of the assignment class. ' .
960 'Cannot load the assignment record.');
962 return $this->instance;
966 * Get the context of the current course.
968 * @return mixed context|null The course context
970 public function get_course_context() {
971 if (!$this->context && !$this->course) {
972 throw new coding_exception('Improper use of the assignment class. ' .
973 'Cannot load the course context.');
975 if ($this->context) {
976 return $this->context->get_course_context();
978 return context_course::instance($this->course->id);
984 * Get the current course module.
986 * @return mixed stdClass|null The course module
988 public function get_course_module() {
989 if ($this->coursemodule) {
990 return $this->coursemodule;
992 if (!$this->context) {
996 if ($this->context->contextlevel == CONTEXT_MODULE) {
997 $this->coursemodule = get_coursemodule_from_id('assign',
998 $this->context->instanceid,
1002 return $this->coursemodule;
1008 * Get context module.
1012 public function get_context() {
1013 return $this->context;
1017 * Get the current course.
1019 * @return mixed stdClass|null The course
1021 public function get_course() {
1024 if ($this->course) {
1025 return $this->course;
1028 if (!$this->context) {
1031 $params = array('id' => $this->get_course_context()->instanceid);
1032 $this->course = $DB->get_record('course', $params, '*', MUST_EXIST);
1034 return $this->course;
1038 * Return a grade in user-friendly form, whether it's a scale or not.
1040 * @param mixed $grade int|null
1041 * @param boolean $editing Are we allowing changes to this grade?
1042 * @param int $userid The user id the grade belongs to
1043 * @param int $modified Timestamp from when the grade was last modified
1044 * @return string User-friendly representation of grade
1046 public function display_grade($grade, $editing, $userid=0, $modified=0) {
1049 static $scalegrades = array();
1053 if ($this->get_instance()->grade >= 0) {
1055 if ($editing && $this->get_instance()->grade > 0) {
1059 $displaygrade = format_float($grade);
1061 $o .= '<label class="accesshide" for="quickgrade_' . $userid . '">' .
1062 get_string('usergrade', 'assign') .
1064 $o .= '<input type="text"
1065 id="quickgrade_' . $userid . '"
1066 name="quickgrade_' . $userid . '"
1067 value="' . $displaygrade . '"
1070 class="quickgrade"/>';
1071 $o .= ' / ' . format_float($this->get_instance()->grade, 2);
1072 $o .= '<input type="hidden"
1073 name="grademodified_' . $userid . '"
1074 value="' . $modified . '"/>';
1077 $o .= '<input type="hidden" name="grademodified_' . $userid . '" value="' . $modified . '"/>';
1078 if ($grade == -1 || $grade === null) {
1082 $o .= format_float($grade, 2) .
1084 format_float($this->get_instance()->grade, 2);
1091 if (empty($this->cache['scale'])) {
1092 if ($scale = $DB->get_record('scale', array('id'=>-($this->get_instance()->grade)))) {
1093 $this->cache['scale'] = make_menu_from_list($scale->scale);
1100 $o .= '<label class="accesshide"
1101 for="quickgrade_' . $userid . '">' .
1102 get_string('usergrade', 'assign') .
1104 $o .= '<select name="quickgrade_' . $userid . '" class="quickgrade">';
1105 $o .= '<option value="-1">' . get_string('nograde') . '</option>';
1106 foreach ($this->cache['scale'] as $optionid => $option) {
1108 if ($grade == $optionid) {
1109 $selected = 'selected="selected"';
1111 $o .= '<option value="' . $optionid . '" ' . $selected . '>' . $option . '</option>';
1114 $o .= '<input type="hidden" ' .
1115 'name="grademodified_' . $userid . '" ' .
1116 'value="' . $modified . '"/>';
1119 $scaleid = (int)$grade;
1120 if (isset($this->cache['scale'][$scaleid])) {
1121 $o .= $this->cache['scale'][$scaleid];
1131 * Load a list of users enrolled in the current course with the specified permission and group.
1134 * @param int $currentgroup
1135 * @param bool $idsonly
1136 * @return array List of user records
1138 public function list_participants($currentgroup, $idsonly) {
1140 return get_enrolled_users($this->context, 'mod/assign:submit', $currentgroup, 'u.id');
1142 return get_enrolled_users($this->context, 'mod/assign:submit', $currentgroup);
1147 * Load a count of valid teams for this assignment.
1149 * @return int number of valid teams
1151 public function count_teams() {
1153 $groups = groups_get_all_groups($this->get_course()->id,
1155 $this->get_instance()->teamsubmissiongroupingid,
1157 $count = count($groups);
1159 // See if there are any users in the default group.
1160 $defaultusers = $this->get_submission_group_members(0, true);
1161 if (count($defaultusers) > 0) {
1168 * Load a count of users enrolled in the current course with the specified permission and group.
1171 * @param int $currentgroup
1172 * @return int number of matching users
1174 public function count_participants($currentgroup) {
1175 return count_enrolled_users($this->context, 'mod/assign:submit', $currentgroup);
1179 * Load a count of users submissions in the current module that require grading
1180 * This means the submission modification time is more recent than the
1181 * grading modification time and the status is SUBMITTED.
1183 * @return int number of matching submissions
1185 public function count_submissions_need_grading() {
1188 if ($this->get_instance()->teamsubmission) {
1189 // This does not make sense for group assignment because the submission is shared.
1193 $currentgroup = groups_get_activity_group($this->get_course_module(), true);
1194 list($esql, $params) = get_enrolled_sql($this->get_context(), 'mod/assign:submit', $currentgroup, false);
1196 $params['assignid'] = $this->get_instance()->id;
1197 $params['submitted'] = ASSIGN_SUBMISSION_STATUS_SUBMITTED;
1199 $sql = 'SELECT COUNT(s.userid)
1200 FROM {assign_submission} s
1201 LEFT JOIN {assign_grades} g ON
1202 s.assignment = g.assignment AND
1204 JOIN(' . $esql . ') e ON e.id = s.userid
1206 s.assignment = :assignid AND
1207 s.timemodified IS NOT NULL AND
1208 s.status = :submitted AND
1209 (s.timemodified > g.timemodified OR g.timemodified IS NULL)';
1211 return $DB->count_records_sql($sql, $params);
1215 * Load a count of grades.
1217 * @return int number of grades
1219 public function count_grades() {
1222 if (!$this->has_instance()) {
1226 $currentgroup = groups_get_activity_group($this->get_course_module(), true);
1227 list($esql, $params) = get_enrolled_sql($this->get_context(), 'mod/assign:submit', $currentgroup, false);
1229 $params['assignid'] = $this->get_instance()->id;
1231 $sql = 'SELECT COUNT(g.userid)
1232 FROM {assign_grades} g
1233 JOIN(' . $esql . ') e ON e.id = g.userid
1234 WHERE g.assignment = :assignid';
1236 return $DB->count_records_sql($sql, $params);
1240 * Load a count of submissions.
1242 * @return int number of submissions
1244 public function count_submissions() {
1247 if (!$this->has_instance()) {
1253 if ($this->get_instance()->teamsubmission) {
1254 // We cannot join on the enrolment tables for group submissions (no userid).
1255 $sql = 'SELECT COUNT(s.groupid)
1256 FROM {assign_submission} s
1258 s.assignment = :assignid AND
1259 s.timemodified IS NOT NULL AND
1260 s.userid = :groupuserid';
1262 $params['assignid'] = $this->get_instance()->id;
1263 $params['groupuserid'] = 0;
1265 $currentgroup = groups_get_activity_group($this->get_course_module(), true);
1266 list($esql, $params) = get_enrolled_sql($this->get_context(), 'mod/assign:submit', $currentgroup, false);
1268 $params['assignid'] = $this->get_instance()->id;
1270 $sql = 'SELECT COUNT(s.userid)
1271 FROM {assign_submission} s
1272 JOIN(' . $esql . ') e ON e.id = s.userid
1274 s.assignment = :assignid AND
1275 s.timemodified IS NOT NULL';
1278 return $DB->count_records_sql($sql, $params);
1282 * Load a count of submissions with a specified status.
1284 * @param string $status The submission status - should match one of the constants
1285 * @return int number of matching submissions
1287 public function count_submissions_with_status($status) {
1290 $currentgroup = groups_get_activity_group($this->get_course_module(), true);
1291 list($esql, $params) = get_enrolled_sql($this->get_context(), 'mod/assign:submit', $currentgroup, false);
1293 $params['assignid'] = $this->get_instance()->id;
1294 $params['submissionstatus'] = $status;
1296 if ($this->get_instance()->teamsubmission) {
1297 $sql = 'SELECT COUNT(s.groupid)
1298 FROM {assign_submission} s
1300 s.assignment = :assignid AND
1301 s.timemodified IS NOT NULL AND
1302 s.userid = :groupuserid AND
1303 s.status = :submissionstatus';
1304 $params['groupuserid'] = 0;
1306 $sql = 'SELECT COUNT(s.userid)
1307 FROM {assign_submission} s
1308 JOIN(' . $esql . ') e ON e.id = s.userid
1310 s.assignment = :assignid AND
1311 s.timemodified IS NOT NULL AND
1312 s.status = :submissionstatus';
1315 return $DB->count_records_sql($sql, $params);
1319 * Utility function to get the userid for every row in the grading table
1320 * so the order can be frozen while we iterate it.
1322 * @return array An array of userids
1324 protected function get_grading_userid_list() {
1325 $filter = get_user_preferences('assign_filter', '');
1326 $table = new assign_grading_table($this, 0, $filter, 0, false);
1328 $useridlist = $table->get_column_data('userid');
1334 * Generate zip file from array of given files.
1336 * @param array $filesforzipping - array of files to pass into archive_to_pathname.
1337 * This array is indexed by the final file name and each
1338 * element in the array is an instance of a stored_file object.
1339 * @return path of temp file - note this returned file does
1340 * not have a .zip extension - it is a temp file.
1342 protected function pack_files($filesforzipping) {
1344 // Create path for new zip file.
1345 $tempzip = tempnam($CFG->tempdir . '/', 'assignment_');
1347 $zipper = new zip_packer();
1348 if ($zipper->archive_to_pathname($filesforzipping, $tempzip)) {
1355 * Finds all assignment notifications that have yet to be mailed out, and mails them.
1357 * Cron function to be run periodically according to the moodle cron.
1361 public static function cron() {
1364 // Only ever send a max of one days worth of updates.
1365 $yesterday = time() - (24 * 3600);
1368 // Collect all submissions from the past 24 hours that require mailing.
1369 $sql = 'SELECT s.*, a.course, a.name, a.blindmarking, a.revealidentities,
1370 g.*, g.id as gradeid, g.timemodified as lastmodified
1372 JOIN {assign_grades} g ON g.assignment = a.id
1373 LEFT JOIN {assign_submission} s ON s.assignment = a.id AND s.userid = g.userid
1374 WHERE g.timemodified >= :yesterday AND
1375 g.timemodified <= :today AND
1378 $params = array('yesterday' => $yesterday, 'today' => $timenow);
1379 $submissions = $DB->get_records_sql($sql, $params);
1381 if (empty($submissions)) {
1385 mtrace('Processing ' . count($submissions) . ' assignment submissions ...');
1387 // Preload courses we are going to need those.
1388 $courseids = array();
1389 foreach ($submissions as $submission) {
1390 $courseids[] = $submission->course;
1393 // Filter out duplicates.
1394 $courseids = array_unique($courseids);
1395 $ctxselect = context_helper::get_preload_record_columns_sql('ctx');
1396 list($courseidsql, $params) = $DB->get_in_or_equal($courseids, SQL_PARAMS_NAMED);
1397 $sql = 'SELECT c.*, ' . $ctxselect .
1399 LEFT JOIN {context} ctx ON ctx.instanceid = c.id AND ctx.contextlevel = :contextlevel
1400 WHERE c.id ' . $courseidsql;
1402 $params['contextlevel'] = CONTEXT_COURSE;
1403 $courses = $DB->get_records_sql($sql, $params);
1405 // Clean up... this could go on for a while.
1408 unset($courseidsql);
1411 // Simple array we'll use for caching modules.
1412 $modcache = array();
1414 // Message students about new feedback.
1415 foreach ($submissions as $submission) {
1417 mtrace("Processing assignment submission $submission->id ...");
1419 // Do not cache user lookups - could be too many.
1420 if (!$user = $DB->get_record('user', array('id'=>$submission->userid))) {
1421 mtrace('Could not find user ' . $submission->userid);
1425 // Use a cache to prevent the same DB queries happening over and over.
1426 if (!array_key_exists($submission->course, $courses)) {
1427 mtrace('Could not find course ' . $submission->course);
1430 $course = $courses[$submission->course];
1431 if (isset($course->ctxid)) {
1432 // Context has not yet been preloaded. Do so now.
1433 context_helper::preload_from_record($course);
1436 // Override the language and timezone of the "current" user, so that
1437 // mail is customised for the receiver.
1438 cron_setup_user($user, $course);
1440 // Context lookups are already cached.
1441 $coursecontext = context_course::instance($course->id);
1442 if (!is_enrolled($coursecontext, $user->id)) {
1443 $courseshortname = format_string($course->shortname,
1445 array('context' => $coursecontext));
1446 mtrace(fullname($user) . ' not an active participant in ' . $courseshortname);
1450 if (!$grader = $DB->get_record('user', array('id'=>$submission->grader))) {
1451 mtrace('Could not find grader ' . $submission->grader);
1455 if (!array_key_exists($submission->assignment, $modcache)) {
1456 $mod = get_coursemodule_from_instance('assign', $submission->assignment, $course->id);
1458 mtrace('Could not find course module for assignment id ' . $submission->assignment);
1461 $modcache[$submission->assignment] = $mod;
1463 $mod = $modcache[$submission->assignment];
1465 // Context lookups are already cached.
1466 $contextmodule = context_module::instance($mod->id);
1468 if (!$mod->visible) {
1469 // Hold mail notification for hidden assignments until later.
1473 // Need to send this to the student.
1474 $messagetype = 'feedbackavailable';
1475 $eventtype = 'assign_notification';
1476 $updatetime = $submission->lastmodified;
1477 $modulename = get_string('modulename', 'assign');
1480 if ($submission->blindmarking && !$submission->revealidentities) {
1481 $uniqueid = self::get_uniqueid_for_user_static($submission->assignment, $user->id);
1483 $showusers = $submission->blindmarking && !$submission->revealidentities;
1484 self::send_assignment_notification($grader,
1497 $grade = new stdClass();
1498 $grade->id = $submission->gradeid;
1500 $DB->update_record('assign_grades', $grade);
1504 mtrace('Done processing ' . count($submissions) . ' assignment submissions');
1508 // Free up memory just to be sure.
1516 * Mark in the database that this grade record should have an update notification sent by cron.
1518 * @param stdClass $grade a grade record keyed on id
1519 * @return bool true for success
1521 public function notify_grade_modified($grade) {
1524 $grade->timemodified = time();
1525 if ($grade->mailed != 1) {
1529 return $DB->update_record('assign_grades', $grade);
1533 * Update a grade in the grade table for the assignment and in the gradebook.
1535 * @param stdClass $grade a grade record keyed on id
1536 * @return bool true for success
1538 public function update_grade($grade) {
1541 $grade->timemodified = time();
1543 if ($grade->grade && $grade->grade != -1) {
1544 if ($this->get_instance()->grade > 0) {
1545 if (!is_numeric($grade->grade)) {
1547 } else if ($grade->grade > $this->get_instance()->grade) {
1549 } else if ($grade->grade < 0) {
1554 if ($scale = $DB->get_record('scale', array('id' => -($this->get_instance()->grade)))) {
1555 $scaleoptions = make_menu_from_list($scale->scale);
1556 if (!array_key_exists((int) $grade->grade, $scaleoptions)) {
1563 $result = $DB->update_record('assign_grades', $grade);
1565 $this->gradebook_item_update(null, $grade);
1571 * View the grant extension date page.
1573 * Uses url parameters 'userid'
1574 * or from parameter 'selectedusers'
1576 * @param moodleform $mform - Used for validation of the submitted data
1579 protected function view_grant_extension($mform) {
1581 require_once($CFG->dirroot . '/mod/assign/extensionform.php');
1584 $batchusers = optional_param('selectedusers', '', PARAM_TEXT);
1585 $data = new stdClass();
1586 $data->extensionduedate = null;
1589 $userid = required_param('userid', PARAM_INT);
1591 $grade = $this->get_user_grade($userid, false);
1593 $user = $DB->get_record('user', array('id'=>$userid), '*', MUST_EXIST);
1596 $data->extensionduedate = $grade->extensionduedate;
1598 $data->userid = $userid;
1600 $data->batchusers = $batchusers;
1602 $header = new assign_header($this->get_instance(),
1603 $this->get_context(),
1604 $this->show_intro(),
1605 $this->get_course_module()->id,
1606 get_string('grantextension', 'assign'));
1607 $o .= $this->get_renderer()->render($header);
1610 $formparams = array($this->get_course_module()->id,
1613 $this->get_instance(),
1615 $mform = new mod_assign_extension_form(null, $formparams);
1617 $o .= $this->get_renderer()->render(new assign_form('extensionform', $mform));
1618 $o .= $this->view_footer();
1623 * Get a list of the users in the same group as this user.
1625 * @param int $groupid The id of the group whose members we want or 0 for the default group
1626 * @param bool $onlyids Whether to retrieve only the user id's
1627 * @return array The users (possibly id's only)
1629 public function get_submission_group_members($groupid, $onlyids) {
1631 if ($groupid != 0) {
1633 $allusers = groups_get_members($groupid, 'u.id');
1635 $allusers = groups_get_members($groupid);
1637 foreach ($allusers as $user) {
1638 if ($this->get_submission_group($user->id)) {
1643 $allusers = $this->list_participants(null, $onlyids);
1644 foreach ($allusers as $user) {
1645 if ($this->get_submission_group($user->id) == null) {
1654 * Get a list of the users in the same group as this user that have not submitted the assignment.
1656 * @param int $groupid The id of the group whose members we want or 0 for the default group
1657 * @param bool $onlyids Whether to retrieve only the user id's
1658 * @return array The users (possibly id's only)
1660 public function get_submission_group_members_who_have_not_submitted($groupid, $onlyids) {
1661 $instance = $this->get_instance();
1662 if (!$instance->teamsubmission || !$instance->requireallteammemberssubmit) {
1665 $members = $this->get_submission_group_members($groupid, $onlyids);
1667 foreach ($members as $id => $member) {
1668 $submission = $this->get_user_submission($member->id, false);
1669 if ($submission && $submission->status != ASSIGN_SUBMISSION_STATUS_DRAFT) {
1670 unset($members[$id]);
1672 if ($this->is_blind_marking()) {
1673 $members[$id]->alias = get_string('hiddenuser', 'assign') .
1674 $this->get_uniqueid_for_user($id);
1682 * Load the group submission object for a particular user, optionally creating it if required.
1684 * @param int $userid The id of the user whose submission we want
1685 * @param int $groupid The id of the group for this user - may be 0 in which
1686 * case it is determined from the userid.
1687 * @param bool $create If set to true a new submission object will be created in the database
1688 * @return stdClass The submission
1690 public function get_group_submission($userid, $groupid, $create) {
1693 if ($groupid == 0) {
1694 $group = $this->get_submission_group($userid);
1696 $groupid = $group->id;
1701 // Make sure there is a submission for this user.
1702 $params = array('assignment'=>$this->get_instance()->id, 'groupid'=>0, 'userid'=>$userid);
1703 $submission = $DB->get_record('assign_submission', $params);
1706 $submission = new stdClass();
1707 $submission->assignment = $this->get_instance()->id;
1708 $submission->userid = $userid;
1709 $submission->groupid = 0;
1710 $submission->timecreated = time();
1711 $submission->timemodified = $submission->timecreated;
1713 if ($this->get_instance()->submissiondrafts) {
1714 $submission->status = ASSIGN_SUBMISSION_STATUS_DRAFT;
1716 $submission->status = ASSIGN_SUBMISSION_STATUS_SUBMITTED;
1718 $DB->insert_record('assign_submission', $submission);
1721 // Now get the group submission.
1722 $params = array('assignment'=>$this->get_instance()->id, 'groupid'=>$groupid, 'userid'=>0);
1723 $submission = $DB->get_record('assign_submission', $params);
1729 $submission = new stdClass();
1730 $submission->assignment = $this->get_instance()->id;
1731 $submission->userid = 0;
1732 $submission->groupid = $groupid;
1733 $submission->timecreated = time();
1734 $submission->timemodified = $submission->timecreated;
1736 if ($this->get_instance()->submissiondrafts) {
1737 $submission->status = ASSIGN_SUBMISSION_STATUS_DRAFT;
1739 $submission->status = ASSIGN_SUBMISSION_STATUS_SUBMITTED;
1741 $sid = $DB->insert_record('assign_submission', $submission);
1742 $submission->id = $sid;
1749 * View a summary listing of all assignments in the current course.
1753 private function view_course_index() {
1758 $course = $this->get_course();
1759 $strplural = get_string('modulenameplural', 'assign');
1761 if (!$cms = get_coursemodules_in_course('assign', $course->id, 'm.duedate')) {
1762 $o .= $this->get_renderer()->notification(get_string('thereareno', 'moodle', $strplural));
1763 $o .= $this->get_renderer()->continue_button(new moodle_url('/course/view.php', array('id' => $course->id)));
1767 $strsectionname = get_string('sectionname', 'format_'.$course->format);
1768 $usesections = course_format_uses_sections($course->format);
1769 $modinfo = get_fast_modinfo($course);
1772 $sections = $modinfo->get_section_info_all();
1774 $courseindexsummary = new assign_course_index_summary($usesections, $strsectionname);
1778 $currentsection = '';
1779 foreach ($modinfo->instances['assign'] as $cm) {
1780 if (!$cm->uservisible) {
1784 $timedue = $cms[$cm->id]->duedate;
1787 if ($usesections && $cm->sectionnum) {
1788 $sectionname = get_section_name($course, $sections[$cm->sectionnum]);
1792 $context = context_module::instance($cm->id);
1794 $assignment = new assign($context, $cm, $course);
1796 if (has_capability('mod/assign:grade', $context)) {
1797 $submitted = $assignment->count_submissions_with_status(ASSIGN_SUBMISSION_STATUS_SUBMITTED);
1799 } else if (has_capability('mod/assign:submit', $context)) {
1800 $usersubmission = $assignment->get_user_submission($USER->id, false);
1802 if (!empty($usersubmission->status)) {
1803 $submitted = get_string('submissionstatus_' . $usersubmission->status, 'assign');
1805 $submitted = get_string('submissionstatus_', 'assign');
1808 $grading_info = grade_get_grades($course->id, 'mod', 'assign', $cm->instance, $USER->id);
1809 if (isset($grading_info->items[0]) && !$grading_info->items[0]->grades[$USER->id]->hidden ) {
1810 $grade = $grading_info->items[0]->grades[$USER->id]->str_grade;
1815 $courseindexsummary->add_assign_info($cm->id, $cm->name, $sectionname, $timedue, $submitted, $grade);
1819 $o .= $this->get_renderer()->render($courseindexsummary);
1820 $o .= $this->view_footer();
1826 * View a page rendered by a plugin.
1828 * Uses url parameters 'pluginaction', 'pluginsubtype', 'plugin', and 'id'.
1832 protected function view_plugin_page() {
1837 $pluginsubtype = required_param('pluginsubtype', PARAM_ALPHA);
1838 $plugintype = required_param('plugin', PARAM_TEXT);
1839 $pluginaction = required_param('pluginaction', PARAM_ALPHA);
1841 $plugin = $this->get_plugin_by_type($pluginsubtype, $plugintype);
1843 print_error('invalidformdata', '');
1847 $o .= $plugin->view_page($pluginaction);
1854 * This is used for team assignments to get the group for the specified user.
1855 * If the user is a member of multiple or no groups this will return false
1857 * @param int $userid The id of the user whose submission we want
1858 * @return mixed The group or false
1860 public function get_submission_group($userid) {
1861 $grouping = $this->get_instance()->teamsubmissiongroupingid;
1862 $groups = groups_get_all_groups($this->get_course()->id, $userid, $grouping);
1863 if (count($groups) != 1) {
1866 return array_pop($groups);
1871 * Display the submission that is used by a plugin.
1873 * Uses url parameters 'sid', 'gid' and 'plugin'.
1875 * @param string $pluginsubtype
1878 protected function view_plugin_content($pluginsubtype) {
1883 $submissionid = optional_param('sid', 0, PARAM_INT);
1884 $gradeid = optional_param('gid', 0, PARAM_INT);
1885 $plugintype = required_param('plugin', PARAM_TEXT);
1887 if ($pluginsubtype == 'assignsubmission') {
1888 $plugin = $this->get_submission_plugin_by_type($plugintype);
1889 if ($submissionid <= 0) {
1890 throw new coding_exception('Submission id should not be 0');
1892 $item = $this->get_submission($submissionid);
1894 // Check permissions.
1895 if ($item->userid != $USER->id) {
1896 require_capability('mod/assign:grade', $this->context);
1898 $o .= $this->get_renderer()->render(new assign_header($this->get_instance(),
1899 $this->get_context(),
1900 $this->show_intro(),
1901 $this->get_course_module()->id,
1902 $plugin->get_name()));
1903 $o .= $this->get_renderer()->render(new assign_submission_plugin_submission($plugin,
1905 assign_submission_plugin_submission::FULL,
1906 $this->get_course_module()->id,
1907 $this->get_return_action(),
1908 $this->get_return_params()));
1910 $logmessage = get_string('viewsubmissionforuser', 'assign', $item->userid);
1911 $this->add_to_log('view submission', $logmessage);
1913 $plugin = $this->get_feedback_plugin_by_type($plugintype);
1914 if ($gradeid <= 0) {
1915 throw new coding_exception('Grade id should not be 0');
1917 $item = $this->get_grade($gradeid);
1918 // Check permissions.
1919 if ($item->userid != $USER->id) {
1920 require_capability('mod/assign:grade', $this->context);
1922 $o .= $this->get_renderer()->render(new assign_header($this->get_instance(),
1923 $this->get_context(),
1924 $this->show_intro(),
1925 $this->get_course_module()->id,
1926 $plugin->get_name()));
1927 $o .= $this->get_renderer()->render(new assign_feedback_plugin_feedback($plugin,
1929 assign_feedback_plugin_feedback::FULL,
1930 $this->get_course_module()->id,
1931 $this->get_return_action(),
1932 $this->get_return_params()));
1933 $logmessage = get_string('viewfeedbackforuser', 'assign', $item->userid);
1934 $this->add_to_log('view feedback', $logmessage);
1937 $o .= $this->view_return_links();
1939 $o .= $this->view_footer();
1944 * Rewrite plugin file urls so they resolve correctly in an exported zip.
1946 * @param stdClass $user - The user record
1947 * @param assign_plugin $plugin - The assignment plugin
1949 public function download_rewrite_pluginfile_urls($text, $user, $plugin) {
1950 $groupmode = groups_get_activity_groupmode($this->get_course_module());
1953 $groupid = groups_get_activity_group($this->get_course_module(), true);
1954 $groupname = groups_get_group_name($groupid).'-';
1957 if ($this->is_blind_marking()) {
1958 $prefix = $groupname . get_string('participant', 'assign');
1959 $prefix = str_replace('_', ' ', $prefix);
1960 $prefix = clean_filename($prefix . '_' . $this->get_uniqueid_for_user($user->id) . '_');
1962 $prefix = $groupname . fullname($user);
1963 $prefix = str_replace('_', ' ', $prefix);
1964 $prefix = clean_filename($prefix . '_' . $this->get_uniqueid_for_user($user->id) . '_');
1967 $subtype = $plugin->get_subtype();
1968 $type = $plugin->get_type();
1969 $prefix = $prefix . $subtype . '_' . $type . '_';
1971 $result = str_replace('@@PLUGINFILE@@/', $prefix, $text);
1977 * Render the content in editor that is often used by plugin.
1979 * @param string $filearea
1980 * @param int $submissionid
1981 * @param string $plugintype
1982 * @param string $editor
1983 * @param string $component
1986 public function render_editor_content($filearea, $submissionid, $plugintype, $editor, $component) {
1991 $plugin = $this->get_submission_plugin_by_type($plugintype);
1993 $text = $plugin->get_editor_text($editor, $submissionid);
1994 $format = $plugin->get_editor_format($editor, $submissionid);
1996 $finaltext = file_rewrite_pluginfile_urls($text,
1998 $this->get_context()->id,
2002 $params = array('overflowdiv' => true, 'context' => $this->get_context());
2003 $result .= format_text($finaltext, $format, $params);
2005 if ($CFG->enableportfolios) {
2006 require_once($CFG->libdir . '/portfoliolib.php');
2008 $button = new portfolio_add_button();
2009 $portfolioparams = array('cmid' => $this->get_course_module()->id,
2010 'sid' => $submissionid,
2011 'plugin' => $plugintype,
2012 'editor' => $editor,
2014 $button->set_callback_options('assign_portfolio_caller', $portfolioparams, 'mod_assign');
2015 $fs = get_file_storage();
2017 if ($files = $fs->get_area_files($this->context->id,
2023 $button->set_formats(PORTFOLIO_FORMAT_RICHHTML);
2025 $button->set_formats(PORTFOLIO_FORMAT_PLAINHTML);
2027 $result .= $button->to_html();
2033 * Display a grading error.
2035 * @param string $message - The description of the result
2038 protected function view_quickgrading_result($message) {
2040 $o .= $this->get_renderer()->render(new assign_header($this->get_instance(),
2041 $this->get_context(),
2042 $this->show_intro(),
2043 $this->get_course_module()->id,
2044 get_string('quickgradingresult', 'assign')));
2045 $gradingresult = new assign_quickgrading_result($message, $this->get_course_module()->id);
2046 $o .= $this->get_renderer()->render($gradingresult);
2047 $o .= $this->view_footer();
2052 * Display the page footer.
2056 protected function view_footer() {
2057 return $this->get_renderer()->render_footer();
2061 * Does this user have grade permission for this assignment?
2065 protected function can_grade() {
2066 // Permissions check.
2067 if (!has_capability('mod/assign:grade', $this->context)) {
2075 * Download a zip file of all assignment submissions.
2079 protected function download_submissions() {
2082 // More efficient to load this here.
2083 require_once($CFG->libdir.'/filelib.php');
2085 // Load all users with submit.
2086 $students = get_enrolled_users($this->context, "mod/assign:submit");
2088 // Build a list of files to zip.
2089 $filesforzipping = array();
2090 $fs = get_file_storage();
2092 $groupmode = groups_get_activity_groupmode($this->get_course_module());
2097 $groupid = groups_get_activity_group($this->get_course_module(), true);
2098 $groupname = groups_get_group_name($groupid).'-';
2101 // Construct the zip file name.
2102 $filename = clean_filename($this->get_course()->shortname . '-' .
2103 $this->get_instance()->name . '-' .
2104 $groupname.$this->get_course_module()->id . '.zip');
2106 // Get all the files for each student.
2107 foreach ($students as $student) {
2108 $userid = $student->id;
2110 if ((groups_is_member($groupid, $userid) or !$groupmode or !$groupid)) {
2111 // Get the plugins to add their own files to the zip.
2113 $submissiongroup = false;
2115 if ($this->get_instance()->teamsubmission) {
2116 $submission = $this->get_group_submission($userid, 0, false);
2117 $submissiongroup = $this->get_submission_group($userid);
2118 if ($submissiongroup) {
2119 $groupname = $submissiongroup->name . '-';
2121 $groupname = get_string('defaultteam', 'assign') . '-';
2124 $submission = $this->get_user_submission($userid, false);
2127 if ($this->is_blind_marking()) {
2128 $prefix = str_replace('_', ' ', $groupname . get_string('participant', 'assign'));
2129 $prefix = clean_filename($prefix . '_' . $this->get_uniqueid_for_user($userid) . '_');
2131 $prefix = str_replace('_', ' ', $groupname . fullname($student));
2132 $prefix = clean_filename($prefix . '_' . $this->get_uniqueid_for_user($userid) . '_');
2136 foreach ($this->submissionplugins as $plugin) {
2137 if ($plugin->is_enabled() && $plugin->is_visible()) {
2138 $pluginfiles = $plugin->get_files($submission, $student);
2139 foreach ($pluginfiles as $zipfilename => $file) {
2140 $subtype = $plugin->get_subtype();
2141 $type = $plugin->get_type();
2142 $prefixedfilename = clean_filename($prefix .
2148 $filesforzipping[$prefixedfilename] = $file;
2156 if (count($filesforzipping) == 0) {
2157 $header = new assign_header($this->get_instance(),
2158 $this->get_context(),
2160 $this->get_course_module()->id,
2161 get_string('downloadall', 'assign'));
2162 $result .= $this->get_renderer()->render($header);
2163 $result .= $this->get_renderer()->notification(get_string('nosubmission', 'assign'));
2164 $url = new moodle_url('/mod/assign/view.php', array('id'=>$this->get_course_module()->id,
2165 'action'=>'grading'));
2166 $result .= $this->get_renderer()->continue_button($url);
2167 $result .= $this->view_footer();
2168 } else if ($zipfile = $this->pack_files($filesforzipping)) {
2169 $this->add_to_log('download all submissions', get_string('downloadall', 'assign'));
2170 // Send file and delete after sending.
2171 send_temp_file($zipfile, $filename);
2172 // We will not get here - send_temp_file calls exit.
2178 * Util function to add a message to the log.
2180 * @param string $action The current action
2181 * @param string $info A detailed description of the change. But no more than 255 characters.
2182 * @param string $url The url to the assign module instance.
2185 public function add_to_log($action = '', $info = '', $url='') {
2188 $fullurl = 'view.php?id=' . $this->get_course_module()->id;
2190 $fullurl .= '&' . $url;
2193 add_to_log($this->get_course()->id,
2198 $this->get_course_module()->id,
2203 * Lazy load the page renderer and expose the renderer to plugins.
2205 * @return assign_renderer
2207 public function get_renderer() {
2209 if ($this->output) {
2210 return $this->output;
2212 $this->output = $PAGE->get_renderer('mod_assign');
2213 return $this->output;
2217 * Load the submission object for a particular user, optionally creating it if required.
2219 * For team assignments there are 2 submissions - the student submission and the team submission
2220 * All files are associated with the team submission but the status of the students contribution is
2221 * recorded separately.
2223 * @param int $userid The id of the user whose submission we want or 0 in which case USER->id is used
2224 * @param bool $create optional - defaults to false. If set to true a new submission object
2225 * will be created in the database.
2226 * @return stdClass The submission
2228 public function get_user_submission($userid, $create) {
2232 $userid = $USER->id;
2234 // If the userid is not null then use userid.
2235 $params = array('assignment'=>$this->get_instance()->id, 'userid'=>$userid, 'groupid'=>0);
2236 $submission = $DB->get_record('assign_submission', $params);
2242 $submission = new stdClass();
2243 $submission->assignment = $this->get_instance()->id;
2244 $submission->userid = $userid;
2245 $submission->timecreated = time();
2246 $submission->timemodified = $submission->timecreated;
2247 $submission->status = ASSIGN_SUBMISSION_STATUS_DRAFT;
2248 $sid = $DB->insert_record('assign_submission', $submission);
2249 $submission->id = $sid;
2256 * Load the submission object from it's id.
2258 * @param int $submissionid The id of the submission we want
2259 * @return stdClass The submission
2261 protected function get_submission($submissionid) {
2264 $params = array('assignment'=>$this->get_instance()->id, 'id'=>$submissionid);
2265 return $DB->get_record('assign_submission', $params, '*', MUST_EXIST);
2269 * This will retrieve a grade object from the db, optionally creating it if required.
2271 * @param int $userid The user we are grading
2272 * @param bool $create If true the grade will be created if it does not exist
2273 * @return stdClass The grade record
2275 public function get_user_grade($userid, $create) {
2279 $userid = $USER->id;
2282 // If the userid is not null then use userid.
2283 $grade = $DB->get_record('assign_grades', array('assignment'=>$this->get_instance()->id, 'userid'=>$userid));
2289 $grade = new stdClass();
2290 $grade->assignment = $this->get_instance()->id;
2291 $grade->userid = $userid;
2292 $grade->timecreated = time();
2293 $grade->timemodified = $grade->timecreated;
2296 $grade->grader = $USER->id;
2297 $grade->extensionduedate = 0;
2299 // The mailed flag can be one of 3 values: 0 is unsent, 1 is sent and 2 is do not send yet.
2300 // This is because students only want to be notified about certain types of update (grades and feedback).
2302 $gid = $DB->insert_record('assign_grades', $grade);
2310 * This will retrieve a grade object from the db.
2312 * @param int $gradeid The id of the grade
2313 * @return stdClass The grade record
2315 protected function get_grade($gradeid) {
2318 $params = array('assignment'=>$this->get_instance()->id, 'id'=>$gradeid);
2319 return $DB->get_record('assign_grades', $params, '*', MUST_EXIST);
2323 * Print the grading page for a single user submission.
2325 * @param moodleform $mform
2326 * @param int $offset
2329 protected function view_single_grade_page($mform, $offset=0) {
2333 $instance = $this->get_instance();
2335 require_once($CFG->dirroot . '/mod/assign/gradeform.php');
2337 // Need submit permission to submit an assignment.
2338 require_capability('mod/assign:grade', $this->context);
2340 $header = new assign_header($instance,
2341 $this->get_context(),
2343 $this->get_course_module()->id,
2344 get_string('grading', 'assign'));
2345 $o .= $this->get_renderer()->render($header);
2347 $rownum = required_param('rownum', PARAM_INT) + $offset;
2348 $useridlist = optional_param('useridlist', '', PARAM_TEXT);
2350 $useridlist = explode(',', $useridlist);
2352 $useridlist = $this->get_grading_userid_list();
2355 $userid = $useridlist[$rownum];
2356 if ($rownum == count($useridlist) - 1) {
2360 throw new coding_exception('Row is out of bounds for the current grading table: ' . $rownum);
2362 $user = $DB->get_record('user', array('id' => $userid));
2364 $viewfullnames = has_capability('moodle/site:viewfullnames', $this->get_course_context());
2365 $usersummary = new assign_user_summary($user,
2366 $this->get_course()->id,
2368 $this->is_blind_marking(),
2369 $this->get_uniqueid_for_user($user->id));
2370 $o .= $this->get_renderer()->render($usersummary);
2372 $submission = $this->get_user_submission($userid, false);
2373 $submissiongroup = null;
2374 $submissiongroupmemberswhohavenotsubmitted = array();
2375 $teamsubmission = null;
2376 $notsubmitted = array();
2377 if ($instance->teamsubmission) {
2378 $teamsubmission = $this->get_group_submission($userid, 0, false);
2379 $submissiongroup = $this->get_submission_group($userid);
2381 if ($submissiongroup) {
2382 $groupid = $submissiongroup->id;
2384 $notsubmitted = $this->get_submission_group_members_who_have_not_submitted($groupid, false);
2388 // Get the current grade.
2389 $grade = $this->get_user_grade($userid, false);
2390 if ($this->can_view_submission($userid)) {
2391 $gradelocked = ($grade && $grade->locked) || $this->grading_disabled($userid);
2392 $extensionduedate = null;
2394 $extensionduedate = $grade->extensionduedate;
2396 $showedit = $this->submissions_open($userid) && ($this->is_any_submission_plugin_enabled());
2398 if ($teamsubmission) {
2399 $showsubmit = $showedit &&
2401 ($teamsubmission->status == ASSIGN_SUBMISSION_STATUS_DRAFT);
2403 $showsubmit = $showedit &&
2405 ($submission->status == ASSIGN_SUBMISSION_STATUS_DRAFT);
2407 if (!$this->get_instance()->submissiondrafts) {
2408 $showsubmit = false;
2410 $viewfullnames = has_capability('moodle/site:viewfullnames', $this->get_course_context());
2412 $submissionstatus = new assign_submission_status($instance->allowsubmissionsfromdate,
2413 $instance->alwaysshowdescription,
2415 $instance->teamsubmission,
2419 $this->is_any_submission_plugin_enabled(),
2421 $this->is_graded($userid),
2423 $instance->cutoffdate,
2424 $this->get_submission_plugins(),
2425 $this->get_return_action(),
2426 $this->get_return_params(),
2427 $this->get_course_module()->id,
2428 $this->get_course()->id,
2429 assign_submission_status::GRADER_VIEW,
2434 $this->get_context(),
2435 $this->is_blind_marking(),
2437 $o .= $this->get_renderer()->render($submissionstatus);
2440 $data = new stdClass();
2441 if ($grade->grade !== null && $grade->grade >= 0) {
2442 $data->grade = format_float($grade->grade, 2);
2445 $data = new stdClass();
2449 // Now show the grading form.
2451 $pagination = array( 'rownum'=>$rownum, 'useridlist'=>$useridlist, 'last'=>$last);
2452 $formparams = array($this, $data, $pagination);
2453 $mform = new mod_assign_grade_form(null,
2457 array('class'=>'gradeform'));
2459 $o .= $this->get_renderer()->render(new assign_form('gradingform', $mform));
2461 $msg = get_string('viewgradingformforstudent',
2463 array('id'=>$user->id, 'fullname'=>fullname($user)));
2464 $this->add_to_log('view grading form', $msg);
2466 $o .= $this->view_footer();
2471 * Show a confirmation page to make sure they want to release student identities.
2475 protected function view_reveal_identities_confirm() {
2478 require_capability('mod/assign:revealidentities', $this->get_context());
2481 $header = new assign_header($this->get_instance(),
2482 $this->get_context(),
2484 $this->get_course_module()->id);
2485 $o .= $this->get_renderer()->render($header);
2487 $urlparams = array('id'=>$this->get_course_module()->id,
2488 'action'=>'revealidentitiesconfirm',
2489 'sesskey'=>sesskey());
2490 $confirmurl = new moodle_url('/mod/assign/view.php', $urlparams);
2492 $urlparams = array('id'=>$this->get_course_module()->id,
2493 'action'=>'grading');
2494 $cancelurl = new moodle_url('/mod/assign/view.php', $urlparams);
2496 $o .= $this->get_renderer()->confirm(get_string('revealidentitiesconfirm', 'assign'),
2499 $o .= $this->view_footer();
2500 $this->add_to_log('view', get_string('viewrevealidentitiesconfirm', 'assign'));
2505 * View a link to go back to the previous page. Uses url parameters returnaction and returnparams.
2509 protected function view_return_links() {
2510 $returnaction = optional_param('returnaction', '', PARAM_ALPHA);
2511 $returnparams = optional_param('returnparams', '', PARAM_TEXT);
2514 parse_str($returnparams, $params);
2515 $newparams = array('id' => $this->get_course_module()->id, 'action' => $returnaction);
2516 $params = array_merge($newparams, $params);
2518 $url = new moodle_url('/mod/assign/view.php', $params);
2519 return $this->get_renderer()->single_button($url, get_string('back'), 'get');
2523 * View the grading table of all submissions for this assignment.
2527 protected function view_grading_table() {
2530 // Include grading options form.
2531 require_once($CFG->dirroot . '/mod/assign/gradingoptionsform.php');
2532 require_once($CFG->dirroot . '/mod/assign/quickgradingform.php');
2533 require_once($CFG->dirroot . '/mod/assign/gradingbatchoperationsform.php');
2535 $cmid = $this->get_course_module()->id;
2538 if (has_capability('gradereport/grader:view', $this->get_course_context()) &&
2539 has_capability('moodle/grade:viewall', $this->get_course_context())) {
2540 $gradebookurl = '/grade/report/grader/index.php?id=' . $this->get_course()->id;
2541 $links[$gradebookurl] = get_string('viewgradebook', 'assign');
2543 if ($this->is_any_submission_plugin_enabled()) {
2544 $downloadurl = '/mod/assign/view.php?id=' . $cmid . '&action=downloadall';
2545 $links[$downloadurl] = get_string('downloadall', 'assign');
2547 if ($this->is_blind_marking() &&
2548 has_capability('mod/assign:revealidentities', $this->get_context())) {
2549 $revealidentitiesurl = '/mod/assign/view.php?id=' . $cmid . '&action=revealidentities';
2550 $links[$revealidentitiesurl] = get_string('revealidentities', 'assign');
2552 foreach ($this->get_feedback_plugins() as $plugin) {
2553 if ($plugin->is_enabled() && $plugin->is_visible()) {
2554 foreach ($plugin->get_grading_actions() as $action => $description) {
2555 $url = '/mod/assign/view.php' .
2557 '&plugin=' . $plugin->get_type() .
2558 '&pluginsubtype=assignfeedback' .
2559 '&action=viewpluginpage&pluginaction=' . $action;
2560 $links[$url] = $description;
2565 $gradingactions = new url_select($links);
2566 $gradingactions->set_label(get_string('choosegradingaction', 'assign'));
2568 $gradingmanager = get_grading_manager($this->get_context(), 'mod_assign', 'submissions');
2570 $perpage = get_user_preferences('assign_perpage', 10);
2571 $filter = get_user_preferences('assign_filter', '');
2572 $controller = $gradingmanager->get_active_controller();
2573 $showquickgrading = empty($controller);
2574 if (optional_param('action', '', PARAM_ALPHA) == 'saveoptions') {
2575 $quickgrading = optional_param('quickgrading', false, PARAM_BOOL);
2576 set_user_preference('assign_quickgrading', $quickgrading);
2578 $quickgrading = get_user_preferences('assign_quickgrading', false);
2580 // Print options for changing the filter and changing the number of results per page.
2581 $gradingoptionsformparams = array('cm'=>$cmid,
2582 'contextid'=>$this->context->id,
2583 'userid'=>$USER->id,
2584 'submissionsenabled'=>$this->is_any_submission_plugin_enabled(),
2585 'showquickgrading'=>$showquickgrading,
2586 'quickgrading'=>$quickgrading);
2588 $classoptions = array('class'=>'gradingoptionsform');
2589 $gradingoptionsform = new mod_assign_grading_options_form(null,
2590 $gradingoptionsformparams,
2595 $batchformparams = array('cm'=>$cmid,
2596 'submissiondrafts'=>$this->get_instance()->submissiondrafts,
2597 'duedate'=>$this->get_instance()->duedate,
2598 'feedbackplugins'=>$this->get_feedback_plugins());
2599 $classoptions = array('class'=>'gradingbatchoperationsform');
2601 $gradingbatchoperationsform = new mod_assign_grading_batch_operations_form(null,
2607 $gradingoptionsdata = new stdClass();
2608 $gradingoptionsdata->perpage = $perpage;
2609 $gradingoptionsdata->filter = $filter;
2610 $gradingoptionsform->set_data($gradingoptionsdata);
2612 $actionformtext = $this->get_renderer()->render($gradingactions);
2613 $header = new assign_header($this->get_instance(),
2614 $this->get_context(),
2616 $this->get_course_module()->id,
2617 get_string('grading', 'assign'),
2619 $o .= $this->get_renderer()->render($header);
2621 $currenturl = $CFG->wwwroot .
2622 '/mod/assign/view.php?id=' .
2623 $this->get_course_module()->id .
2626 $o .= groups_print_activity_menu($this->get_course_module(), $currenturl, true);
2628 // Plagiarism update status apearring in the grading book.
2629 if (!empty($CFG->enableplagiarism)) {
2630 require_once($CFG->libdir . '/plagiarismlib.php');
2631 $o .= plagiarism_update_status($this->get_course(), $this->get_course_module());
2634 // Load and print the table of submissions.
2635 if ($showquickgrading && $quickgrading) {
2636 $gradingtable = new assign_grading_table($this, $perpage, $filter, 0, true);
2637 $table = $this->get_renderer()->render($gradingtable);
2638 $quickformparams = array('cm'=>$this->get_course_module()->id, 'gradingtable'=>$table);
2639 $quickgradingform = new mod_assign_quick_grading_form(null, $quickformparams);
2641 $o .= $this->get_renderer()->render(new assign_form('quickgradingform', $quickgradingform));
2643 $gradingtable = new assign_grading_table($this, $perpage, $filter, 0, false);
2644 $o .= $this->get_renderer()->render($gradingtable);
2647 $currentgroup = groups_get_activity_group($this->get_course_module(), true);
2648 $users = array_keys($this->list_participants($currentgroup, true));
2649 if (count($users) != 0) {
2650 // If no enrolled user in a course then don't display the batch operations feature.
2651 $assignform = new assign_form('gradingbatchoperationsform', $gradingbatchoperationsform);
2652 $o .= $this->get_renderer()->render($assignform);
2654 $assignform = new assign_form('gradingoptionsform',
2655 $gradingoptionsform,
2656 'M.mod_assign.init_grading_options');
2657 $o .= $this->get_renderer()->render($assignform);
2662 * View entire grading page.
2666 protected function view_grading_page() {
2670 // Need submit permission to submit an assignment.
2671 require_capability('mod/assign:grade', $this->context);
2672 require_once($CFG->dirroot . '/mod/assign/gradeform.php');
2674 // Only load this if it is.
2676 $o .= $this->view_grading_table();
2678 $o .= $this->view_footer();
2680 $logmessage = get_string('viewsubmissiongradingtable', 'assign');
2681 $this->add_to_log('view submission grading table', $logmessage);
2686 * Capture the output of the plagiarism plugins disclosures and return it as a string.
2690 protected function plagiarism_print_disclosure() {
2694 if (!empty($CFG->enableplagiarism)) {
2695 require_once($CFG->libdir . '/plagiarismlib.php');
2697 $o .= plagiarism_print_disclosure($this->get_course_module()->id);
2704 * Message for students when assignment submissions have been closed.
2708 protected function view_student_error_message() {
2712 // Need submit permission to submit an assignment.
2713 require_capability('mod/assign:submit', $this->context);
2715 $header = new assign_header($this->get_instance(),
2716 $this->get_context(),
2717 $this->show_intro(),
2718 $this->get_course_module()->id,
2719 get_string('editsubmission', 'assign'));
2720 $o .= $this->get_renderer()->render($header);
2722 $o .= $this->get_renderer()->notification(get_string('submissionsclosed', 'assign'));
2724 $o .= $this->view_footer();
2731 * View edit submissions page.
2733 * @param moodleform $mform
2734 * @param array $notices A list of notices to display at the top of the
2735 * edit submission form (e.g. from plugins).
2738 protected function view_edit_submission_page($mform, $notices) {
2742 require_once($CFG->dirroot . '/mod/assign/submission_form.php');
2743 // Need submit permission to submit an assignment.
2744 require_capability('mod/assign:submit', $this->context);
2746 if (!$this->submissions_open()) {
2747 return $this->view_student_error_message();
2749 $o .= $this->get_renderer()->render(new assign_header($this->get_instance(),
2750 $this->get_context(),
2751 $this->show_intro(),
2752 $this->get_course_module()->id,
2753 get_string('editsubmission', 'assign')));
2754 $o .= $this->plagiarism_print_disclosure();
2755 $data = new stdClass();
2758 $mform = new mod_assign_submission_form(null, array($this, $data));
2761 foreach ($notices as $notice) {
2762 $o .= $this->get_renderer()->notification($notice);
2765 $o .= $this->get_renderer()->render(new assign_form('editsubmissionform', $mform));
2767 $o .= $this->view_footer();
2768 $this->add_to_log('view submit assignment form', get_string('viewownsubmissionform', 'assign'));
2774 * See if this assignment has a grade yet.
2776 * @param int $userid
2779 protected function is_graded($userid) {
2780 $grade = $this->get_user_grade($userid, false);
2782 return ($grade->grade !== null && $grade->grade >= 0);
2788 * Perform an access check to see if the current $USER can view this users submission.
2790 * @param int $userid
2793 public function can_view_submission($userid) {
2796 if (!is_enrolled($this->get_course_context(), $userid)) {
2799 if ($userid == $USER->id && has_capability('mod/assign:submit', $this->context)) {
2802 if (has_capability('mod/assign:grade', $this->context)) {
2809 * Allows the plugin to show a batch grading operation page.
2813 protected function view_plugin_grading_batch_operation($mform) {
2814 require_capability('mod/assign:grade', $this->context);
2815 $prefix = 'plugingradingbatchoperation_';
2817 if ($data = $mform->get_data()) {
2818 $tail = substr($data->operation, strlen($prefix));
2819 list($plugintype, $action) = explode('_', $tail, 2);
2821 $plugin = $this->get_feedback_plugin_by_type($plugintype);
2823 $users = $data->selectedusers;
2824 $userlist = explode(',', $users);
2825 echo $plugin->grading_batch_operation($action, $userlist);
2829 print_error('invalidformdata', '');
2833 * Ask the user to confirm they want to perform this batch operation
2835 * @param moodleform $mform Set to a grading batch operations form
2836 * @return string - the page to view after processing these actions
2838 protected function process_grading_batch_operation(& $mform) {
2840 require_once($CFG->dirroot . '/mod/assign/gradingbatchoperationsform.php');
2843 $batchformparams = array('cm'=>$this->get_course_module()->id,
2844 'submissiondrafts'=>$this->get_instance()->submissiondrafts,
2845 'duedate'=>$this->get_instance()->duedate,
2846 'feedbackplugins'=>$this->get_feedback_plugins());
2847 $formclasses = array('class'=>'gradingbatchoperationsform');
2848 $mform = new mod_assign_grading_batch_operations_form(null,
2854 if ($data = $mform->get_data()) {
2855 // Get the list of users.
2856 $users = $data->selectedusers;
2857 $userlist = explode(',', $users);
2859 $prefix = 'plugingradingbatchoperation_';
2861 if ($data->operation == 'grantextension') {
2862 // Reset the form so the grant extension page will create the extension form.
2864 return 'grantextension';
2865 } else if (strpos($data->operation, $prefix) === 0) {
2866 $tail = substr($data->operation, strlen($prefix));
2867 list($plugintype, $action) = explode('_', $tail, 2);
2869 $plugin = $this->get_feedback_plugin_by_type($plugintype);
2871 return 'plugingradingbatchoperation';
2875 foreach ($userlist as $userid) {
2876 if ($data->operation == 'lock') {
2877 $this->process_lock($userid);
2878 } else if ($data->operation == 'unlock') {
2879 $this->process_unlock($userid);
2880 } else if ($data->operation == 'reverttodraft') {
2881 $this->process_revert_to_draft($userid);
2890 * Ask the user to confirm they want to submit their work for grading.
2892 * @param $mform moodleform - null unless form validation has failed
2895 protected function check_submit_for_grading($mform) {
2898 require_once($CFG->dirroot . '/mod/assign/submissionconfirmform.php');
2900 // Check that all of the submission plugins are ready for this submission.
2901 $notifications = array();
2902 $submission = $this->get_user_submission($USER->id, false);
2903 $plugins = $this->get_submission_plugins();
2904 foreach ($plugins as $plugin) {
2905 if ($plugin->is_enabled() && $plugin->is_visible()) {
2906 $check = $plugin->precheck_submission($submission);
2907 if ($check !== true) {
2908 $notifications[] = $check;
2913 $data = new stdClass();
2914 $adminconfig = $this->get_admin_config();
2915 $requiresubmissionstatement = (!empty($adminconfig->requiresubmissionstatement) ||
2916 $this->get_instance()->requiresubmissionstatement) &&
2917 !empty($adminconfig->submissionstatement);
2919 $submissionstatement = '';
2920 if (!empty($adminconfig->submissionstatement)) {
2921 $submissionstatement = $adminconfig->submissionstatement;
2924 if ($mform == null) {
2925 $mform = new mod_assign_confirm_submission_form(null, array($requiresubmissionstatement,
2926 $submissionstatement,
2927 $this->get_course_module()->id,
2931 $o .= $this->get_renderer()->header();
2932 $submitforgradingpage = new assign_submit_for_grading_page($notifications,
2933 $this->get_course_module()->id,
2935 $o .= $this->get_renderer()->render($submitforgradingpage);
2936 $o .= $this->view_footer();
2938 $logmessage = get_string('viewownsubmissionform', 'assign');
2939 $this->add_to_log('view confirm submit assignment form', $logmessage);
2945 * Print 2 tables of information with no action links -
2946 * the submission summary and the grading summary.
2948 * @param stdClass $user the user to print the report for
2949 * @param bool $showlinks - Return plain text or links to the profile
2950 * @return string - the html summary
2952 public function view_student_summary($user, $showlinks) {
2953 global $CFG, $DB, $PAGE;
2955 $instance = $this->get_instance();
2956 $grade = $this->get_user_grade($user->id, false);
2957 $submission = $this->get_user_submission($user->id, false);
2960 $teamsubmission = null;
2961 $submissiongroup = null;
2962 $notsubmitted = array();
2963 if ($instance->teamsubmission) {
2964 $teamsubmission = $this->get_group_submission($user->id, 0, false);
2965 $submissiongroup = $this->get_submission_group($user->id);
2967 if ($submissiongroup) {
2968 $groupid = $submissiongroup->id;
2970 $notsubmitted = $this->get_submission_group_members_who_have_not_submitted($groupid, false);
2973 if ($this->can_view_submission($user->id)) {
2974 $showedit = has_capability('mod/assign:submit', $this->context) &&
2975 $this->submissions_open($user->id) &&
2976 ($this->is_any_submission_plugin_enabled()) &&
2979 $gradelocked = ($grade && $grade->locked) || $this->grading_disabled($user->id);
2981 // Grading criteria preview.
2982 $gradingmanager = get_grading_manager($this->context, 'mod_assign', 'submissions');
2983 $gradingcontrollerpreview = '';
2984 if ($gradingmethod = $gradingmanager->get_active_method()) {
2985 $controller = $gradingmanager->get_controller($gradingmethod);
2986 if ($controller->is_form_defined()) {
2987 $gradingcontrollerpreview = $controller->render_preview($PAGE);
2991 $showsubmit = ($submission || $teamsubmission) && $showlinks;
2992 if ($teamsubmission && ($teamsubmission->status == ASSIGN_SUBMISSION_STATUS_SUBMITTED)) {
2993 $showsubmit = false;
2995 if ($submission && ($submission->status == ASSIGN_SUBMISSION_STATUS_SUBMITTED)) {
2996 $showsubmit = false;
2998 if (!$this->get_instance()->submissiondrafts) {
2999 $showsubmit = false;
3001 $extensionduedate = null;
3003 $extensionduedate = $grade->extensionduedate;
3005 $viewfullnames = has_capability('moodle/site:viewfullnames', $this->get_course_context());
3007 $submissionstatus = new assign_submission_status($instance->allowsubmissionsfromdate,
3008 $instance->alwaysshowdescription,
3010 $instance->teamsubmission,
3014 $this->is_any_submission_plugin_enabled(),
3016 $this->is_graded($user->id),
3018 $instance->cutoffdate,
3019 $this->get_submission_plugins(),
3020 $this->get_return_action(),
3021 $this->get_return_params(),
3022 $this->get_course_module()->id,
3023 $this->get_course()->id,
3024 assign_submission_status::STUDENT_VIEW,
3029 $this->get_context(),
3030 $this->is_blind_marking(),
3031 $gradingcontrollerpreview);
3032 $o .= $this->get_renderer()->render($submissionstatus);
3034 require_once($CFG->libdir.'/gradelib.php');
3035 require_once($CFG->dirroot.'/grade/grading/lib.php');
3037 $gradinginfo = grade_get_grades($this->get_course()->id,
3043 $gradingitem = $gradinginfo->items[0];
3044 $gradebookgrade = $gradingitem->grades[$user->id];
3046 // Check to see if all feedback plugins are empty.
3047 $emptyplugins = true;
3049 foreach ($this->get_feedback_plugins() as $plugin) {
3050 if ($plugin->is_visible() && $plugin->is_enabled()) {
3051 if (!$plugin->is_empty($grade)) {
3052 $emptyplugins = false;
3058 if (!($gradebookgrade->hidden) && ($gradebookgrade->grade !== null || !$emptyplugins)) {
3060 $gradefordisplay = '';
3061 $gradingmanager = get_grading_manager($this->get_context(), 'mod_assign', 'submissions');
3063 if ($controller = $gradingmanager->get_active_controller()) {
3064 $controller->set_grade_range(make_grades_menu($this->get_instance()->grade));
3065 $cangrade = has_capability('mod/assign:grade', $this->get_context());
3066 $gradefordisplay = $controller->render_grade($PAGE,
3069 $gradebookgrade->str_long_grade,
3072 $gradefordisplay = $this->display_grade($gradebookgrade->grade, false);
3075 $gradeddate = $gradebookgrade->dategraded;
3076 $grader = $DB->get_record('user', array('id'=>$grade->grader));
3078 $feedbackstatus = new assign_feedback_status($gradefordisplay,
3081 $this->get_feedback_plugins(),
3083 $this->get_course_module()->id,
3084 $this->get_return_action(),
3085 $this->get_return_params());
3087 $o .= $this->get_renderer()->render($feedbackstatus);
3095 * View submissions page (contains details of current submission).
3099 protected function view_submission_page() {
3100 global $CFG, $DB, $USER, $PAGE;
3102 $instance = $this->get_instance();
3105 $o .= $this->get_renderer()->render(new assign_header($instance,
3106 $this->get_context(),
3107 $this->show_intro(),
3108 $this->get_course_module()->id));
3110 if ($this->can_grade()) {
3111 $draft = ASSIGN_SUBMISSION_STATUS_DRAFT;
3112 $submitted = ASSIGN_SUBMISSION_STATUS_SUBMITTED;
3113 if ($instance->teamsubmission) {
3114 $summary = new assign_grading_summary($this->count_teams(),
3115 $instance->submissiondrafts,
3116 $this->count_submissions_with_status($draft),
3117 $this->is_any_submission_plugin_enabled(),
3118 $this->count_submissions_with_status($submitted),
3119 $instance->cutoffdate,
3121 $this->get_course_module()->id,
3122 $this->count_submissions_need_grading(),
3123 $instance->teamsubmission);
3124 $o .= $this->get_renderer()->render($summary);
3126 $summary = new assign_grading_summary($this->count_participants(0),
3127 $instance->submissiondrafts,
3128 $this->count_submissions_with_status($draft),
3129 $this->is_any_submission_plugin_enabled(),
3130 $this->count_submissions_with_status($submitted),
3131 $instance->cutoffdate,
3133 $this->get_course_module()->id,
3134 $this->count_submissions_need_grading(),
3135 $instance->teamsubmission);
3136 $o .= $this->get_renderer()->render($summary);
3139 $grade = $this->get_user_grade($USER->id, false);
3140 $submission = $this->get_user_submission($USER->id, false);
3142 if ($this->can_view_submission($USER->id)) {
3143 $o .= $this->view_student_summary($USER, true);
3146 $o .= $this->view_footer();
3147 $this->add_to_log('view', get_string('viewownsubmissionstatus', 'assign'));
3152 * Convert the final raw grade(s) in the grading table for the gradebook.
3154 * @param stdClass $grade
3157 protected function convert_grade_for_gradebook(stdClass $grade) {
3158 $gradebookgrade = array();
3159 if ($grade->grade >= 0) {
3160 $gradebookgrade['rawgrade'] = $grade->grade;
3162 $gradebookgrade['userid'] = $grade->userid;
3163 $gradebookgrade['usermodified'] = $grade->grader;
3164 $gradebookgrade['datesubmitted'] = null;
3165 $gradebookgrade['dategraded'] = $grade->timemodified;
3166 if (isset($grade->feedbackformat)) {
3167 $gradebookgrade['feedbackformat'] = $grade->feedbackformat;
3169 if (isset($grade->feedbacktext)) {
3170 $gradebookgrade['feedback'] = $grade->feedbacktext;
3173 return $gradebookgrade;
3177 * Convert submission details for the gradebook.
3179 * @param stdClass $submission
3182 protected function convert_submission_for_gradebook(stdClass $submission) {
3183 $gradebookgrade = array();
3185 $gradebookgrade['userid'] = $submission->userid;
3186 $gradebookgrade['usermodified'] = $submission->userid;
3187 $gradebookgrade['datesubmitted'] = $submission->timemodified;
3189 return $gradebookgrade;
3193 * Update grades in the gradebook.
3195 * @param mixed $submission stdClass|null
3196 * @param mixed $grade stdClass|null
3199 protected function gradebook_item_update($submission=null, $grade=null) {
3201 // Do not push grade to gradebook if blind marking is active as
3202 // the gradebook would reveal the students.
3203 if ($this->is_blind_marking()) {
3206 if ($submission != null) {
3207 if ($submission->userid == 0) {
3208 // This is a group submission update.
3209 $team = groups_get_members($submission->groupid, 'u.id');
3211 foreach ($team as $member) {
3212 $submission->groupid = 0;
3213 $submission->userid = $member->id;
3214 $this->gradebook_item_update($submission, null);
3219 $gradebookgrade = $this->convert_submission_for_gradebook($submission);
3222 $gradebookgrade = $this->convert_grade_for_gradebook($grade);
3224 // Grading is disabled, return.
3225 if ($this->grading_disabled($gradebookgrade['userid'])) {
3228 $assign = clone $this->get_instance();
3229 $assign->cmidnumber = $this->get_course_module()->id;
3231 return assign_grade_item_update($assign, $gradebookgrade);
3235 * Update team submission.