Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
navigation MDL-22732 Removed add resources and activities branches from nav when...
[moodle.git]
/
repository
/
remotemoodle
/
db
/
access.php
1
<?php
2
3
$capabilities = array(
4
5
'repository/remotemoodle:view' => array(
6
'captype' => 'read',
7
'contextlevel' => CONTEXT_SYSTEM,
8
'archetypes' => array(
9
'user' => CAP_ALLOW,
10
'student' => CAP_ALLOW,
11
'teacher' => CAP_ALLOW,
12
'editingteacher' => CAP_ALLOW,
13
'manager' => CAP_ALLOW
14
)
15
)
16
);