mirror of
https://github.com/moodle/moodle.git
synced 2025-02-08 09:02:07 +01:00
16 lines
258 B
PHP
16 lines
258 B
PHP
|
<?php // $Id$
|
||
|
|
||
|
$enrol_authorize_capabilities = array(
|
||
|
|
||
|
'enrol/authorize:managepayments' => array(
|
||
|
'captype' => 'write',
|
||
|
'contextlevel' => CONTEXT_SYSTEM,
|
||
|
'legacy' => array(
|
||
|
'admin' => CAP_ALLOW
|
||
|
)
|
||
|
)
|
||
|
|
||
|
);
|
||
|
|
||
|
?>
|