Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
eac552b3629080e7ebdf4ab74aa814c59212b380
[moodle.git]
/
repository
/
upload
/
db
/
access.php
1
<?php
2
3
$capabilities = array(
4
5
'repository/upload:view' => array(
6
'captype' => 'read',
7
'contextlevel' => CONTEXT_SYSTEM,
8
'legacy' => array(
9
'student' => CAP_ALLOW,
10
'teacher' => CAP_ALLOW,
11
'editingteacher' => CAP_ALLOW,
12
'admin' => CAP_ALLOW
13
)
14
)
15
);