2012-12-07 09:34:46 +00:00
|
|
|
<?php
|
2021-11-24 07:29:43 +00:00
|
|
|
// This file is part of the htmlcert module for Moodle - http://moodle.org/
|
2012-12-07 09:34:46 +00:00
|
|
|
//
|
|
|
|
// 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
|
2013-07-22 05:06:18 +00:00
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
2012-12-07 09:34:46 +00:00
|
|
|
|
|
|
|
/**
|
2021-11-24 07:29:43 +00:00
|
|
|
* htmlcert module capability definition
|
2012-12-07 09:34:46 +00:00
|
|
|
*
|
2021-11-24 07:29:43 +00:00
|
|
|
* @package mod_htmlcert
|
|
|
|
* @copyright 2013 Mark Nelson <markn@moodle.com>, 2021 Klaus-Uwe Mitterer <kumitterer@kumi.systems>
|
2012-12-07 09:34:46 +00:00
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
2013-02-20 12:21:57 +00:00
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
|
2012-12-07 09:34:46 +00:00
|
|
|
$capabilities = array(
|
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
'mod/htmlcert:addinstance' => array(
|
2012-12-07 09:34:46 +00:00
|
|
|
'riskbitmask' => RISK_XSS,
|
|
|
|
'captype' => 'write',
|
|
|
|
'contextlevel' => CONTEXT_COURSE,
|
|
|
|
'archetypes' => array(
|
|
|
|
'editingteacher' => CAP_ALLOW,
|
|
|
|
'manager' => CAP_ALLOW
|
|
|
|
),
|
|
|
|
'clonepermissionsfrom' => 'moodle/course:manageactivities'
|
|
|
|
),
|
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
'mod/htmlcert:view' => array(
|
2012-12-07 09:34:46 +00:00
|
|
|
|
|
|
|
'captype' => 'read',
|
|
|
|
'contextlevel' => CONTEXT_MODULE,
|
|
|
|
'archetypes' => array(
|
|
|
|
'student' => CAP_ALLOW,
|
|
|
|
'teacher' => CAP_ALLOW,
|
|
|
|
'editingteacher' => CAP_ALLOW,
|
|
|
|
'manager' => CAP_ALLOW
|
|
|
|
)
|
|
|
|
),
|
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
'mod/htmlcert:manage' => array(
|
2012-12-07 09:34:46 +00:00
|
|
|
|
2015-12-11 05:19:21 +00:00
|
|
|
'captype' => 'write',
|
2017-02-01 09:39:20 +00:00
|
|
|
'contextlevel' => CONTEXT_MODULE,
|
2012-12-07 09:34:46 +00:00
|
|
|
'archetypes' => array(
|
|
|
|
'teacher' => CAP_ALLOW,
|
|
|
|
'editingteacher' => CAP_ALLOW,
|
|
|
|
'manager' => CAP_ALLOW
|
|
|
|
)
|
|
|
|
),
|
2016-10-21 21:16:13 +00:00
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
'mod/htmlcert:receiveissue' => array(
|
2019-05-28 09:09:09 +00:00
|
|
|
'captype' => 'read',
|
|
|
|
'contextlevel' => CONTEXT_MODULE,
|
|
|
|
'archetypes' => array(
|
|
|
|
'student' => CAP_ALLOW
|
|
|
|
)
|
|
|
|
),
|
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
'mod/htmlcert:viewreport' => array(
|
2017-06-02 04:42:04 +00:00
|
|
|
|
|
|
|
'captype' => 'read',
|
|
|
|
'contextlevel' => CONTEXT_MODULE,
|
|
|
|
'archetypes' => array(
|
|
|
|
'teacher' => CAP_ALLOW,
|
|
|
|
'editingteacher' => CAP_ALLOW,
|
|
|
|
'manager' => CAP_ALLOW
|
|
|
|
)
|
|
|
|
),
|
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
'mod/htmlcert:viewallcertificates' => array(
|
2016-10-21 21:16:13 +00:00
|
|
|
'captype' => 'read',
|
|
|
|
'contextlevel' => CONTEXT_SYSTEM,
|
|
|
|
'archetypes' => array(
|
|
|
|
'manager' => CAP_ALLOW
|
|
|
|
)
|
|
|
|
),
|
2017-02-01 10:23:15 +00:00
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
'mod/htmlcert:verifycertificate' => array(
|
2017-02-01 10:23:15 +00:00
|
|
|
'captype' => 'read',
|
|
|
|
'contextlevel' => CONTEXT_MODULE,
|
|
|
|
'archetypes' => array(
|
|
|
|
'teacher' => CAP_ALLOW,
|
|
|
|
'editingteacher' => CAP_ALLOW,
|
|
|
|
'manager' => CAP_ALLOW
|
|
|
|
)
|
|
|
|
),
|
2017-11-12 04:55:10 +00:00
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
'mod/htmlcert:verifyallcertificates' => array(
|
2017-11-12 04:55:10 +00:00
|
|
|
'captype' => 'read',
|
|
|
|
'contextlevel' => CONTEXT_SYSTEM,
|
|
|
|
'archetypes' => array(
|
|
|
|
'manager' => CAP_ALLOW
|
|
|
|
)
|
|
|
|
),
|
2018-07-19 05:41:29 +00:00
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
'mod/htmlcert:manageemailstudents' => array(
|
2018-07-19 05:41:29 +00:00
|
|
|
'captype' => 'write',
|
|
|
|
'contextlevel' => CONTEXT_COURSE,
|
|
|
|
'archetypes' => array(
|
|
|
|
'editingteacher' => CAP_ALLOW,
|
|
|
|
'manager' => CAP_ALLOW
|
|
|
|
),
|
|
|
|
'clonepermissionsfrom' => 'moodle/course:manageactivities'
|
|
|
|
),
|
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
'mod/htmlcert:manageemailteachers' => array(
|
2018-07-19 05:41:29 +00:00
|
|
|
'captype' => 'write',
|
|
|
|
'contextlevel' => CONTEXT_COURSE,
|
|
|
|
'archetypes' => array(
|
|
|
|
'editingteacher' => CAP_ALLOW,
|
|
|
|
'manager' => CAP_ALLOW
|
|
|
|
),
|
|
|
|
'clonepermissionsfrom' => 'moodle/course:manageactivities'
|
|
|
|
),
|
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
'mod/htmlcert:manageemailothers' => array(
|
2018-07-19 05:41:29 +00:00
|
|
|
'captype' => 'write',
|
|
|
|
'contextlevel' => CONTEXT_COURSE,
|
|
|
|
'archetypes' => array(
|
|
|
|
'editingteacher' => CAP_ALLOW,
|
|
|
|
'manager' => CAP_ALLOW
|
|
|
|
),
|
|
|
|
'clonepermissionsfrom' => 'moodle/course:manageactivities'
|
|
|
|
),
|
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
'mod/htmlcert:manageverifyany' => array(
|
2018-07-19 05:41:29 +00:00
|
|
|
'captype' => 'write',
|
|
|
|
'contextlevel' => CONTEXT_COURSE,
|
|
|
|
'archetypes' => array(
|
|
|
|
'editingteacher' => CAP_ALLOW,
|
|
|
|
'manager' => CAP_ALLOW
|
|
|
|
),
|
|
|
|
'clonepermissionsfrom' => 'moodle/course:manageactivities'
|
|
|
|
),
|
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
'mod/htmlcert:managerequiredtime' => array(
|
2018-07-19 05:41:29 +00:00
|
|
|
'captype' => 'write',
|
|
|
|
'contextlevel' => CONTEXT_COURSE,
|
|
|
|
'archetypes' => array(
|
|
|
|
'editingteacher' => CAP_ALLOW,
|
|
|
|
'manager' => CAP_ALLOW
|
|
|
|
),
|
|
|
|
'clonepermissionsfrom' => 'moodle/course:manageactivities'
|
|
|
|
),
|
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
'mod/htmlcert:manageprotection' => array(
|
2018-07-19 05:41:29 +00:00
|
|
|
'captype' => 'write',
|
|
|
|
'contextlevel' => CONTEXT_COURSE,
|
|
|
|
'archetypes' => array(
|
|
|
|
'editingteacher' => CAP_ALLOW,
|
|
|
|
'manager' => CAP_ALLOW
|
|
|
|
),
|
|
|
|
'clonepermissionsfrom' => 'moodle/course:manageactivities'
|
|
|
|
),
|
2012-12-07 09:34:46 +00:00
|
|
|
);
|