MDL-41039 mod_quiz: Renaming event to attempt_becameoverdue

This commit is contained in:
Frederic Massart 2013-09-18 12:03:48 +08:00
parent d900f1dc05
commit 0a8b091d41
4 changed files with 9 additions and 6 deletions

View file

@ -50,10 +50,10 @@ $observers = array(
'callback' => '\mod_quiz\group_observers::group_member_removed',
),
// Handle our own \mod_quiz\event\attempt_timelimit_exceeded event, to email
// Handle our own \mod_quiz\event\attempt_becameoverdue event, to email
// the student to let them know they forgot to submit, and that they have another chance.
array(
'eventname' => '\mod_quiz\event\attempt_timelimit_exceeded',
'eventname' => '\mod_quiz\event\attempt_becameoverdue',
'includefile' => '/mod/quiz/locallib.php',
'callback' => 'quiz_attempt_overdue_handler',
'internal' => false,