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

ການຈັດອັນດັບສະເລ່ຍ: -