mirror of
https://github.com/moodle/moodle.git
synced 2025-02-15 21:36:58 +01:00
List of changes: * configurable unenrol action * new setting for synchronisation of all enrolled users or users with at least one role * cron period increased to 1 hour in order to lower server load, courses should not get out of sync often * CLI sync script for debugging or manual sync * phpdocs fixes * when plugin is disabled all roles are removed, enrollments are kept * uninstall script * other bugfixing
49 lines
2.2 KiB
PHP
49 lines
2.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/>.
|
|
|
|
/**
|
|
* Meta enrolment plugin settings and presets.
|
|
*
|
|
* @package enrol
|
|
* @subpackage meta
|
|
* @copyright 2010 Petr Skoda {@link http://skodak.org}
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
if ($ADMIN->fulltree) {
|
|
|
|
//--- general settings -----------------------------------------------------------------------------------
|
|
$settings->add(new admin_setting_heading('enrol_meta_settings', '', get_string('pluginname_desc', 'enrol_meta')));
|
|
|
|
if (!during_initial_install()) {
|
|
$allroles = array();
|
|
foreach (get_all_roles() as $role) {
|
|
$rolename = strip_tags(format_string($role->name)) . ' ('. $role->shortname . ')';
|
|
$allroles[$role->id] = $rolename;
|
|
}
|
|
$settings->add(new admin_setting_configmultiselect('enrol_meta/nosyncroleids', get_string('nosyncroleids', 'enrol_meta'), get_string('nosyncroleids_desc', 'enrol_meta'), array(), $allroles));
|
|
|
|
$settings->add(new admin_setting_configcheckbox('enrol_meta/syncall', get_string('syncall', 'enrol_meta'), get_string('syncall_desc', 'enrol_meta'), 1));
|
|
|
|
$options = array(
|
|
ENROL_EXT_REMOVED_UNENROL => get_string('extremovedunenrol', 'enrol'),
|
|
ENROL_EXT_REMOVED_SUSPENDNOROLES => get_string('extremovedsuspendnoroles', 'enrol'));
|
|
$settings->add(new admin_setting_configselect('enrol_meta/unenrolaction', get_string('extremovedaction', 'enrol'), get_string('extremovedaction_help', 'enrol'), ENROL_EXT_REMOVED_UNENROL, $options));
|
|
}
|
|
}
|