Skip to content
Snippets Groups Projects
Select Git revision
  • 5836e4cf9cd1814fba810b41b367c6139804112a
  • main default protected
  • dev/grabowski
  • origin/main
  • hsh_1.22.4
  • 1.22.4
  • 1.22.3
  • 1.22.2
  • 1.22.1
  • 1.22
  • 1.21
  • 1.20.2
  • 1.20.1
  • 1.20.0
  • 1.19.1
  • 1.19
  • 1.18
  • 1.17.2
  • 1.17.1
  • 1.17
  • 1.16
  • 1.15
  • 1.14
  • 1.13
24 results

version.php

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
            )
        ),
    
    );