notify grader about submission - 2.5 - change default

notify grader about submission - 2.5 - change default

de către Barbara Taylor-
Număr de răspunsuri: 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

Media aprecierilor: -
Ca răspuns la Barbara Taylor

Re: notify grader about submission - 2.5 - change default

de către 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.

Ca răspuns la Eric Bryant

Re: notify grader about submission - 2.5 - change default

de către Helen Foster-
Fotografia lui Core developers Fotografia lui Documentation writers Fotografia lui Moodle HQ Fotografia lui Particularly helpful Moodlers Fotografia lui Plugin developers Fotografia lui Testers Fotografia lui 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. face cu ochiul

Ca răspuns la Helen Foster

Re: notify grader about submission - 2.5 - change default

de către Richard Oelmann-
Fotografia lui Core developers Fotografia lui Plugin developers Fotografia lui 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 surâs 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!)

Ca răspuns la Barbara Taylor

Re: notify grader about submission - 2.5 - change default

de către 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);