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 | |
ff8a98e7 |
14 | require_once('../src/validate.php'); |
e7a988c1 |
15 | |
ff8a98e7 |
16 | // ---------------------------------------------------------- |
17 | // Following code should be removed in the next foo_once step |
f740c049 |
18 | if (defined('load_prefs_php')) |
19 | return; |
20 | define('load_prefs_php', true); |
ff8a98e7 |
21 | // ---------------------------------------------------------- |
f740c049 |
22 | |
23 | global $theme, $chosen_theme, $color; |
9a6f7785 |
24 | if (! isset($theme)) |
25 | $theme = array(); |
26 | if (! isset($color)) |
27 | $color = array(); |
ff8a98e7 |
28 | require_once('../functions/prefs.php'); |
29 | require_once('../functions/plugin.php'); |
37df47f5 |
30 | |
ceac7a2f |
31 | if (!isset($username)) |
32 | $username = ''; |
b4da6659 |
33 | checkForPrefs($data_dir, $username); |
34 | |
d0747e26 |
35 | $chosen_theme = getPref($data_dir, $username, "chosen_theme"); |
47f9c368 |
36 | $in_ary = false; |
37 | for ($i=0; $i < count($theme); $i++){ |
38 | if ($theme[$i]["PATH"] == $chosen_theme) { |
39 | $in_ary = true; |
40 | break; |
41 | } |
42 | } |
f740c049 |
43 | |
44 | if (! $in_ary) |
45 | $chosen_theme = ""; |
d3cdb279 |
46 | |
f740c049 |
47 | if (isset($chosen_theme) && $in_ary && (file_exists($chosen_theme))) { |
ff8a98e7 |
48 | @include_once($chosen_theme); |
d3cdb279 |
49 | } else { |
f6c5afea |
50 | if (isset($theme) && isset($theme[0]) && file_exists($theme[0]["PATH"])) { |
ff8a98e7 |
51 | @include_once($theme[0]["PATH"]); |
f3d17401 |
52 | } else { |
98fe1e9f |
53 | # |
f740c049 |
54 | # I hard coded the theme as a failsafe if no themes were |
98fe1e9f |
55 | # found. It makes no sense to cause the whole thing to exit |
74a7d5b0 |
56 | # just because themes were not found. This is the absolute |
98fe1e9f |
57 | # last resort. |
58 | # |
59 | $color[0] = "#DCDCDC"; // (light gray) TitleBar |
60 | $color[1] = "#800000"; // (red) |
61 | $color[2] = "#CC0000"; // (light red) Warning/Error Messages |
62 | $color[3] = "#A0B8C8"; // (green-blue) Left Bar Background |
63 | $color[4] = "#FFFFFF"; // (white) Normal Background |
64 | $color[5] = "#FFFFCC"; // (light yellow) Table Headers |
65 | $color[6] = "#000000"; // (black) Text on left bar |
66 | $color[7] = "#0000CC"; // (blue) Links |
67 | $color[8] = "#000000"; // (black) Normal text |
68 | $color[9] = "#ABABAB"; // (mid-gray) Darker version of #0 |
69 | $color[10] = "#666666"; // (dark gray) Darker version of #9 |
70 | $color[11] = "#770000"; // (dark red) Special Folders color |
f3d17401 |
71 | } |
d3cdb279 |
72 | } |
2de8df87 |
73 | |
f740c049 |
74 | if (!defined('download_php')) |
75 | session_register("theme_css"); |
76 | |
77 | global $use_javascript_addr_book; |
45cfc124 |
78 | $use_javascript_addr_book = getPref($data_dir, $username, 'use_javascript_addr_book', $default_use_javascript_addr_book); |
3806fa52 |
79 | |
1573e796 |
80 | /** Load the user's sent folder preferences **/ |
f740c049 |
81 | global $move_to_sent, $move_to_trash; |
45cfc124 |
82 | $move_to_sent = getPref($data_dir, $username, 'move_to_sent', $default_move_to_sent); |
1573e796 |
83 | |
84 | /** Load the user's trash folder preferences **/ |
45cfc124 |
85 | $move_to_trash = getPref($data_dir, $username, 'move_to_trash', $default_move_to_trash); |
1573e796 |
86 | |
f740c049 |
87 | global $unseen_type, $unseen_notify; |
45cfc124 |
88 | if ($default_unseen_type == '') |
24fc5dd2 |
89 | $default_unseen_type = 1; |
45cfc124 |
90 | $unseen_type = getPref($data_dir, $username, 'unseen_type', $default_unseen_type); |
91 | if ($default_unseen_notify == '') |
24fc5dd2 |
92 | $default_unseen_notify = 2; |
45cfc124 |
93 | $unseen_notify = getPref($data_dir, $username, 'unseen_notify', $default_unseen_notify); |
24fc5dd2 |
94 | |
f740c049 |
95 | global $folder_prefix; |
45cfc124 |
96 | $folder_prefix = getPref($data_dir, $username, 'folder_prefix', $default_folder_prefix); |
1e0628fb |
97 | |
cd41fc8d |
98 | /** Load special folders **/ |
99 | global $trash_folder, $sent_folder; |
45cfc124 |
100 | $new_trash_folder = getPref($data_dir, $username, 'trash_folder'); |
101 | if ( ( $new_trash_folder == '' ) && ( $move_to_trash ) ) { |
cd41fc8d |
102 | $trash_folder = $folder_prefix . $trash_folder; |
103 | } else { |
104 | $trash_folder = $new_trash_folder; |
105 | } |
f740c049 |
106 | |
cd41fc8d |
107 | /** Load special folders **/ |
45cfc124 |
108 | $new_sent_folder = getPref($data_dir, $username, 'sent_folder'); |
109 | if ( ( $new_sent_folder == '' ) && ( $move_to_sent ) ) { |
cd41fc8d |
110 | $sent_folder = $folder_prefix . $sent_folder; |
111 | } else { |
112 | $sent_folder = $new_sent_folder; |
113 | } |
f740c049 |
114 | |
115 | global $show_num, $wrap_at, $left_size; |
45cfc124 |
116 | $show_num = getPref($data_dir, $username, 'show_num', 15 ); |
117 | |
118 | $wrap_at = getPref( $data_dir, $username, 'wrap_at', 86 ); |
119 | if ($wrap_at < 15) { |
7aaa81fc |
120 | $wrap_at = 15; |
cd41fc8d |
121 | } |
11307a4c |
122 | |
45cfc124 |
123 | $left_size = getPref($data_dir, $username, 'left_size'); |
2848c630 |
124 | if ($left_size == "") { |
cd41fc8d |
125 | if (isset($default_left_size)) { |
2848c630 |
126 | $left_size = $default_left_size; |
cd41fc8d |
127 | } else { |
2848c630 |
128 | $left_size = 200; |
cd41fc8d |
129 | } |
130 | } |
f740c049 |
131 | |
132 | global $editor_size, $use_signature, $prefix_sig; |
45cfc124 |
133 | $editor_size = getPref($data_dir, $username, "editor_size", 76 ); |
cd41fc8d |
134 | |
45cfc124 |
135 | $use_signature = getPref($data_dir, $username, 'use_signature', FALSE ); |
f804972b |
136 | |
025deae0 |
137 | $prefix_sig = getPref($data_dir, $username, "prefix_sig"); |
cd41fc8d |
138 | |
139 | /* Load preferences for reply citation style. */ |
140 | global $reply_citation_style, $reply_citation_start, $reply_citation_end; |
141 | |
45cfc124 |
142 | $reply_citation_style = getPref($data_dir, $username, 'reply_citation_style', 'none' ); |
cd41fc8d |
143 | $reply_citation_start = getPref($data_dir, $username, 'reply_citation_start'); |
144 | $reply_citation_end = getPref($data_dir, $username, 'reply_citation_end'); |
f740c049 |
145 | |
025deae0 |
146 | |
f740c049 |
147 | global $left_refresh, $sort; |
45cfc124 |
148 | $left_refresh = getPref($data_dir, $username, 'left_refresh', 'None' ); |
149 | $sort = getPref($data_dir, $username, 'sort', 6 ); |
5c54e435 |
150 | |
f804972b |
151 | /** Load up the Signature file **/ |
f740c049 |
152 | global $signature_abs; |
45cfc124 |
153 | if ($use_signature) { |
c36ed9cf |
154 | $signature_abs = $signature = getSig($data_dir, $username); |
f804972b |
155 | } else { |
c36ed9cf |
156 | $signature_abs = getSig($data_dir, $username); |
f804972b |
157 | } |
636e611c |
158 | |
f740c049 |
159 | |
9d157cec |
160 | // highlightX comes in with the form: name,color,header,value |
f740c049 |
161 | global $message_highlight_list; |
9d157cec |
162 | for ($i=0; $hlt = getPref($data_dir, $username, "highlight$i"); $i++) { |
163 | $ary = explode(",", $hlt); |
45cfc124 |
164 | $message_highlight_list[$i]['name'] = $ary[0]; |
165 | $message_highlight_list[$i]['color'] = $ary[1]; |
166 | $message_highlight_list[$i]['value'] = $ary[2]; |
167 | $message_highlight_list[$i]['match_type'] = $ary[3]; |
9d157cec |
168 | } |
8e265988 |
169 | |
f740c049 |
170 | |
8e265988 |
171 | #index order lets you change the order of the message index |
f740c049 |
172 | global $index_order; |
45cfc124 |
173 | $order = getPref($data_dir, $username, 'order1'); |
8e265988 |
174 | for ($i=1; $order; $i++) { |
175 | $index_order[$i] = $order; |
45cfc124 |
176 | $order = getPref($data_dir, $username, 'order'.($i+1)); |
8e265988 |
177 | } |
a7ea7540 |
178 | if (!isset($index_order)) { |
8e265988 |
179 | $index_order[1] = 1; |
180 | $index_order[2] = 2; |
181 | $index_order[3] = 3; |
182 | $index_order[4] = 5; |
183 | $index_order[5] = 4; |
184 | } |
45cfc124 |
185 | |
ac53fb56 |
186 | global $alt_index_colors; |
45cfc124 |
187 | $alt_index_colors = getPref($data_dir, $username, 'alt_index_colors', FALSE ); |
188 | |
f740c049 |
189 | global $location_of_bar, $location_of_buttons; |
45cfc124 |
190 | $location_of_bar = getPref($data_dir, $username, 'location_of_bar', 'left'); |
191 | $location_of_buttons = getPref($data_dir, $username, 'location_of_buttons', 'between' ); |
192 | |
f740c049 |
193 | global $collapse_folders, $show_html_default; |
235a65d5 |
194 | $collapse_folders = getPref($data_dir, $username, 'collapse_folders'); |
45cfc124 |
195 | |
196 | // show_html_default is a int value |
197 | $show_html_default = intval(getPref($data_dir, $username, 'show_html_default'), 1 ); |
c36ed9cf |
198 | |
6b638171 |
199 | do_hook("loading_prefs"); |
b731cd83 |
200 | |
45cfc124 |
201 | ?> |