weekly release 4.5dev
[moodle.git] / enrol / self / settings.php
blobcee5d7fc21b6019b867be82bfdb70b75e3c70061
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Self enrolment plugin settings and presets.
20 * @package enrol_self
21 * @copyright 2010 Petr Skoda {@link http://skodak.org}
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 defined('MOODLE_INTERNAL') || die();
27 if ($ADMIN->fulltree) {
29 //--- general settings -----------------------------------------------------------------------------------
30 $settings->add(new admin_setting_heading('enrol_self_settings', '', get_string('pluginname_desc', 'enrol_self')));
32 $settings->add(new admin_setting_configcheckbox('enrol_self/requirepassword',
33 get_string('requirepassword', 'enrol_self'), get_string('requirepassword_desc', 'enrol_self'), 0));
35 $settings->add(new admin_setting_configcheckbox('enrol_self/usepasswordpolicy',
36 get_string('usepasswordpolicy', 'enrol_self'), get_string('usepasswordpolicy_desc', 'enrol_self'), 0));
38 $settings->add(new admin_setting_configcheckbox('enrol_self/showhint',
39 get_string('showhint', 'enrol_self'), get_string('showhint_desc', 'enrol_self'), 0));
41 // Note: let's reuse the ext sync constants and strings here, internally it is very similar,
42 // it describes what should happend when users are not supposed to be enerolled any more.
43 $options = array(
44 ENROL_EXT_REMOVED_KEEP => get_string('extremovedkeep', 'enrol'),
45 ENROL_EXT_REMOVED_SUSPENDNOROLES => get_string('extremovedsuspendnoroles', 'enrol'),
46 ENROL_EXT_REMOVED_UNENROL => get_string('extremovedunenrol', 'enrol'),
48 $settings->add(new admin_setting_configselect('enrol_self/expiredaction', get_string('expiredaction', 'enrol_self'), get_string('expiredaction_help', 'enrol_self'), ENROL_EXT_REMOVED_KEEP, $options));
50 $options = array();
51 for ($i=0; $i<24; $i++) {
52 $options[$i] = $i;
54 $settings->add(new admin_setting_configselect('enrol_self/expirynotifyhour', get_string('expirynotifyhour', 'core_enrol'), '', 6, $options));
56 //--- enrol instance defaults ----------------------------------------------------------------------------
57 $settings->add(new admin_setting_heading('enrol_self_defaults',
58 get_string('enrolinstancedefaults', 'admin'), get_string('enrolinstancedefaults_desc', 'admin')));
60 $settings->add(new admin_setting_configcheckbox('enrol_self/defaultenrol',
61 get_string('defaultenrol', 'enrol'), get_string('defaultenrol_desc', 'enrol'), 1));
63 $options = array(ENROL_INSTANCE_ENABLED => get_string('yes'),
64 ENROL_INSTANCE_DISABLED => get_string('no'));
65 $settings->add(new admin_setting_configselect('enrol_self/status',
66 get_string('status', 'enrol_self'), get_string('status_desc', 'enrol_self'), ENROL_INSTANCE_DISABLED, $options));
68 $options = array(1 => get_string('yes'), 0 => get_string('no'));
69 $settings->add(new admin_setting_configselect('enrol_self/newenrols',
70 get_string('newenrols', 'enrol_self'), get_string('newenrols_desc', 'enrol_self'), 1, $options));
72 $options = array(1 => get_string('yes'),
73 0 => get_string('no'));
74 $settings->add(new admin_setting_configselect('enrol_self/groupkey',
75 get_string('groupkey', 'enrol_self'), get_string('groupkey_desc', 'enrol_self'), 0, $options));
77 if (!during_initial_install()) {
78 $options = get_default_enrol_roles(context_system::instance());
79 $student = get_archetype_roles('student');
80 $student = reset($student);
81 $settings->add(new admin_setting_configselect('enrol_self/roleid',
82 get_string('defaultrole', 'enrol_self'),
83 get_string('defaultrole_desc', 'enrol_self'),
84 $student->id ?? null,
85 $options));
88 $settings->add(new admin_setting_configduration('enrol_self/enrolperiod',
89 get_string('enrolperiod', 'enrol_self'), get_string('enrolperiod_desc', 'enrol_self'), 0));
91 $options = array(0 => get_string('no'),
92 1 => get_string('expirynotifyenroller', 'enrol_self'),
93 2 => get_string('expirynotifyall', 'enrol_self'));
94 $settings->add(new admin_setting_configselect('enrol_self/expirynotify',
95 get_string('expirynotify', 'core_enrol'), get_string('expirynotify_help', 'core_enrol'), 0, $options));
97 $settings->add(new admin_setting_configduration('enrol_self/expirythreshold',
98 get_string('expirythreshold', 'core_enrol'), get_string('expirythreshold_help', 'core_enrol'), 86400, 86400));
100 $options = array(0 => get_string('never'),
101 1800 * 3600 * 24 => get_string('numdays', '', 1800),
102 1000 * 3600 * 24 => get_string('numdays', '', 1000),
103 365 * 3600 * 24 => get_string('numdays', '', 365),
104 180 * 3600 * 24 => get_string('numdays', '', 180),
105 150 * 3600 * 24 => get_string('numdays', '', 150),
106 120 * 3600 * 24 => get_string('numdays', '', 120),
107 90 * 3600 * 24 => get_string('numdays', '', 90),
108 60 * 3600 * 24 => get_string('numdays', '', 60),
109 30 * 3600 * 24 => get_string('numdays', '', 30),
110 21 * 3600 * 24 => get_string('numdays', '', 21),
111 14 * 3600 * 24 => get_string('numdays', '', 14),
112 7 * 3600 * 24 => get_string('numdays', '', 7));
113 $settings->add(new admin_setting_configselect('enrol_self/longtimenosee',
114 get_string('longtimenosee', 'enrol_self'), get_string('longtimenosee_help', 'enrol_self'), 0, $options));
116 $settings->add(new admin_setting_configtext('enrol_self/maxenrolled',
117 get_string('maxenrolled', 'enrol_self'), get_string('maxenrolled_help', 'enrol_self'), 0, PARAM_INT));
119 $settings->add(new admin_setting_configselect('enrol_self/sendcoursewelcomemessage',
120 get_string('sendcoursewelcomemessage', 'enrol_self'),
121 get_string('sendcoursewelcomemessage_help', 'enrol_self'),
122 ENROL_SEND_EMAIL_FROM_COURSE_CONTACT,
123 enrol_send_welcome_email_options()));