c36ed9cf |
1 | <?php |
e7db48af |
2 | |
35586184 |
3 | /** |
4 | * options_display.php |
5 | * |
6c84ba1e |
6 | * Copyright (c) 1999-2005 The SquirrelMail Project Team |
35586184 |
7 | * Licensed under the GNU GPL. For full terms see the file COPYING. |
8 | * |
9 | * Displays all optinos about display preferences |
10 | * |
763b63fe |
11 | * @version $Id$ |
2b646597 |
12 | * @package squirrelmail |
35586184 |
13 | */ |
cbe5423b |
14 | |
2b646597 |
15 | /** Define the group constants for the display options page. */ |
cbe5423b |
16 | define('SMOPT_GRP_GENERAL', 0); |
17 | define('SMOPT_GRP_MAILBOX', 1); |
18 | define('SMOPT_GRP_MESSAGE', 2); |
19 | |
6395c46d |
20 | // load icon themes if in use |
21 | global $use_icons; |
22 | if ($use_icons) { |
23 | global $icon_themes; |
24 | $dirName = SM_PATH . 'images/themes'; |
4f7a5870 |
25 | if (is_readable($dirName) && is_dir($dirName)) { |
26 | $d = dir($dirName); |
27 | while($dir = $d->read()) { |
28 | if ($dir != "." && $dir != "..") { |
29 | if (is_dir($dirName."/".$dir) && file_exists("$dirName/$dir/theme.php")) |
30 | include("$dirName/$dir/theme.php"); |
31 | } |
6395c46d |
32 | } |
33 | } |
34 | } |
35 | |
48af4b64 |
36 | /** |
37 | * This function builds an array with all the information about |
38 | * the options available to the user, and returns it. The options |
39 | * are grouped by the groups in which they are displayed. |
40 | * For each option, the following information is stored: |
41 | * - name: the internal (variable) name |
42 | * - caption: the description of the option in the UI |
43 | * - type: one of SMOPT_TYPE_* |
44 | * - refresh: one of SMOPT_REFRESH_* |
45 | * - size: one of SMOPT_SIZE_* |
46 | * - save: the name of a function to call when saving this option |
47 | * @return array all option information |
48 | */ |
cbe5423b |
49 | function load_optpage_data_display() { |
91e0dccc |
50 | global $theme, $language, $languages, |
ce68b76b |
51 | $default_use_mdn, $squirrelmail_language, $allow_thread_sort, |
52 | $show_alternative_names, $available_languages, $use_icons; |
a3ec3c91 |
53 | |
ce393174 |
54 | /* Build a simple array into which we will build options. */ |
bbcafebd |
55 | $optgrps = array(); |
56 | $optvals = array(); |
a3ec3c91 |
57 | |
bbcafebd |
58 | /******************************************************/ |
59 | /* LOAD EACH GROUP OF OPTIONS INTO THE OPTIONS ARRAY. */ |
60 | /******************************************************/ |
bbcafebd |
61 | |
62 | /*** Load the General Options into the array ***/ |
63 | $optgrps[SMOPT_GRP_GENERAL] = _("General Display Options"); |
64 | $optvals[SMOPT_GRP_GENERAL] = array(); |
65 | |
66 | /* Load the theme option. */ |
ce393174 |
67 | $theme_values = array(); |
68 | foreach ($theme as $theme_key => $theme_attributes) { |
be278741 |
69 | $theme_values[$theme_attributes['NAME']] = $theme_attributes['PATH']; |
ce393174 |
70 | } |
be278741 |
71 | ksort($theme_values); |
72 | $theme_values = array_flip($theme_values); |
bbcafebd |
73 | $optvals[SMOPT_GRP_GENERAL][] = array( |
ce393174 |
74 | 'name' => 'chosen_theme', |
75 | 'caption' => _("Theme"), |
76 | 'type' => SMOPT_TYPE_STRLIST, |
77 | 'refresh' => SMOPT_REFRESH_ALL, |
cbe5423b |
78 | 'posvals' => $theme_values, |
79 | 'save' => 'save_option_theme' |
ce393174 |
80 | ); |
5d110fa6 |
81 | |
8f1ba72b |
82 | $css_values = array( 'none' => _("Default" ) ); |
bb7173fa |
83 | $css_dir = SM_PATH . 'themes/css'; |
84 | if (is_readable($css_dir) && is_dir($css_dir)) { |
85 | $handle=opendir($css_dir); |
4f7a5870 |
86 | while ($file = readdir($handle) ) { |
87 | if ( substr( $file, -4 ) == '.css' ) { |
88 | $css_values[$file] = substr( $file, 0, strlen( $file ) - 4 ); |
89 | } |
8f1ba72b |
90 | } |
4f7a5870 |
91 | closedir($handle); |
dcd6f144 |
92 | } |
5d110fa6 |
93 | |
54078578 |
94 | if ( count( $css_values ) > 1 ) { |
5d110fa6 |
95 | |
e2cdae1f |
96 | $optvals[SMOPT_GRP_GENERAL][] = array( |
97 | 'name' => 'custom_css', |
98 | 'caption' => _("Custom Stylesheet"), |
99 | 'type' => SMOPT_TYPE_STRLIST, |
100 | 'refresh' => SMOPT_REFRESH_ALL, |
101 | 'posvals' => $css_values |
102 | ); |
5d110fa6 |
103 | |
e2cdae1f |
104 | } |
39d3ec89 |
105 | |
106 | // config.php can be unupdated. |
107 | if (! isset($available_languages) || $available_languages=="" ) { |
108 | $available_languages="ALL"; } |
5d110fa6 |
109 | |
e557fdb0 |
110 | $language_values = array(); |
39d3ec89 |
111 | if ( strtoupper($available_languages)=='ALL') { |
0bb37159 |
112 | foreach ($languages as $lang_key => $lang_attributes) { |
113 | if (isset($lang_attributes['NAME'])) { |
114 | $language_values[$lang_key] = $lang_attributes['NAME']; |
115 | if ( isset($show_alternative_names) && |
116 | $show_alternative_names && |
117 | isset($lang_attributes['ALTNAME']) ) { |
118 | $language_values[$lang_key] .= " / " . $lang_attributes['ALTNAME']; |
119 | } |
120 | } |
121 | } |
39d3ec89 |
122 | } else if (strtoupper($available_languages)!='NONE') { |
0bb37159 |
123 | // admin can set list of available languages in config |
124 | $available_languages_array=explode (" ",$available_languages); |
39d3ec89 |
125 | foreach ($available_languages_array as $lang_key ) { |
0bb37159 |
126 | if (isset($languages[$lang_key]['NAME'])) { |
127 | $language_values[$lang_key] = $languages[$lang_key]['NAME']; |
128 | if ( isset($show_alternative_names) && |
129 | $show_alternative_names && |
130 | isset($languages[$lang_key]['ALTNAME']) ) { |
131 | $language_values[$lang_key] .= " / " . $languages[$lang_key]['ALTNAME']; |
132 | } |
133 | } |
134 | } |
ce393174 |
135 | } |
e557fdb0 |
136 | asort($language_values); |
8405d0a4 |
137 | $language_values = |
138 | array_merge(array('' => _("Default")), $language_values); |
ec2c91a1 |
139 | $language = $squirrelmail_language; |
39d3ec89 |
140 | if (strtoupper($available_languages)!='NONE') { |
0bb37159 |
141 | // if set to 'none', interface will use only default language |
142 | $optvals[SMOPT_GRP_GENERAL][] = array( |
143 | 'name' => 'language', |
144 | 'caption' => _("Language"), |
145 | 'type' => SMOPT_TYPE_STRLIST, |
146 | 'refresh' => SMOPT_REFRESH_ALL, |
147 | 'posvals' => $language_values, |
148 | 'htmlencoded' => true |
149 | ); |
39d3ec89 |
150 | } |
ce393174 |
151 | |
a3ec3c91 |
152 | /* Set values for the "use javascript" option. */ |
bbcafebd |
153 | $optvals[SMOPT_GRP_GENERAL][] = array( |
a3ec3c91 |
154 | 'name' => 'javascript_setting', |
ce393174 |
155 | 'caption' => _("Use Javascript"), |
a3ec3c91 |
156 | 'type' => SMOPT_TYPE_STRLIST, |
157 | 'refresh' => SMOPT_REFRESH_ALL, |
158 | 'posvals' => array(SMPREF_JS_AUTODETECT => _("Autodetect"), |
159 | SMPREF_JS_ON => _("Always"), |
ae958cd3 |
160 | SMPREF_JS_OFF => _("Never")), |
161 | 'save' => 'save_option_javascript_autodetect', |
162 | 'script' => 'onclick="document.forms[0].new_js_autodetect_results.value = \'' . SMPREF_JS_ON . '\';"' |
a3ec3c91 |
163 | ); |
164 | |
bbcafebd |
165 | $optvals[SMOPT_GRP_GENERAL][] = array( |
a3ec3c91 |
166 | 'name' => 'js_autodetect_results', |
167 | 'caption' => '', |
168 | 'type' => SMOPT_TYPE_HIDDEN, |
ae958cd3 |
169 | 'refresh' => SMOPT_REFRESH_NONE |
5826affb |
170 | //'post_script' => $js_autodetect_script, |
a3ec3c91 |
171 | ); |
172 | |
bbcafebd |
173 | /*** Load the General Options into the array ***/ |
174 | $optgrps[SMOPT_GRP_MAILBOX] = _("Mailbox Display Options"); |
175 | $optvals[SMOPT_GRP_MAILBOX] = array(); |
176 | |
177 | $optvals[SMOPT_GRP_MAILBOX][] = array( |
a3ec3c91 |
178 | 'name' => 'show_num', |
5ed9d4fd |
179 | 'caption' => _("Number of Messages on one Page"), |
a3ec3c91 |
180 | 'type' => SMOPT_TYPE_INTEGER, |
bbcafebd |
181 | 'refresh' => SMOPT_REFRESH_NONE, |
182 | 'size' => SMOPT_SIZE_TINY |
a3ec3c91 |
183 | ); |
184 | |
bbcafebd |
185 | $optvals[SMOPT_GRP_MAILBOX][] = array( |
a440e68f |
186 | 'name' => 'alt_index_colors', |
187 | 'caption' => _("Enable Alternating Row Colors"), |
188 | 'type' => SMOPT_TYPE_BOOLEAN, |
189 | 'refresh' => SMOPT_REFRESH_NONE |
190 | ); |
191 | |
6395c46d |
192 | if ($use_icons) { |
193 | global $icon_themes, $icon_theme; |
194 | $temp = array(); |
195 | for ($count = 0; $count < sizeof($icon_themes); $count++) { |
196 | $temp[$count] = $icon_themes[$count]['NAME']; |
197 | if ($icon_theme == $icon_themes[$count]['PATH']) |
198 | $value = $count; |
199 | } |
4f7a5870 |
200 | if (sizeof($icon_themes) > 0) { |
201 | $optvals[SMOPT_GRP_MAILBOX][] = array( |
202 | 'name' => 'icon_theme', |
203 | 'caption' => _("Message Flags Icon Theme"), |
204 | 'type' => SMOPT_TYPE_STRLIST, |
205 | 'refresh' => SMOPT_REFRESH_NONE, |
206 | 'posvals' => $temp, |
207 | 'initial_value' => $value, |
208 | 'save' => 'icon_theme_save' |
209 | ); |
210 | } |
6395c46d |
211 | } |
212 | |
fd181f53 |
213 | $optvals[SMOPT_GRP_MAILBOX][] = array( |
214 | 'name' => 'show_flag_buttons', |
215 | 'caption' => _("Show Flag / Unflag Buttons"), |
216 | 'type' => SMOPT_TYPE_BOOLEAN, |
217 | 'refresh' => SMOPT_REFRESH_NONE |
218 | ); |
219 | |
bbcafebd |
220 | $optvals[SMOPT_GRP_MAILBOX][] = array( |
a440e68f |
221 | 'name' => 'page_selector', |
222 | 'caption' => _("Enable Page Selector"), |
223 | 'type' => SMOPT_TYPE_BOOLEAN, |
224 | 'refresh' => SMOPT_REFRESH_NONE |
225 | ); |
226 | |
0bb37159 |
227 | $optvals[SMOPT_GRP_MAILBOX][] = array( |
228 | 'name' => 'compact_paginator', |
229 | 'caption' => _("Use Compact Page Selector"), |
230 | 'type' => SMOPT_TYPE_BOOLEAN, |
231 | 'refresh' => SMOPT_REFRESH_NONE |
232 | ); |
233 | |
bbcafebd |
234 | $optvals[SMOPT_GRP_MAILBOX][] = array( |
a440e68f |
235 | 'name' => 'page_selector_max', |
236 | 'caption' => _("Maximum Number of Pages to Show"), |
237 | 'type' => SMOPT_TYPE_INTEGER, |
bbcafebd |
238 | 'refresh' => SMOPT_REFRESH_NONE, |
239 | 'size' => SMOPT_SIZE_TINY |
a440e68f |
240 | ); |
241 | |
3e3b60e3 |
242 | $optvals[SMOPT_GRP_MAILBOX][] = array( |
243 | 'name' => 'show_full_date', |
244 | 'caption' => _("Always Show Full Date"), |
245 | 'type' => SMOPT_TYPE_BOOLEAN, |
246 | 'refresh' => SMOPT_REFRESH_NONE |
247 | ); |
248 | |
459e3347 |
249 | $optvals[SMOPT_GRP_MAILBOX][] = array( |
250 | 'name' => 'truncate_sender', |
251 | 'caption' => _("Length of From/To Field (0 for full)"), |
252 | 'type' => SMOPT_TYPE_INTEGER, |
253 | 'refresh' => SMOPT_REFRESH_NONE, |
254 | 'size' => SMOPT_SIZE_TINY |
255 | ); |
256 | |
3fc1a95f |
257 | $optvals[SMOPT_GRP_MAILBOX][] = array( |
258 | 'name' => 'truncate_subject', |
259 | 'caption' => _("Length of Subject Field (0 for full)"), |
260 | 'type' => SMOPT_TYPE_INTEGER, |
261 | 'refresh' => SMOPT_REFRESH_NONE, |
262 | 'size' => SMOPT_SIZE_TINY |
263 | ); |
264 | |
1ae2832e |
265 | $optvals[SMOPT_GRP_MAILBOX][] = array( |
266 | 'name' => 'show_recipient_instead', |
267 | 'caption' => _("Show recipient name if the message is from your default identity"), |
268 | 'type' => SMOPT_TYPE_BOOLEAN, |
269 | 'refresh' => SMOPT_REFRESH_NONE, |
270 | 'size' => SMOPT_SIZE_TINY |
271 | ); |
5ed9d4fd |
272 | |
273 | $optvals[SMOPT_GRP_MAILBOX][] = array( |
274 | 'name' => 'internal_date_sort', |
275 | 'caption' => _("Sort by Received Date"), |
276 | 'type' => SMOPT_TYPE_BOOLEAN, |
277 | 'refresh' => SMOPT_REFRESH_ALL |
278 | ); |
279 | if ($allow_thread_sort == TRUE) { |
280 | $optvals[SMOPT_GRP_MAILBOX][] = array( |
281 | 'name' => 'sort_by_ref', |
282 | 'caption' => _("Enable Thread Sort by References Header"), |
283 | 'type' => SMOPT_TYPE_BOOLEAN, |
284 | 'refresh' => SMOPT_REFRESH_ALL |
285 | ); |
286 | } |
287 | |
1ae2832e |
288 | |
459e3347 |
289 | |
bbcafebd |
290 | /*** Load the General Options into the array ***/ |
5ed9d4fd |
291 | $optgrps[SMOPT_GRP_MESSAGE] = _("Message Display Options"); |
bbcafebd |
292 | $optvals[SMOPT_GRP_MESSAGE] = array(); |
293 | |
294 | $optvals[SMOPT_GRP_MESSAGE][] = array( |
a3ec3c91 |
295 | 'name' => 'wrap_at', |
296 | 'caption' => _("Wrap Incoming Text At"), |
297 | 'type' => SMOPT_TYPE_INTEGER, |
bbcafebd |
298 | 'refresh' => SMOPT_REFRESH_NONE, |
299 | 'size' => SMOPT_SIZE_TINY |
a3ec3c91 |
300 | ); |
301 | |
bbcafebd |
302 | $optvals[SMOPT_GRP_MESSAGE][] = array( |
fd87494d |
303 | 'name' => 'show_html_default', |
304 | 'caption' => _("Show HTML Version by Default"), |
305 | 'type' => SMOPT_TYPE_BOOLEAN, |
306 | 'refresh' => SMOPT_REFRESH_NONE |
307 | ); |
308 | |
bbcafebd |
309 | $optvals[SMOPT_GRP_MESSAGE][] = array( |
6206f6c4 |
310 | 'name' => 'enable_forward_as_attachment', |
311 | 'caption' => _("Enable Forward as Attachment"), |
fd87494d |
312 | 'type' => SMOPT_TYPE_BOOLEAN, |
313 | 'refresh' => SMOPT_REFRESH_NONE |
314 | ); |
315 | |
bbcafebd |
316 | $optvals[SMOPT_GRP_MESSAGE][] = array( |
9ab0d96f |
317 | 'name' => 'show_xmailer_default', |
a440e68f |
318 | 'caption' => _("Enable Mailer Display"), |
9ab0d96f |
319 | 'type' => SMOPT_TYPE_BOOLEAN, |
320 | 'refresh' => SMOPT_REFRESH_NONE |
321 | ); |
322 | |
7baf86a9 |
323 | $optvals[SMOPT_GRP_MESSAGE][] = array( |
324 | 'name' => 'attachment_common_show_images', |
10f0ce72 |
325 | 'caption' => _("Display Attached Images with Message"), |
7baf86a9 |
326 | 'type' => SMOPT_TYPE_BOOLEAN, |
327 | 'refresh' => SMOPT_REFRESH_NONE |
328 | ); |
329 | |
57257333 |
330 | if ($default_use_mdn) { |
331 | $optvals[SMOPT_GRP_MESSAGE][] = array( |
332 | 'name' => 'mdn_user_support', |
6206f6c4 |
333 | 'caption' => _("Enable Mail Delivery Notification"), |
57257333 |
334 | 'type' => SMOPT_TYPE_BOOLEAN, |
335 | 'refresh' => SMOPT_REFRESH_NONE |
336 | ); |
337 | } |
07687736 |
338 | |
4267d5de |
339 | $optvals[SMOPT_GRP_MESSAGE][] = array( |
340 | 'name' => 'delete_prev_next_display', |
341 | 'caption' => _("Show 'Delete & Prev/Next' Links"), |
342 | 'type' => SMOPT_TYPE_BOOLEAN, |
343 | 'refresh' => SMOPT_REFRESH_ALL |
344 | ); |
5d110fa6 |
345 | |
cbe5423b |
346 | /* Assemble all this together and return it as our result. */ |
347 | $result = array( |
348 | 'grps' => $optgrps, |
ae958cd3 |
349 | 'vals' => $optvals |
cbe5423b |
350 | ); |
351 | return ($result); |
352 | } |
a3ec3c91 |
353 | |
cbe5423b |
354 | /******************************************************************/ |
355 | /** Define any specialized save functions for this option page. ***/ |
356 | /******************************************************************/ |
f1e6f580 |
357 | |
5d110fa6 |
358 | function save_option_header($option) { |
359 | } |
360 | |
48af4b64 |
361 | /** |
362 | * This function saves a new theme setting. |
363 | * It updates the theme array. |
364 | */ |
cbe5423b |
365 | function save_option_theme($option) { |
366 | global $theme; |
bb7173fa |
367 | |
cbe5423b |
368 | /* Do checking to make sure $new_theme is in the array. */ |
369 | $theme_in_array = false; |
370 | for ($i = 0; $i < count($theme); ++$i) { |
371 | if ($theme[$i]['PATH'] == $option->new_value) { |
372 | $theme_in_array = true; |
373 | break; |
374 | } |
375 | } |
376 | |
377 | if (!$theme_in_array) { |
378 | $option->new_value = ''; |
379 | } |
e7db48af |
380 | |
cbe5423b |
381 | /* Save the option like normal. */ |
382 | save_option($option); |
383 | } |
e7db48af |
384 | |
48af4b64 |
385 | /** |
386 | * This function saves the javascript detection option. |
387 | */ |
cbe5423b |
388 | function save_option_javascript_autodetect($option) { |
ae958cd3 |
389 | save_option($option); |
390 | checkForJavascript(TRUE); |
cbe5423b |
391 | } |
392 | |
5d110fa6 |
393 | /** |
6395c46d |
394 | * This function saves the user's icon theme setting |
395 | */ |
396 | function icon_theme_save($option) { |
397 | |
398 | global $icon_themes, $data_dir, $username; |
399 | |
400 | |
5d110fa6 |
401 | // Don't assume the new value is there, double check |
402 | // and only save if found |
6395c46d |
403 | // |
404 | if (isset($icon_themes[$option->new_value]['PATH'])) |
405 | setPref($data_dir, $username, 'icon_theme', $icon_themes[$option->new_value]['PATH']); |
406 | else |
407 | setPref($data_dir, $username, 'icon_theme', 'none'); |
408 | |
409 | } |
410 | |
5d110fa6 |
411 | /** |
a46ecf66 |
412 | * This function saves the reply prefix (body_quote) character(s) |
413 | */ |
414 | function save_option_reply_prefix($option) { |
a46ecf66 |
415 | |
416 | // save as "NONE" if it was blanked out |
417 | // |
418 | if (empty($option->new_value)) $option->new_value = 'NONE'; |
419 | |
420 | |
421 | // Save the option like normal. |
422 | // |
423 | save_option($option); |
424 | |
425 | } |
426 | |
2b0f4faf |
427 | ?> |