. /** * @package enrol_apply * @copyright emeneo.com (http://emeneo.com/) * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @author emeneo.com (http://emeneo.com/) * @author Johannes Burk */ defined('MOODLE_INTERNAL') || die(); $capabilities = array( /* Add, edit or remove manual enrol instance. */ 'enrol/apply:config' => array( 'captype' => 'write', 'contextlevel' => CONTEXT_COURSE, 'archetypes' => array( 'editingteacher' => CAP_ALLOW, 'manager' => CAP_ALLOW, ) ), /* Enrolment approval. * If granted on CONTEXT_SYSTEM level it allows approval for all courses * at Site Administration -> Courses -> Manage enrolment applications. */ 'enrol/apply:manageapplications' => array( 'captype' => 'write', 'contextlevel' => CONTEXT_COURSE, 'archetypes' => array( 'editingteacher' => CAP_ALLOW, 'manager' => CAP_ALLOW, ) ), /* Manage enrolments of users. */ 'enrol/apply:manage' => array( 'captype' => 'write', 'contextlevel' => CONTEXT_COURSE, 'archetypes' => array( 'manager' => CAP_ALLOW, 'editingteacher' => CAP_ALLOW, ) ), /* Unenrol a user */ 'enrol/apply:unenrol' => array( 'captype' => 'write', 'contextlevel' => CONTEXT_COURSE, 'archetypes' => array( 'editingteacher' => CAP_ALLOW, 'manager' => CAP_ALLOW, ) ), /* Allow a user to unenrol himself */ 'enrol/apply:unenrolself' => array( 'captype' => 'write', 'contextlevel' => CONTEXT_COURSE, 'archetypes' => array( 'student' => CAP_ALLOW, ) ), );