. /** * Defines message providers (types of message sent) for the quiz module. * * @package mod * @subpackage quiz * @copyright 2010 Andrew Davis http://moodle.com * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); $messageproviders = array ( // Notify teacher that a student has submitted a quiz attempt 'submission' => array ( 'capability' => 'mod/quiz:emailnotifysubmission' ), // Confirm a student's quiz attempt 'confirmation' => array ( 'capability' => 'mod/quiz:emailconfirmsubmission' ) );