notify grader about submission - 2.5 - change default

notify grader about submission - 2.5 - change default

Barbara Taylor -
回帖数:4

The default is to notify graders of submissions and late submissions.  How can we change this to no?  Our faculty will not want to get a notice everytime an assignment is submitted.

Thank you,

Barbara

回复Barbara Taylor

Re: notify grader about submission - 2.5 - change default

Eric Bryant -

Barbara,

If I understand your question properly, there are two methods for accomplishing this.

(1) Site wide via messaging settings: http://your_site/message/defaultoutputs.php

(2) Individual via profile settings
Home / ► My profile settings / ► Messaging

Hope that helps.

回复Eric Bryant

Re: notify grader about submission - 2.5 - change default

Helen Foster -
Core developers的头像 Documentation writers的头像 Moodle HQ的头像 Particularly helpful Moodlers的头像 Plugin developers的头像 Testers的头像 Translators的头像

Good news: coming in Moodle 2.6 are admin settings for specifying the default values for assignment settings, including 'Notify graders about submissions' (MDL-37621).

In the meantime, I can sympathise with all your unwanted assignment submission notifications, Barbara. 眨眼

回复Helen Foster

Re: notify grader about submission - 2.5 - change default

Richard Oelmann -
Core developers的头像 Plugin developers的头像 Testers的头像

And if you cant wait that long, there's a proof of concept backport of the 2.6 assign to Moodle 2.5 here

Note: I am saying this is a proof of concept only simply because I cannot guarantee to maintain the github repository with all the updates that will go into assign for 2.6 as it is developed 微笑 I will do my best to update it periodically, but wont be able to keep up with the rate of change that often occurs in the development process. That said, once the changes to the course, lang and lib folders in the github repository are in place, you should be able to replace the most current mod/assign folder anyway (subject to further changes!)

回复Barbara Taylor

Re: notify grader about submission - 2.5 - change default

steve miley -

Hi, we too had lots of instructors complaining.  we'd tell them to change the assignment setting.    Today, we changed the defaults by modifying the code -

here is the code diff

## basically change 1 to 0 in 2 spots. 

 

diff --git a/mod/assign/mod_form.php b/mod/assign/mod_form.php
index 4101ab1..0e0fc81 100644
--- a/mod/assign/mod_form.php
+++ b/mod/assign/mod_form.php
@@ -169,12 +169,14 @@ class mod_assign_mod_form extends moodleform_mod {
$name = get_string('sendnotifications', 'assign');
$mform->addElement('selectyesno', 'sendnotifications', $name);
$mform->addHelpButton('sendnotifications', 'sendnotifications', 'assign');
- $mform->setDefault('sendnotifications', 1);
+// UCSB SRM 10.14.2013 change defaults to no
+ $mform->setDefault('sendnotifications', 0);

$name = get_string('sendlatenotifications', 'assign');
$mform->addElement('selectyesno', 'sendlatenotifications', $name);
$mform->addHelpButton('sendlatenotifications', 'sendlatenotifications', 'assign');
- $mform->setDefault('sendlatenotifications', 1);
+// UCSB SRM 10.14.2013 change defaults to no
+ $mform->setDefault('sendlatenotifications', 0);
$mform->disabledIf('sendlatenotifications', 'sendnotifications', 'eq', 1);