2 if (!isset($user->htmleditor
)) {
5 if (!isset($user->picture
)) {
8 if (empty($user->lang
)) {
9 $user->lang
= $CFG->lang
;
11 if (!isset($user->theme
)) {
14 if (!isset($user->trackforums
)) {
15 $user->trackforums
= 0;
20 <form method=
"post" name=
"form" enctype=
"multipart/form-data" action=
"edit.php">
21 <table class=
"formtable">
24 $theadmin = get_admin();
25 $adminself = (($theadmin->id
== $USER->id
) and ($USER->id
== $user->id
));
27 echo '<th>'.get_string('username').':</th>';
28 if ($adminself ||
is_internal_auth($user->auth
) ){
29 echo "<td><input type=\"text\" name=\"username\" size=\"20\" alt=\"".get_string("username")."\" value=\"";
32 if (isset($err["username"])) formerr($err["username"]);
36 echo "<input type=\"hidden\" name=\"username\" value=\"";
43 $modules = get_list_of_plugins("auth");
44 foreach ($modules as $module) {
45 $auth_options[$module] = get_string("auth_$module"."title", "auth");
47 if (!$adminself) { /// Main admin is ALWAYS default manual
49 echo '<th>'.get_string("chooseauthmethod","auth").':</th>' . "\n<td>";
50 choose_from_menu ($auth_options, 'auth', $user->auth
);
51 helpbutton('authchange', get_string('chooseauthmethod', 'auth'));
55 if ($adminself ||
is_internal_auth($user->auth
) ||
(!empty($CFG->{'auth_'.$user->auth
.'_stdchangepassword'}))) {
57 echo '<th>'.get_string('newpassword').':</th>';
58 echo "<td><input type=\"text\" name=\"newpassword\" size=\"20\" alt=\"".get_string("newpassword")."\" value=\"";
59 if (isset($user->newpassword
)) {
60 p($user->newpassword
);
63 if (isset($err["newpassword"])) {
64 formerr($err["newpassword"]);
65 } else if (empty($user->newpassword
)) {
66 echo " (".get_string("leavetokeep").")";
70 if (!$adminself && (!empty($CFG->{'auth_'.$user->auth
.'_stdchangepassword'}) ||
$CFG->changepassword
)){
71 if (get_user_preferences('auth_forcepasswordchange', NULL, $user->id
)) {
72 $checked = ' checked="checked" ';
77 echo '<th>'.get_string('forcepasswordchange').':</th>';
78 echo '<td><input type="checkbox" name="forcepasswordchange" alt="'.get_string('forcepasswordchange').'" '.$checked.' /> '.get_string('forcepasswordchangehelp').'</td>';
82 echo '<tr><td colspan="2"><hr /></td></tr>';
88 <th><?php print_string("firstname") ?>:
</th>
90 <input type=
"text" name=
"firstname" size=
"30" alt=
"<?php print_string("firstname
") ?>" maxlength
="20" value
="<?php p($user->firstname) ?>" />
91 <?php
if (isset($err["firstname"])) formerr($err["firstname"]); ?>
95 <th><?php print_string("lastname") ?>:
</th>
97 <input type=
"text" name=
"lastname" size=
"30" alt=
"<?php print_string("lastname
") ?>" maxlength
="20" value
="<?php p($user->lastname) ?>" />
98 <?php
if (isset($err["lastname"])) formerr($err["lastname"]); ?>
102 <th><?php print_string("email") ?>:
</th>
104 <input type=
"text" name=
"email" size=
"30" alt=
"<?php print_string("email
") ?>" maxlength
="100" value
="<?php p($user->email) ?>" />
105 <?php
if (isset($err["email"])) formerr($err["email"]); ?>
109 <th><?php print_string("emaildisplay") ?>:
</th>
112 $choices["0"] = get_string("emaildisplayno");
113 $choices["1"] = get_string("emaildisplayyes");
114 $choices["2"] = get_string("emaildisplaycourse");
115 choose_from_menu ($choices, "maildisplay", $user->maildisplay
, "") ?>
119 <th><?php print_string("emailactive") ?>:
</th>
122 $choices["0"] = get_string("emailenable");
123 $choices["1"] = get_string("emaildisable");
124 choose_from_menu ($choices, "emailstop", $user->emailstop
, "") ?>
128 <th><?php print_string("emailformat") ?>:
</th>
131 $choices["0"] = get_string("textformat");
132 $choices["1"] = get_string("htmlformat");
133 choose_from_menu ($choices, "mailformat", $user->mailformat
, "") ?>
137 <th><?php print_string('emaildigest') ?>:
</th>
140 $choices['0'] = get_string('emaildigestoff');
141 $choices['1'] = get_string('emaildigestcomplete');
142 $choices['2'] = get_string('emaildigestsubjects');
143 choose_from_menu ($choices, 'maildigest', $user->maildigest
, "") ?>
147 <th><?php print_string("autosubscribe") ?>:
</th>
150 $choices["1"] = get_string("autosubscribeyes");
151 $choices["0"] = get_string("autosubscribeno");
152 choose_from_menu ($choices, "autosubscribe", $user->autosubscribe
, "") ?>
155 <?php if ($CFG->forum_trackreadposts
) { ?>
157 <th><?php print_string("trackforums") ?>:
</th>
160 $choices["0"] = get_string("trackforumsno");
161 $choices["1"] = get_string("trackforumsyes");
162 choose_from_menu ($choices, "trackforums", $user->trackforums
, "") ?>
166 <?php if ($CFG->htmleditor
) { ?>
168 <th><?php print_string("textediting") ?>:
</th>
171 $choices["0"] = get_string("texteditor");
172 $choices["1"] = get_string("htmleditor");
173 choose_from_menu ($choices, "htmleditor", $user->htmleditor
, "") ?>
178 <th><?php print_string("city") ?>:
</th>
180 <input type=
"text" name=
"city" size=
"25" alt=
"<?php print_string("city
") ?>" maxlength
="20" value
="<?php p($user->city) ?>" />
181 <?php
if (isset($err["city"])) formerr($err["city"]); ?>
185 <th><?php print_string("country") ?>:
</th>
189 if (!$user->country
and $CFG->country
) {
190 $user->country
= $CFG->country
;
193 choose_from_menu(get_list_of_countries(), "country", $user->country
, get_string("selectacountry")."...", "", "");
195 <?php if (isset($err["country"])) formerr($err["country"]); ?>
199 <th><?php print_string('timezone')?>:
</th>
202 $timezones = get_list_of_timezones();
203 if ($CFG->forcetimezone
!= 99) {
204 choose_from_menu($timezones, 'timezone', $CFG->forcetimezone
, get_string('serverlocaltime'), '', '99', false, true);
206 choose_from_menu($timezones, 'timezone', $user->timezone
, get_string('serverlocaltime'), '', '99');
212 <th><?php print_string("preferredlanguage") ?>:
</th>
213 <td><?php if ($languages = get_list_of_languages()) {
215 $user->lang
= $CFG->lang
;
217 choose_from_menu ($languages, "lang", $user->lang
, "", "", "");
219 if (isset($err["lang"])) formerr($err["lang"]);
223 <?php if (!empty($CFG->allowuserthemes
)) { ?>
225 <th><?php print_string("preferredtheme") ?>:
</th>
227 $themes[''] = get_string('default');
228 $themes +
= get_list_of_themes();
229 choose_from_menu($themes, 'theme', $user->theme
, "", "", "");
230 if (isset($err["theme"])) formerr($err["theme"]);
236 <th><?php print_string("userdescription") ?>:
</th>
238 if (isset($err["description"])) {
239 formerr($err["description"]);
242 print_textarea(false, 10, 50, 50, 10, 'description', "$user->description");
243 helpbutton("text", get_string("helptext"));
248 <td colspan=
"2" style=
"text-align: center;"><input type=
"submit" value=
"<?php print_string("updatemyprofile
") ?>" /></td
>
253 <td colspan
="2" align
="center"> <br
/><b
><?php
print_string("followingoptional") ?>:
</b></td>
258 $maxbytes = get_max_upload_file_size($CFG->maxbytes
, $course->maxbytes
);
259 if (!empty($CFG->gdversion
) and $maxbytes and empty($CFG->disableuserimages
)) {
262 <th><?php print_string("currentpicture") ?>:
</th>
264 <?php print_user_picture($user->id
, $course->id
, $user->picture
, false, false, false);
265 if ($user->picture
) {
266 echo ' <input type="checkbox" name="deletepicture" alt="'.get_string("delete").'" value="1" />';
267 print_string("delete");
273 <th><?php print_string("newpicture") ?>:
</th>
276 require_once($CFG->dirroot
.'/lib/uploadlib.php');
277 upload_print_form_fragment(1,array('imagefile'),null,false,null,0,0,false);
278 helpbutton("picture", get_string("helppicture"));
279 print_string("maxsize", "", display_size($maxbytes));
280 if (isset($err["imagefile"])) formerr($err["imagefile"]);
284 <?php } else if (empty($CFG->gdversion
) and isadmin()) { ?>
286 <th><?php print_string("newpicture") ?>:
</th>
289 echo "<a href=\"$CFG->wwwroot/$CFG->admin/config.php\">";
290 print_string('gdnot');
298 <th><?php print_string("webpage") ?>:
</th>
299 <td><input type=
"text" name=
"url" size=
"50" alt=
"<?php print_string("webpage
") ?>" maxlength
="255" value
="<?php p($user->url) ?>" />
300 <?php
if (isset($err["url"])) formerr($err["url"]); ?>
304 <th><?php print_string("icqnumber") ?>:
</th>
305 <td><input type=
"text" name=
"icq" size=
"25" alt=
"<?php print_string("icqnumber
") ?>" maxlength
="15" value
="<?php p($user->icq) ?>" />
306 <?php
if (isset($err["icq"])) formerr($err["icq"]); ?>
310 <th><?php print_string("skypeid") ?>:
</th>
311 <td><input type=
"text" name=
"skype" size=
"25" alt=
"<?php print_string("skypeid
") ?>" maxlength
="50" value
="<?php p($user->skype) ?>" />
312 <?php
if (isset($err["skype"])) formerr($err["skype"]); ?>
316 <th><?php print_string("aimid") ?>:
</th>
317 <td><input type=
"text" name=
"aim" size=
"25" alt=
"<?php print_string("aimid
") ?>" maxlength
="50" value
="<?php p($user->aim) ?>" />
318 <?php
if (isset($err["aim"])) formerr($err["aim"]); ?>
322 <th><?php print_string("yahooid") ?>:
</th>
323 <td><input type=
"text" name=
"yahoo" size=
"25" alt=
"<?php print_string("yahooid
") ?>" maxlength
="50" value
="<?php p($user->yahoo) ?>" />
324 <?php
if (isset($err["yahoo"])) formerr($err["yahoo"]); ?>
328 <th><?php print_string("msnid") ?>:
</th>
329 <td><input type=
"text" name=
"msn" size=
"25" alt=
"<?php print_string("msnid
") ?>" maxlength
="50" value
="<?php p($user->msn) ?>" />
330 <?php
if (isset($err["msn"])) formerr($err["msn"]); ?>
334 <th><?php print_string("idnumber") ?>:
</th>
336 <input type=
"text" name=
"idnumber" size=
"25" alt=
"<?php print_string("idnumber
") ?>" maxlength
="12" value
="<?php p($user->idnumber) ?>" /> <?php
p($teacheronly) ?>
337 <?php if (isset($err["idnumber"])) formerr($err["idnumber"]); ?>
340 <?php if (isadmin()) { ?>
342 <th><?php print_string("institution") ?>:
</th>
343 <td><input type=
"text" name=
"institution" size=
"25" alt=
"<?php print_string("institution
") ?>" maxlength
="40" value
="<?php p($user->institution) ?>" /> <?php
p($teacheronly) ?>
347 <th><?php print_string("department") ?>:
</th>
349 <input type=
"text" name=
"department" size=
"25" alt=
"<?php print_string("department
") ?>" maxlength
="30" value
="<?php p($user->department) ?>" /> <?php
p($teacheronly) ?>
354 <th><?php print_string("phone") ?> 1:
</th>
356 <input type=
"text" name=
"phone1" size=
"25" alt=
"<?php print_string("phone
") ?>" maxlength
="20" value
="<?php p($user->phone1) ?>" /> <?php
p($teacheronly) ?>
357 <?php if (isset($err["phone1"])) formerr($err["phone1"]); ?>
361 <th><?php print_string("phone") ?> 2:
</th>
363 <input type=
"text" name=
"phone2" size=
"25" alt=
"<?php print_string("phone
") ?>" maxlength
="20" value
="<?php p($user->phone2) ?>" /> <?php
p($teacheronly) ?>
364 <?php if (isset($err["phone2"])) formerr($err["phone2"]); ?>
368 <th><?php print_string("address") ?>:
</th>
370 <input type=
"text" name=
"address" size=
"25" alt=
"<?php print_string("address
") ?>" maxlength
="70" value
="<?php p($user->address) ?>" /> <?php
p($teacheronly) ?>
371 <?php if (isset($err["address"])) formerr($err["address"]); ?>
375 <td colspan=
"2" style=
"text-align: center;"><input type=
"submit" value=
"<?php print_string("updatemyprofile
") ?>" /></td
>
378 <input type
="hidden" name
="course" value
="<?php p($course->id) ?>" />
379 <input type
="hidden" name
="id" value
="<?php p($user->id) ?>" />