Added conversion of &apm; back into & to display &amp;lt; as <.
[squirrelmail.git] / src / load_prefs.php
CommitLineData
59177427 1<?php
ef870322 2 /**
3 ** load_prefs.php
4 **
5 ** Copyright (c) 1999-2000 The SquirrelMail development team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
7 **
8 ** Loads preferences from the $username.pref file used by almost
9 ** every other script in the source directory and alswhere.
10 **
245a6892 11 ** $Id$
ef870322 12 **/
13
e7a988c1 14 include('../src/validate.php');
15
f740c049 16 if (defined('load_prefs_php'))
17 return;
18 define('load_prefs_php', true);
19
20 global $theme, $chosen_theme, $color;
9a6f7785 21 if (! isset($theme))
22 $theme = array();
23 if (! isset($color))
24 $color = array();
f740c049 25 include("../functions/prefs.php");
26 include("../functions/plugin.php");
37df47f5 27
ceac7a2f 28 if (!isset($username))
29 $username = '';
b4da6659 30 checkForPrefs($data_dir, $username);
31
d0747e26 32 $chosen_theme = getPref($data_dir, $username, "chosen_theme");
47f9c368 33 $in_ary = false;
34 for ($i=0; $i < count($theme); $i++){
35 if ($theme[$i]["PATH"] == $chosen_theme) {
36 $in_ary = true;
37 break;
38 }
39 }
f740c049 40
41 if (! $in_ary)
42 $chosen_theme = "";
d3cdb279 43
f740c049 44 if (isset($chosen_theme) && $in_ary && (file_exists($chosen_theme))) {
45 @include($chosen_theme);
d3cdb279 46 } else {
f6c5afea 47 if (isset($theme) && isset($theme[0]) && file_exists($theme[0]["PATH"])) {
f740c049 48 @include($theme[0]["PATH"]);
f3d17401 49 } else {
98fe1e9f 50 #
f740c049 51 # I hard coded the theme as a failsafe if no themes were
98fe1e9f 52 # found. It makes no sense to cause the whole thing to exit
74a7d5b0 53 # just because themes were not found. This is the absolute
98fe1e9f 54 # last resort.
55 #
56 $color[0] = "#DCDCDC"; // (light gray) TitleBar
57 $color[1] = "#800000"; // (red)
58 $color[2] = "#CC0000"; // (light red) Warning/Error Messages
59 $color[3] = "#A0B8C8"; // (green-blue) Left Bar Background
60 $color[4] = "#FFFFFF"; // (white) Normal Background
61 $color[5] = "#FFFFCC"; // (light yellow) Table Headers
62 $color[6] = "#000000"; // (black) Text on left bar
63 $color[7] = "#0000CC"; // (blue) Links
64 $color[8] = "#000000"; // (black) Normal text
65 $color[9] = "#ABABAB"; // (mid-gray) Darker version of #0
66 $color[10] = "#666666"; // (dark gray) Darker version of #9
67 $color[11] = "#770000"; // (dark red) Special Folders color
f3d17401 68 }
d3cdb279 69 }
2de8df87 70
f740c049 71 if (!defined('download_php'))
72 session_register("theme_css");
73
74 global $use_javascript_addr_book;
3806fa52 75 $use_javascript_addr_book = getPref($data_dir, $username, "use_javascript_addr_book");
76 if ($use_javascript_addr_book == "")
77 $use_javascript_addr_book = $default_use_javascript_addr_book;
78
79
1573e796 80 /** Load the user's sent folder preferences **/
f740c049 81 global $move_to_sent, $move_to_trash;
1573e796 82 $move_to_sent = getPref($data_dir, $username, "move_to_sent");
83 if ($move_to_sent == "")
84 $move_to_sent = $default_move_to_sent;
85
86 /** Load the user's trash folder preferences **/
87 $move_to_trash = getPref($data_dir, $username, "move_to_trash");
88 if ($move_to_trash == "")
89 $move_to_trash = $default_move_to_trash;
90
91
f740c049 92 global $unseen_type, $unseen_notify;
24fc5dd2 93 $unseen_type = getPref($data_dir, $username, "unseen_type");
94 if ($default_unseen_type == "")
95 $default_unseen_type = 1;
96 if ($unseen_type == "")
97 $unseen_type = $default_unseen_type;
98
99 $unseen_notify = getPref($data_dir, $username, "unseen_notify");
100 if ($default_unseen_notify == "")
101 $default_unseen_notify = 2;
102 if ($unseen_notify == "")
103 $unseen_notify = $default_unseen_notify;
104
105
f740c049 106 global $folder_prefix;
1e0628fb 107 $folder_prefix = getPref($data_dir, $username, "folder_prefix");
108 if ($folder_prefix == "")
109 $folder_prefix = $default_folder_prefix;
110
f740c049 111
1e0628fb 112 /** Load special folders **/
f740c049 113 global $trash_folder, $sent_folder;
1e0628fb 114 $new_trash_folder = getPref($data_dir, $username, "trash_folder");
115 if (($new_trash_folder == "") && ($move_to_trash == true))
116 $trash_folder = $folder_prefix . $trash_folder;
117 else
118 $trash_folder = $new_trash_folder;
119
120 /** Load special folders **/
121 $new_sent_folder = getPref($data_dir, $username, "sent_folder");
122 if (($new_sent_folder == "") && ($move_to_sent == true))
123 $sent_folder = $folder_prefix . $sent_folder;
124 else
125 $sent_folder = $new_sent_folder;
11307a4c 126
f740c049 127
128 global $show_num, $wrap_at, $left_size;
9c83f905 129 $show_num = getPref($data_dir, $username, "show_num");
130 if ($show_num == "")
131 $show_num = 25;
132
11307a4c 133 $wrap_at = getPref($data_dir, $username, "wrap_at");
134 if ($wrap_at == "")
135 $wrap_at = 86;
7aaa81fc 136 if ($wrap_at < 15)
137 $wrap_at = 15;
11307a4c 138
2848c630 139 $left_size = getPref($data_dir, $username, "left_size");
140 if ($left_size == "") {
141 if (isset($default_left_size))
142 $left_size = $default_left_size;
143 else
144 $left_size = 200;
145 }
146
f740c049 147
148 global $editor_size, $use_signature, $prefix_sig;
11307a4c 149 $editor_size = getPref($data_dir, $username, "editor_size");
150 if ($editor_size == "")
151 $editor_size = 76;
f804972b 152
153 $use_signature = getPref($data_dir, $username, "use_signature");
154 if ($use_signature == "")
155 $use_signature = false;
156
025deae0 157 $prefix_sig = getPref($data_dir, $username, "prefix_sig");
158 if ($prefix_sig == "")
f740c049 159 $prefix_sig = true;
160
025deae0 161
f740c049 162 global $left_refresh, $sort;
469eb37b 163 $left_refresh = getPref($data_dir, $username, "left_refresh");
164 if ($left_refresh == "")
165 $left_refresh = false;
5c54e435 166
167 $sort = getPref($data_dir, $username, "sort");
168 if ($sort == "")
169 $sort = 6;
469eb37b 170
f740c049 171
f804972b 172 /** Load up the Signature file **/
f740c049 173 global $signature_abs;
f804972b 174 if ($use_signature == true) {
c36ed9cf 175 $signature_abs = $signature = getSig($data_dir, $username);
f804972b 176 } else {
c36ed9cf 177 $signature_abs = getSig($data_dir, $username);
f804972b 178 }
636e611c 179
f740c049 180
9d157cec 181 // highlightX comes in with the form: name,color,header,value
f740c049 182 global $message_highlight_list;
9d157cec 183 for ($i=0; $hlt = getPref($data_dir, $username, "highlight$i"); $i++) {
184 $ary = explode(",", $hlt);
185 $message_highlight_list[$i]["name"] = $ary[0];
186 $message_highlight_list[$i]["color"] = $ary[1];
187 $message_highlight_list[$i]["value"] = $ary[2];
3e69e88b 188 $message_highlight_list[$i]["match_type"] = $ary[3];
9d157cec 189 }
8e265988 190
f740c049 191
8e265988 192 #index order lets you change the order of the message index
f740c049 193 global $index_order;
8e265988 194 $order = getPref($data_dir, $username, "order1");
195 for ($i=1; $order; $i++) {
196 $index_order[$i] = $order;
197 $order = getPref($data_dir, $username, "order".($i+1));
198 }
a7ea7540 199 if (!isset($index_order)) {
8e265988 200 $index_order[1] = 1;
201 $index_order[2] = 2;
202 $index_order[3] = 3;
203 $index_order[4] = 5;
204 $index_order[5] = 4;
205 }
9a732bb6 206
ac53fb56 207 global $alt_index_colors;
208 $alt_index_colors = getPref($data_dir, $username, 'alt_index_colors');
209 if ($alt_index_colors === 0) {
210 $alt_index_colors = false;
211 } else {
212 $alt_index_colors = true;
213 }
214
f740c049 215
216 global $location_of_bar, $location_of_buttons;
9a732bb6 217 $location_of_bar = getPref($data_dir, $username, 'location_of_bar');
218 if ($location_of_bar == '')
219 $location_of_bar = 'left';
441f2d33 220
221 $location_of_buttons = getPref($data_dir, $username, 'location_of_buttons');
222 if ($location_of_buttons == '')
223 $location_of_buttons = 'between';
235a65d5 224
f740c049 225
226 global $collapse_folders, $show_html_default;
235a65d5 227 $collapse_folders = getPref($data_dir, $username, 'collapse_folders');
e2ab93e5 228
229 $show_html_default = getPref($data_dir, $username, 'show_html_default');
c36ed9cf 230
6b638171 231 do_hook("loading_prefs");
b731cd83 232
11307a4c 233?>