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