a6032854bf
Part of MDL-75966 AMOS BEGIN CPY [browserepositories,atto_h5p],[browserepositories,tiny_h5p] CPY [copyrightbutton,atto_h5p],[bcopyrightbutton,tiny_h5p] CPY [downloadbutton,atto_h5p],[downloadbutton,tiny_h5p] CPY [embedbutton,atto_h5p],[embedbutton,tiny_h5p] CPY [h5p:addembed,atto_h5p],[h5p:addembed,tiny_h5p] CPY [h5pfile,atto_h5p],[h5pfile,tiny_h5p] CPY [h5pfileorurl,atto_h5p],[h5pfileorurl,tiny_h5p] CPY [h5poptions,atto_h5p],[h5poptions,tiny_h5p] CPY [h5purl,atto_h5p],[h5purl,tiny_h5p] CPY [invalidh5purl,atto_h5p],[invalidh5purl,tiny_h5p] CPY [instructions,atto_h5p],[instructions,tiny_h5p] CPY [noh5pcontent,atto_h5p],[noh5pcontent,tiny_h5p] AMOS END
37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Capabilities for the tiny_h5p plugin.
|
|
*
|
|
* @package tiny_h5p
|
|
* @copyright 2022 Andrew Lyons <andrew@nicols.co.uk>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
$capabilities = [
|
|
'tiny/h5p:addembed' => [
|
|
'captype' => 'write',
|
|
'contextlevel' => CONTEXT_MODULE,
|
|
'archetypes' => [
|
|
'editingteacher' => CAP_ALLOW,
|
|
],
|
|
'clonepermissionsfrom' => 'atto/h5p:addembed',
|
|
]
|
|
];
|