. /** * @package enrol_apply * @copyright 2016 sudile GbR (http://www.sudile.com) * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @author Johannes Burk */ defined('MOODLE_INTERNAL') || die(); $messageproviders = array ( // Notify teacher/manager that a student has applied for a course enrolment. 'application' => array ( 'capability' => 'enrol/apply:manageapplications' ), // Notify student that his application was confirmed. 'confirmation' => array (), // Notify student that his application was canceled. 'cancelation' => array (), // Notify student that his application was deferred (put on a waiting list). 'waitinglist' => array (), );