3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * Allows you to edit a users profile
21 * @copyright 1999 Martin Dougiamas http://dougiamas.com
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 require_once('../config.php');
27 require_once($CFG->libdir
.'/gdlib.php');
28 require_once($CFG->libdir
.'/adminlib.php');
29 require_once($CFG->dirroot
.'/user/editadvanced_form.php');
30 require_once($CFG->dirroot
.'/user/editlib.php');
31 require_once($CFG->dirroot
.'/user/profile/lib.php');
33 //HTTPS is required in this page when $CFG->loginhttps enabled
34 $PAGE->https_required();
36 $id = optional_param('id', $USER->id
, PARAM_INT
); // user id; -1 if creating new user
37 $course = optional_param('course', SITEID
, PARAM_INT
); // course id (defaults to Site)
39 $PAGE->set_url('/user/editadvanced.php', array('course'=>$course, 'id'=>$id));
41 $course = $DB->get_record('course', array('id'=>$course), '*', MUST_EXIST
);
43 if (!empty($USER->newadminuser
)) {
44 $PAGE->set_course($SITE);
45 $PAGE->set_pagelayout('maintenance');
47 require_login($course);
48 $PAGE->set_pagelayout('admin');
51 if ($course->id
== SITEID
) {
52 $coursecontext = get_context_instance(CONTEXT_SYSTEM
); // SYSTEM context
54 $coursecontext = get_context_instance(CONTEXT_COURSE
, $course->id
); // Course context
56 $systemcontext = get_context_instance(CONTEXT_SYSTEM
);
60 $user = new stdClass();
62 $user->auth
= 'manual';
65 require_capability('moodle/user:create', $systemcontext);
66 admin_externalpage_setup('addnewuser', '', array('id' => -1));
68 // editing existing user
69 require_capability('moodle/user:update', $systemcontext);
70 $user = $DB->get_record('user', array('id'=>$id), '*', MUST_EXIST
);
71 $PAGE->set_context(get_context_instance(CONTEXT_USER
, $user->id
));
72 if ($user->id
== $USER->id
) {
73 if ($course->id
!= SITEID
&& $node = $PAGE->navigation
->find($course->id
, navigation_node
::TYPE_COURSE
)) {
75 $PAGE->navbar
->includesettingsbase
= true;
78 $PAGE->navigation
->extend_for_user($user);
82 // remote users cannot be edited
83 if ($user->id
!= -1 and is_mnet_remote_user($user)) {
84 redirect($CFG->wwwroot
. "/user/view.php?id=$id&course={$course->id}");
87 if ($user->id
!= $USER->id
and is_siteadmin($user) and !is_siteadmin($USER)) { // Only admins may edit other admins
88 print_error('useradmineditadmin');
91 if (isguestuser($user->id
)) { // the real guest user can not be edited
92 print_error('guestnoeditprofileother');
96 echo $OUTPUT->header();
97 echo $OUTPUT->heading(get_string('userdeleted'));
98 echo $OUTPUT->footer();
102 //load user preferences
103 useredit_load_preferences($user);
105 //Load custom profile fields data
106 profile_load_data($user);
109 if (!empty($CFG->usetags
)) {
110 require_once($CFG->dirroot
.'/tag/lib.php');
111 $user->interests
= tag_get_tags_array('user', $id);
114 if ($user->id
!== -1) {
115 $usercontext = get_context_instance(CONTEXT_USER
, $user->id
);
116 $editoroptions = array(
117 'maxfiles' => EDITOR_UNLIMITED_FILES
,
118 'maxbytes' => $CFG->maxbytes
,
119 'trusttext' => false,
120 'forcehttps' => false,
121 'context' => $usercontext
124 $user = file_prepare_standard_editor($user, 'description', $editoroptions, $usercontext, 'user', 'profile', 0);
127 // This is a new user, we don't want to add files here
128 $editoroptions = array(
133 'context' => $coursecontext
138 $userform = new user_editadvanced_form(null, array('editoroptions'=>$editoroptions));
139 $userform->set_data($user);
141 if ($usernew = $userform->get_data()) {
142 add_to_log($course->id
, 'user', 'update', "view.php?id=$user->id&course=$course->id", '');
144 if (empty($usernew->auth
)) {
146 $authplugin = get_auth_plugin($user->auth
);
147 unset($usernew->auth
); //can not change/remove
149 $authplugin = get_auth_plugin($usernew->auth
);
152 $usernew->timemodified
= time();
154 if ($usernew->id
== -1) {
155 //TODO check out if it makes sense to create account with this auth plugin and what to do with the password
157 $usernew = file_postupdate_standard_editor($usernew, 'description', $editoroptions, null, 'user', 'profile', null);
158 $usernew->mnethostid
= $CFG->mnet_localhost_id
; // always local user
159 $usernew->confirmed
= 1;
160 $usernew->timecreated
= time();
161 $usernew->password
= hash_internal_user_password($usernew->newpassword
);
162 $usernew->id
= $DB->insert_record('user', $usernew);
166 $usernew = file_postupdate_standard_editor($usernew, 'description', $editoroptions, $usercontext, 'user', 'profile', 0);
167 $DB->update_record('user', $usernew);
168 // pass a true $userold here
169 if (! $authplugin->user_update($user, $userform->get_data())) {
170 // auth update failed, rollback for moodle
171 $DB->update_record('user', $user);
172 print_error('cannotupdateuseronexauth', '', '', $user->auth
);
175 //set new password if specified
176 if (!empty($usernew->newpassword
)) {
177 if ($authplugin->can_change_password()) {
178 if (!$authplugin->user_update_password($usernew, $usernew->newpassword
)){
179 print_error('cannotupdatepasswordonextauth', '', '', $usernew->auth
);
181 unset_user_preference('create_password', $usernew); // prevent cron from generating the password
184 $usercreated = false;
187 $usercontext = get_context_instance(CONTEXT_USER
, $usernew->id
);
190 useredit_update_user_preference($usernew);
193 if (!empty($CFG->usetags
) and empty($USER->newadminuser
)) {
194 useredit_update_interests($usernew, $usernew->interests
);
197 //update user picture
198 if (!empty($CFG->gdversion
) and empty($USER->newadminuser
)) {
199 useredit_update_picture($usernew, $userform);
202 // update mail bounces
203 useredit_update_bounces($user, $usernew);
205 // update forum track preference
206 useredit_update_trackforums($user, $usernew);
208 // save custom profile fields data
209 profile_save_data($usernew);
212 $usernew = $DB->get_record('user', array('id'=>$usernew->id
));
216 //set default message preferences
217 if (!message_set_default_message_preferences( $usernew )){
218 print_error('cannotsavemessageprefs', 'message');
220 events_trigger('user_created', $usernew);
222 events_trigger('user_updated', $usernew);
225 if ($user->id
== $USER->id
) {
226 // Override old $USER session variable
227 foreach ((array)$usernew as $variable => $value) {
228 $USER->$variable = $value;
230 // preload custom fields
231 profile_load_custom_fields($USER);
233 if (!empty($USER->newadminuser
)) {
234 unset($USER->newadminuser
);
235 // apply defaults again - some of them might depend on admin user info, backup, roles, etc.
236 admin_apply_default_settings(NULL , false);
237 // redirect to admin/ to continue with installation
238 redirect("$CFG->wwwroot/$CFG->admin/");
240 redirect("$CFG->wwwroot/user/view.php?id=$USER->id&course=$course->id");
243 session_gc(); // remove stale sessions
244 redirect("$CFG->wwwroot/$CFG->admin/user.php");
249 // make sure we really are on the https page when https login required
250 $PAGE->verify_https_required();
253 /// Display page header
254 if ($user->id
== -1 or ($user->id
!= $USER->id
)) {
255 if ($user->id
== -1) {
256 echo $OUTPUT->header();
258 $PAGE->set_heading($SITE->fullname
);
259 echo $OUTPUT->header();
260 $userfullname = fullname($user, true);
261 echo $OUTPUT->heading($userfullname);
263 } else if (!empty($USER->newadminuser
)) {
264 $strinstallation = get_string('installation', 'install');
265 $strprimaryadminsetup = get_string('primaryadminsetup');
267 $PAGE->navbar
->add($strprimaryadminsetup);
268 $PAGE->set_title($strinstallation);
269 $PAGE->set_heading($strinstallation);
270 $PAGE->set_cacheable(false);
272 echo $OUTPUT->header();
273 echo $OUTPUT->box(get_string('configintroadmin', 'admin'), 'generalbox boxwidthnormal boxaligncenter');
276 $streditmyprofile = get_string('editmyprofile');
277 $strparticipants = get_string('participants');
278 $strnewuser = get_string('newuser');
279 $userfullname = fullname($user, true);
281 $PAGE->set_title("$course->shortname: $streditmyprofile");
282 $PAGE->set_heading($course->fullname
);
284 echo $OUTPUT->header();
285 echo $OUTPUT->heading($userfullname);
288 /// Finally display THE form
289 $userform->display();
291 /// and proper footer
292 echo $OUTPUT->footer();