notify grader about submission - 2.5 - change default

notify grader about submission - 2.5 - change default

Barbara Taylordən -
Number of replies: 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

Orta qiymət: -
In reply to Barbara Taylor

Re: notify grader about submission - 2.5 - change default

Eric Bryantdən -

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.

In reply to Eric Bryant

Re: notify grader about submission - 2.5 - change default

Helen Fosterdən -
Core developers istifadəçinin şəkili Documentation writers istifadəçinin şəkili Moodle HQ istifadəçinin şəkili Particularly helpful Moodlers istifadəçinin şəkili Plugin developers istifadəçinin şəkili Testers istifadəçinin şəkili Translators istifadəçinin şəkili

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. göz vururam

In reply to Helen Foster

Re: notify grader about submission - 2.5 - change default

Richard Oelmanndən -
Core developers istifadəçinin şəkili Plugin developers istifadəçinin şəkili Testers istifadəçinin şəkili

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 gülürəm 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!)

In reply to Barbara Taylor

Re: notify grader about submission - 2.5 - change default

steve mileydən -

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);