mirror of
https://github.com/moodle/moodle.git
synced 2025-03-06 16:59:56 +01:00
19 lines
495 B
PHP
19 lines
495 B
PHP
<?php
|
|
/**
|
|
* Capability definitions for the quiz statistics report.
|
|
*
|
|
* For naming conventions, see lib/db/access.php.
|
|
*/
|
|
$quiz_statistics_capabilities = array(
|
|
'quizreport/statistics:view' => array(
|
|
'captype' => 'read',
|
|
'contextlevel' => CONTEXT_MODULE,
|
|
'legacy' => array(
|
|
'teacher' => CAP_ALLOW,
|
|
'editingteacher' => CAP_ALLOW,
|
|
'admin' => CAP_ALLOW
|
|
),
|
|
'clonepermissionsfrom' => 'mod/quiz:viewreports'
|
|
)
|
|
);
|