18 lines
320 B
PHP
18 lines
320 B
PHP
|
<?php
|
||
|
|
||
|
defined('MOODLE_INTERNAL') || die();
|
||
|
|
||
|
$capabilities = array(
|
||
|
|
||
|
'local/certlog:access' => array(
|
||
|
'riskbitmask' => RISK_PERSONAL,
|
||
|
'captype' => 'read',
|
||
|
'contextlevel' => CONTEXT_SYSTEM,
|
||
|
'archetypes' => array(
|
||
|
'editingteacher' => CAP_ALLOW,
|
||
|
'manager' => CAP_ALLOW
|
||
|
)
|
||
|
)
|
||
|
|
||
|
);
|