MDL-10579 capabilities for grade report plugins
[moodle.git] / grade / report / outcomes / db / access.php
CommitLineData
54690a08 1<?php // $Id$
2
3$gradereport_outcomes_capabilities = array(
4
5 'gradereport/outcomes:view' => array(
6 'riskbitmask' => RISK_PERSONAL,
7 'captype' => 'read',
8 'contextlevel' => CONTEXT_COURSE,
9 'legacy' => array(
10 'teacher' => CAP_ALLOW,
11 'editingteacher' => CAP_ALLOW,
12 'admin' => CAP_ALLOW
13 )
14 ),
15
16);
17
18?>