$mform->setDefault('enrolpassword', $courseconfig->enrolpassword);
$mform->setType('enrolpassword', PARAM_RAW);
+ if (empty($course) or ($course->password !== '' and $course->id != SITEID)) {
+ // do not require password in existing courses that do not have password yet - backwards compatibility ;-)
+ if (!empty($CFG->enrol_manual_requirekey)) {
+ $mform->addRule('enrolpassword', get_string('required'), 'required', null, 'client');
+ }
+ }
+
$choices = array();
$choices['0'] = get_string('guestsno');
$choices['1'] = get_string('guestsyes');
/// perform some extra moodle validation
function validation($data, $files) {
- global $DB;
+ global $DB, $CFG;
$errors = parent::validation($data, $files);
if ($foundcourses = $DB->get_records('course', array('shortname'=>$data['shortname']))) {
}
}
+ if (!empty($CFG->enrol_manual_usepasswordpolicy) and isset($data['enrolpassword']) and $data['enrolpassword'] != '') {
+ $course = $this->_customdata['course'];
+ if ($course->password !== $data['enrolpassword']) {
+ // enforce password policy only if changing password - backwards compatibility
+ $errmsg = '';
+ if (!check_password_policy($data['enrolpassword'], $errmsg)) {
+ $errors['enrolpassword'] = $errmsg;
+ }
+ }
+ }
+
return $errors;
}
}
</td>
</tr>
+<tr>
+ <td align="right">enrol_manual_usepasswordpolicy:</td>
+ <td>
+<?php
+ $choices = array();
+ $choices['0'] = get_string('no');
+ $choices['1'] = get_string('yes');
+ choose_from_menu ($choices, 'enrol_manual_usepasswordpolicy', $frm->enrol_manual_usepasswordpolicy, '');
+?>
+ </td><td>
+ <?php print_string('enrol_manual_usepasswordpolicy', 'enrol_manual') ?>
+ </td>
+</tr>
+
+<tr>
+ <td align="right">enrol_manual_requirekey:</td>
+ <td>
+<?php
+ $choices = array();
+ $choices['0'] = get_string('no');
+ $choices['1'] = get_string('yes');
+ choose_from_menu ($choices, 'enrol_manual_requirekey', $frm->enrol_manual_requirekey, '');
+?>
+ </td><td>
+ <?php print_string('enrol_manual_requirekey', 'enrol_manual') ?>
+ </td>
+</tr>
+
</table>
$frm->enrol_manual_showhint = 1;
}
+ if (!isset($frm->enrol_manual_usepasswordpolicy)) {
+ $frm->enrol_manual_usepasswordpolicy = 0;
+ }
+
+ if (!isset($frm->enrol_manual_requirekey)) {
+ $frm->enrol_manual_requirekey = 0;
+ }
+
include ("$CFG->dirroot/enrol/manual/config.html");
}
}
function validation($data, $files) {
- global $COURSE, $DB;
+ global $COURSE, $DB, $CFG;
$errors = parent::validation($data, $files);
}
}
+ if (!empty($CFG->enrol_manual_usepasswordpolicy) and $data['enrolmentkey'] != '' and $group->enrolmentkey !== $data['enrolmentkey']) {
+ // enforce password policy only if changing password
+ $errmsg = '';
+ if (!check_password_policy($data['enrolmentkey'], $errmsg)) {
+ $errors['enrolmentkey'] = $errmsg;
+ }
+ }
+
} else if (groups_get_group_by_name($COURSE->id, $name)) {
$errors['name'] = get_string('groupnameexists', 'group', $name);
}
</ul>';
$string['enrolmentkeyerror'] = 'That enrolment key was incorrect, please try again.';
$string['enrolname'] = 'Internal Enrolment';
+$string['enrol_manual_requirekey'] = 'Require course enrolment keys in new courses and prevent removing of existing keys.';
$string['enrol_manual_showhint'] = 'Enable this setting to reveal the first character of the enrolment key as a hint if one enters an incorrect key.';
+$string['enrol_manual_usepasswordpolicy'] = 'Use current user password policy for course enrolment keys.';
$string['keyholderrole' ] = 'The role of the user that holds the enrolment key for a course. Displayed to students attempting to enrol on the course.';
?>