MDL-33600 Assign: Allow teachers to skip notifying students about grade update.

This commit is contained in:
Damyon Wiese 2013-12-16 11:27:23 +08:00
parent ab7f498343
commit f7dc9871e7
4 changed files with 21 additions and 2 deletions

View file

@ -52,6 +52,10 @@ class mod_assign_quick_grading_form extends moodleform {
$mform->addElement('hidden', 'action', 'quickgrade');
$mform->setType('action', PARAM_ALPHA);
// Skip notifications option.
$mform->addElement('selectyesno', 'sendstudentnotifications', get_string('sendstudentnotifications', 'assign'));
$mform->setDefault('sendstudentnotifications', 1);
// Buttons.
$savemessage = get_string('saveallquickgradingchanges', 'assign');
$mform->addElement('submit', 'savequickgrades', $savemessage);