MDL-9062: Completed new group form.

This commit is contained in:
nicolasconnault
2007-03-29 08:40:08 +00:00
parent 74fddb6da9
commit 80efbf98c8
7 changed files with 101 additions and 539 deletions
+45 -81
View File
@@ -2,6 +2,7 @@
require_once($CFG->dirroot.'/lib/formslib.php');
/// get url variables
class group_edit_form extends moodleform {
// Define the form
@@ -9,22 +10,31 @@ class group_edit_form extends moodleform {
global $USER, $CFG, $COURSE;
$strrequired = get_string('required');
$buttonstr = get_string('creategroup', 'group');
if (isset($this->_customdata['group'])) {
$group = $this->_customdata['group'];
} else {
$group = false;
}
$group = $this->_customdata['group'];
$groupingid = $this->_customdata['groupingid'];
$newgrouping = $this->_customdata['newgrouping'];
$courseid = $this->_customdata['courseid'];
$id = $group->id;
$mform =& $this->_form;
$mform->addElement('text','name', get_string('name'),'maxlength="254" size="50"');
$mform->setDefault('name', get_string('defaultgroupname'));
$mform->addElement('text','name', get_string('groupname', 'group'),'maxlength="254" size="50"');
$mform->setDefault('name', get_string('defaultgroupname', 'group'));
$mform->addRule('name', get_string('missingname'), 'required', null, 'client');
$mform->setType('name', PARAM_MULTILANG);
$mform->addElement('htmleditor', 'description', get_string('description'), array('rows'=> '5', 'cols'=>'45'));
$mform->addElement('htmleditor', 'description', get_string('groupdescription', 'group'), array('rows'=> '5', 'cols'=>'45'));
$mform->setType('description', PARAM_RAW);
$mform->addElement('text', 'enrolmentkey', get_string('enrolmentkey', 'group'), 'maxlength="254" size="40"', get_string('enrolmentkey'));
$mform->addElement('text', 'enrolmentkey', get_string('enrolmentkey', 'group'), 'maxlength="254" size="24"', get_string('enrolmentkey'));
$mform->setHelpButton('enrolmentkey', array('groupenrolmentkey', get_string('enrolmentkey', 'group')), true);
$mform->setType('enrolmentkey', PARAM_RAW);
@@ -32,92 +42,46 @@ class group_edit_form extends moodleform {
$mform->addElement('select', 'hidepicture', get_string('hidepicture'), $options);
$maxbytes = get_max_upload_file_size($CFG->maxbytes, $COURSE->maxbytes);
if (!empty($CFG->gdversion) and $maxbytes and !empty($CFG->disableuserimages)) {
$mform->addElement('file', 'imagefile', get_string('newpicture', 'group'));
$mform->setHelpButton('imagefile', array('picture', get_string('helppicture')), true);
if (!empty($CFG->gdversion) and $maxbytes) {
$this->set_upload_manager(new upload_manager('imagefile', false, false, null, false, 0, true, true, false));
$mform->addElement('file', 'imagefile', get_string('newpicture', 'group'));
$mform->setHelpButton('imagefile', array ('picture', get_string('helppicture')), true);
}
/// Add some extra hidden fields
if ($group) {
$mform->addElement('hidden', 'group', $group->id);
$buttonstr = get_string('save', 'group');
$mform->addElement('hidden','id', null);
$mform->setType('id', PARAM_INT);
// Options to move group to another grouping
$groupingids = groups_get_groupings($courseid);
// Add pseudo-grouping "Not in a grouping"
$groupingids[] = GROUP_NOT_IN_GROUPING;
if ($groupingids) {
// Put the groupings into a hash and sort them
foreach($groupingids as $id) {
$listgroupings[$id] = groups_get_grouping_displayname($id, $courseid);
}
natcasesort($listgroupings);
$mform->addElement('select', 'newgrouping', get_string('addgroupstogrouping', 'group'), $listgroupings);
$mform->setDefault('newgrouping', $groupingid);
}
}
if ($groupingid) {
$mform->addElement('hidden', 'groupingid', s($groupingid));
} else {
if($groupingid) {
$mform->addElement('hidden', 'grouping', $groupingid);
$mform->setType('grouping', PARAM_INT);
}
$mform->addElement('hidden', 'group');
$mform->addElement('hidden', 'course', $COURSE->id);
$this->set_upload_manager(new upload_manager('imagefile', false, false, null, false, 0, true, true, false));
$this->add_action_buttons(false, get_string('updatemyprofile'));
$this->add_action_buttons(true, $buttonstr);
$mform->addElement('hidden', 'courseid', $courseid);
}
function definition_after_data() {
global $USER, $CFG;
$mform =& $this->_form;
$userid = $mform->getElementValue('id');
if ($user = get_record('user', 'id', $userid)) {
// print picture
if (!empty($CFG->gdversion)) {
$image_el = $mform->getElement('currentpicture');
if ($user and $user->picture) {
$image_el->setValue(print_user_picture($user->id, SITEID, $user->picture, 64,true,false,'',true));
} else {
$image_el->setValue(get_string('none'));
}
}
/// disable fields that are locked by auth plugins
$fields = get_user_fieldnames();
$freezefields = array();
$authplugin = get_auth_plugin($user->auth);
foreach ($fields as $field) {
if (!$mform->elementExists($field)) {
continue;
}
$configvariable = 'field_lock_' . $field;
if (isset($authplugin->config->{$configvariable})) {
if ($authplugin->config->{$configvariable} === 'locked') {
$freezefields[] = $field;
} else if ($authplugin->config->{$configvariable} === 'unlockedifempty' and $user->$field != '') {
$freezefields[] = $field;
}
}
}
$mform->hardFreeze($freezefields);
}
}
function validation ($usernew) {
global $CFG;
$usernew = (object)$usernew;
$user = get_record('user', 'id', $usernew->id);
$err = array();
// validate email
if (!validate_email($usernew->email)) {
$err['email'] = get_string('invalidemail');
} else if (($usernew->email !== $user->email) and record_exists('user', 'email', $usernew->email, 'mnethostid', $CFG->mnet_localhost_id)) {
$err['email'] = get_string('emailexists');
}
if ($usernew->email === $user->email and over_bounce_threshold($user)) {
$err['email'] = get_string('toomanybounces');
}
if (count($err) == 0){
return true;
} else {
return $err;
}
}
function get_um() {