First pass at grader report capabilities

This commit is contained in:
moodler 2007-06-18 07:24:03 +00:00
parent c3bbc0c2a8
commit 2de494a5a1

View File

@ -1,2 +1,29 @@
<?php // $Id$
$gradereport_grader_capabilities = array(
'gradereport/user:view' => array(
'riskbitmask' => RISK_PERSONAL,
'captype' => 'read',
'contextlevel' => CONTEXT_COURSE,
'legacy' => array(
'teacher' => CAP_ALLOW,
'editingteacher' => CAP_ALLOW,
'admin' => CAP_ALLOW
)
),
'gradereport/grader:manage' => array(
'riskbitmask' => RISK_PERSONAL | RISK_CONFIG,
'captype' => 'write',
'contextlevel' => CONTEXT_COURSE,
'legacy' => array(
'teacher' => CAP_ALLOW,
'editingteacher' => CAP_ALLOW,
'admin' => CAP_ALLOW
)
)
);
?>