mirror of
https://github.com/moodle/moodle.git
synced 2025-08-28 08:31:53 +08:00
Merge branch 'MDL-53943-master' of git://github.com/junpataleta/moodle
Conflicts: admin/tool/cohortroles/settings.php
This commit is contained in:
commit
d4a41aa252
1 changed files with 17 additions and 3 deletions
|
@ -23,6 +23,20 @@
|
|||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die;
|
||||
$str = get_string('managecohortroles', 'tool_cohortroles');
|
||||
$url = new moodle_url('/admin/tool/cohortroles/index.php');
|
||||
$ADMIN->add('roles', new admin_externalpage('toolcohortroles', $str, $url, 'moodle/role:manage'));
|
||||
|
||||
// This tool's required capabilities.
|
||||
$capabilities = [
|
||||
'moodle/cohort:view',
|
||||
'moodle/role:manage'
|
||||
];
|
||||
|
||||
// Check if the user has all of the required capabilities.
|
||||
$context = context_system::instance();
|
||||
$hasaccess = has_all_capabilities($capabilities, $context);
|
||||
|
||||
// Add this admin page only if the user has all of the required capabilities.
|
||||
if ($hasaccess) {
|
||||
$str = get_string('managecohortroles', 'tool_cohortroles');
|
||||
$url = new moodle_url('/admin/tool/cohortroles/index.php');
|
||||
$ADMIN->add('roles', new admin_externalpage('toolcohortroles', $str, $url, $capabilities));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue