You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.8 KiB
67 lines
1.8 KiB
11 years ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* *************************************************************************
|
||
|
* * Apply Enrol **
|
||
|
* *************************************************************************
|
||
|
* @copyright emeneo.com **
|
||
|
* @link emeneo.com **
|
||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later **
|
||
|
* *************************************************************************
|
||
|
* ************************************************************************
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Capabilities for apply enrolment plugin.
|
||
|
*
|
||
|
* @package enrol
|
||
|
* @subpackage apply
|
||
|
* @copyright 2010 Petr Skoda {@link http://skodak.org}
|
||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||
|
*/
|
||
|
|
||
|
defined('MOODLE_INTERNAL') || die();
|
||
|
|
||
|
$capabilities = array(
|
||
|
|
||
|
'enrol/apply:config' => array(
|
||
|
|
||
|
'captype' => 'write',
|
||
|
'contextlevel' => CONTEXT_COURSE,
|
||
|
'archetypes' => array(
|
||
|
'editingteacher' => CAP_ALLOW,
|
||
|
'manager' => CAP_ALLOW,
|
||
|
)
|
||
|
),
|
||
|
|
||
|
'enrol/apply:manage' => array(
|
||
|
|
||
|
'captype' => 'write',
|
||
|
'contextlevel' => CONTEXT_COURSE,
|
||
|
'archetypes' => array(
|
||
|
'editingteacher' => CAP_ALLOW,
|
||
|
'manager' => CAP_ALLOW,
|
||
|
)
|
||
|
),
|
||
|
|
||
|
'enrol/apply:unenrolapply' => array(
|
||
|
'captype' => 'write',
|
||
|
'contextlevel' => CONTEXT_COURSE,
|
||
|
'archetypes' => array(
|
||
|
'student' => CAP_ALLOW,
|
||
|
)
|
||
|
),
|
||
|
|
||
|
'enrol/apply:unenrol' => array(
|
||
|
'captype' => 'write',
|
||
|
'contextlevel' => CONTEXT_COURSE,
|
||
|
'archetypes' => array(
|
||
|
'editingteacher' => CAP_ALLOW,
|
||
|
'manager' => CAP_ALLOW,
|
||
|
)
|
||
|
),
|
||
|
|
||
|
);
|
||
|
|
||
|
|