mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 17:36:38 +02:00
17 lines
366 B
PHP
17 lines
366 B
PHP
<?php // $Id$
|
|
|
|
$gradeexport_txt_capabilities = array(
|
|
|
|
'gradeexport/txt:view' => array(
|
|
'riskbitmask' => RISK_PERSONAL,
|
|
'captype' => 'read',
|
|
'contextlevel' => CONTEXT_COURSE,
|
|
'legacy' => array(
|
|
'teacher' => CAP_ALLOW,
|
|
'editingteacher' => CAP_ALLOW,
|
|
'admin' => CAP_ALLOW
|
|
)
|
|
)
|
|
);
|
|
|
|
?>
|