MDL-32787 user: rule required for custom profile fields applies to all users editing own profile
This commit is contained in:
+1
-1
@@ -153,7 +153,7 @@ $editoroptions = array(
|
||||
);
|
||||
|
||||
$user = file_prepare_standard_editor($user, 'description', $editoroptions, $personalcontext, 'user', 'profile', 0);
|
||||
$userform = new user_edit_form(null, array('editoroptions'=>$editoroptions));
|
||||
$userform = new user_edit_form(null, array('editoroptions'=>$editoroptions, 'userid' => $user->id));
|
||||
if (empty($user->country)) {
|
||||
// MDL-16308 - we must unset the value here so $CFG->country can be used as default one
|
||||
unset($user->country);
|
||||
|
||||
+12
-6
@@ -10,13 +10,19 @@ class user_edit_form extends moodleform {
|
||||
|
||||
// Define the form
|
||||
function definition () {
|
||||
global $CFG, $COURSE;
|
||||
global $CFG, $COURSE, $USER;
|
||||
|
||||
$mform =& $this->_form;
|
||||
if (is_array($this->_customdata) && array_key_exists('editoroptions', $this->_customdata)) {
|
||||
$editoroptions = $this->_customdata['editoroptions'];
|
||||
} else {
|
||||
$editoroptions = null;
|
||||
$editoroptions = null;
|
||||
$userid = $USER->id;
|
||||
|
||||
if (is_array($this->_customdata)) {
|
||||
if (array_key_exists('editoroptions', $this->_customdata)) {
|
||||
$editoroptions = $this->_customdata['editoroptions'];
|
||||
}
|
||||
if (array_key_exists('userid', $this->_customdata)) {
|
||||
$userid = $this->_customdata['userid'];
|
||||
}
|
||||
}
|
||||
//Accessibility: "Required" is bad legend text.
|
||||
$strgeneral = get_string('general');
|
||||
@@ -42,7 +48,7 @@ class user_edit_form extends moodleform {
|
||||
}
|
||||
|
||||
/// Next the customisable profile fields
|
||||
profile_definition($mform);
|
||||
profile_definition($mform, $userid);
|
||||
|
||||
$this->add_action_buttons(false, get_string('updatemyprofile'));
|
||||
}
|
||||
|
||||
@@ -135,7 +135,7 @@ if ($user->id !== -1) {
|
||||
}
|
||||
|
||||
//create form
|
||||
$userform = new user_editadvanced_form(null, array('editoroptions'=>$editoroptions));
|
||||
$userform = new user_editadvanced_form(null, array('editoroptions'=>$editoroptions, 'userid' => $user->id));
|
||||
$userform->set_data($user);
|
||||
|
||||
if ($usernew = $userform->get_data()) {
|
||||
|
||||
@@ -13,11 +13,16 @@ class user_editadvanced_form extends moodleform {
|
||||
global $USER, $CFG, $COURSE;
|
||||
|
||||
$mform =& $this->_form;
|
||||
$editoroptions = null;
|
||||
$userid = $USER->id;
|
||||
|
||||
if (is_array($this->_customdata) && array_key_exists('editoroptions', $this->_customdata)) {
|
||||
$editoroptions = $this->_customdata['editoroptions'];
|
||||
} else {
|
||||
$editoroptions = null;
|
||||
if (is_array($this->_customdata)) {
|
||||
if (array_key_exists('editoroptions', $this->_customdata)) {
|
||||
$editoroptions = $this->_customdata['editoroptions'];
|
||||
}
|
||||
if (array_key_exists('userid', $this->_customdata)) {
|
||||
$userid = $this->_customdata['userid'];
|
||||
}
|
||||
}
|
||||
|
||||
//Accessibility: "Required" is bad legend text.
|
||||
@@ -61,7 +66,7 @@ class user_editadvanced_form extends moodleform {
|
||||
useredit_shared_definition($mform, $editoroptions);
|
||||
|
||||
/// Next the customisable profile fields
|
||||
profile_definition($mform);
|
||||
profile_definition($mform, $userid);
|
||||
|
||||
$this->add_action_buttons(false, get_string('updatemyprofile'));
|
||||
}
|
||||
|
||||
@@ -169,7 +169,8 @@ class profile_field_base {
|
||||
* @param object instance of the moodleform class
|
||||
*/
|
||||
function edit_field_set_required(&$mform) {
|
||||
if ($this->is_required() and !has_capability('moodle/user:update', get_context_instance(CONTEXT_SYSTEM))) {
|
||||
global $USER;
|
||||
if ($this->is_required() && ($this->userid == $USER->id)) {
|
||||
$mform->addRule($this->inputname, get_string('required'), 'required', null, 'client');
|
||||
}
|
||||
}
|
||||
@@ -352,8 +353,9 @@ function profile_load_data(&$user) {
|
||||
/**
|
||||
* Print out the customisable categories and fields for a users profile
|
||||
* @param object instance of the moodleform class
|
||||
* @param int $userid id of user whose profile is being edited.
|
||||
*/
|
||||
function profile_definition(&$mform) {
|
||||
function profile_definition(&$mform, $userid = 0) {
|
||||
global $CFG, $DB;
|
||||
|
||||
// if user is "admin" fields are displayed regardless
|
||||
@@ -377,7 +379,7 @@ function profile_definition(&$mform) {
|
||||
foreach ($fields as $field) {
|
||||
require_once($CFG->dirroot.'/user/profile/field/'.$field->datatype.'/field.class.php');
|
||||
$newfield = 'profile_field_'.$field->datatype;
|
||||
$formfield = new $newfield($field->id);
|
||||
$formfield = new $newfield($field->id, $userid);
|
||||
$formfield->edit_field($mform);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user