summaryrefslogtreecommitdiff
path: root/modules/user/user.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-09-30 21:48:32 +0000
committerDries Buytaert <dries@buytaert.net>2003-09-30 21:48:32 +0000
commit392304da5f4a6f86d8ab8b5f91d38a698d1dcc88 (patch)
tree9f314e3b0d3545219e4b11ad91ba93414ace489f /modules/user/user.module
parent6baa7d7c218549f898366b60cc4257c010efee71 (diff)
downloadbrdo-392304da5f4a6f86d8ab8b5f91d38a698d1dcc88.tar.gz
brdo-392304da5f4a6f86d8ab8b5f91d38a698d1dcc88.tar.bz2
- Moved the locale settings from the user module to the locale module.
Patch by Stefan. - Moved the theme settings from the user module to the system module and made the code more intelligent. Patch by Stefan.
Diffstat (limited to 'modules/user/user.module')
-rw-r--r--modules/user/user.module18
1 files changed, 6 insertions, 12 deletions
diff --git a/modules/user/user.module b/modules/user/user.module
index 2b739f1e6..d3bd79d35 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -454,8 +454,11 @@ function user_block($op = "list", $delta = 0) {
}
return $block;
case 1:
- $block["subject"] = $user->uid ? $user->name : t("Navigation");
- $block["content"] = "<div id=\"menu\">". menu_tree() ."</div>";
+ if ($menu = menu_tree()) {
+ $block["subject"] = $user->uid ? $user->name : t("Navigation");
+ $block["content"] = "<div id=\"menu\">". $menu ."</div>";
+ }
+
return $block;
case 2:
if (user_access("access content")) {
@@ -975,7 +978,7 @@ function user_delete() {
}
function user_edit($edit = array()) {
- global $user, $languages;
+ global $user;
if ($user->uid) {
if ($edit["name"]) {
@@ -1065,15 +1068,6 @@ function user_edit($edit = array()) {
$output .= implode("\n", module_invoke_all ("user", "edit_form", $edit, $user));
- $options = "<option value=\"\"". (("" == $key) ? " selected=\"selected\"" : "") .">". t("Default theme") ."</option>\n";
- foreach (theme_list() as $key => $value) {
- $options .= "<option value=\"$key\"". (($edit["theme"] == $key) ? " selected=\"selected\"" : "") .">$key - $value->description</option>\n";
- }
-
- $output .= form_item(t("Theme"), "<select name=\"edit[theme]\">$options</select>", t("Selecting a different theme will change the look and feel of the site."));
- for ($zone = -43200; $zone <= 46800; $zone += 3600) $zones[$zone] = date(variable_get("date_format_long", "l, F dS, Y - g:ia"), time() - date("Z") + $zone) ." (GMT ". $zone / 3600 .")";
- $output .= form_select(t("Time zone"), "timezone", $edit["timezone"], $zones, t("Select what time you currently have and your time zone settings will be set appropriate."));
- $output .= form_select(t("Language"), "language", $edit["language"], $languages, t("Selecting a different language will change the language of the site."));
$output .= form_item(t("Password"), "<input type=\"password\" name=\"edit[pass1]\" size=\"12\" maxlength=\"24\" /> <input type=\"password\" name=\"edit[pass2]\" size=\"12\" maxlength=\"24\" />", t("Enter your new password twice if you want to change your current password or leave it blank if you are happy with your current password."));
$output .= form_submit(t("Save user information"));