mirror of
https://github.com/moodle/moodle.git
synced 2025-06-05 07:35:09 +02:00
26 lines
511 B
PHP
26 lines
511 B
PHP
<?php
|
|
|
|
$capabilities = array(
|
|
|
|
'enrol/authorize:managepayments' => array(
|
|
'riskbitmask' => RISK_PERSONAL,
|
|
'captype' => 'write',
|
|
'contextlevel' => CONTEXT_SYSTEM,
|
|
'archetypes' => array(
|
|
'manager' => CAP_ALLOW
|
|
)
|
|
),
|
|
|
|
'enrol/authorize:uploadcsv' => array(
|
|
'riskbitmask' => RISK_XSS,
|
|
'captype' => 'write',
|
|
'contextlevel' => CONTEXT_SYSTEM,
|
|
'archetypes' => array(
|
|
'manager' => CAP_ALLOW
|
|
)
|
|
)
|
|
|
|
);
|
|
|
|
|