Skip to content
Snippets Groups Projects
Select Git revision
  • 6cedf57776e92681f4ceae4aa3f031c2f513a1f6
  • master default protected
2 results

UnityEngine.UIModule.dll

Blame
  • access.php 1.17 KiB
    <?php
    /**
     * @package mod
     * @subpackage adobeconnect
     * @author Akinsaya Delamarre (adelamarre@remote-learner.net)
     * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
     */
    
    
    $capabilities = array(
            'mod/adobeconnect:addinstance' => array(
            'captype' => 'write',
            'contextlevel' => CONTEXT_COURSE,
            'archetypes' => array(
                'editingteacher' => CAP_ALLOW,
                'manager' => CAP_ALLOW
            ),
            'clonepermissionsfrom' => 'moodle/course:manageactivities'
        ),
    
        'mod/adobeconnect:meetingpresenter' => array(
    
            'captype' => 'read',
            'contextlevel' => CONTEXT_MODULE,
            'archetypes' => array(
                'manager' => CAP_ALLOW
            )
        ),
    
        'mod/adobeconnect:meetingparticipant' => array(
    
            'captype' => 'read',
            'contextlevel' => CONTEXT_MODULE,
            'archetypes' => array(
                'manager' => CAP_ALLOW
            )
        ),
    
        'mod/adobeconnect:meetinghost' => array(
    
            'captype' => 'read',
            'contextlevel' => CONTEXT_MODULE,
            'archetypes' => array(
                'manager' => CAP_ALLOW
            )
        ),
    
    );