a519de42f35a1a06b6b17e021a0a8ef05efe4944
[squirrelmail.git] / include / options / display.php
1 <?php
2
3 /**
4 * options_display.php
5 *
6 * Displays all optinos about display preferences
7 *
8 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
10 * @version $Id$
11 * @package squirrelmail
12 */
13
14 /** Define the group constants for the display options page. */
15 define('SMOPT_GRP_GENERAL', 0);
16 define('SMOPT_GRP_MAILBOX', 1);
17 define('SMOPT_GRP_MESSAGE', 2);
18
19 global $use_iframe;
20 if (! isset($use_iframe)) $use_iframe=false;
21
22 /**
23 * This function builds an array with all the information about
24 * the options available to the user, and returns it. The options
25 * are grouped by the groups in which they are displayed.
26 * For each option, the following information is stored:
27 * - name: the internal (variable) name
28 * - caption: the description of the option in the UI
29 * - type: one of SMOPT_TYPE_*
30 * - refresh: one of SMOPT_REFRESH_*
31 * - size: one of SMOPT_SIZE_*
32 * - save: the name of a function to call when saving this option
33 * @return array all option information
34 */
35 function load_optpage_data_display() {
36 global $theme, $fontsets, $language, $languages,$aTemplateSet,
37 $default_use_mdn, $squirrelmail_language, $allow_thread_sort,
38 $show_alternative_names, $use_iframe, $use_icons,
39 $sTemplateID, $oTemplate,
40 $user_themes, $chosen_theme;
41
42 /* Build a simple array into which we will build options. */
43 $optgrps = array();
44 $optvals = array();
45
46 /******************************************************/
47 /* LOAD EACH GROUP OF OPTIONS INTO THE OPTIONS ARRAY. */
48 /******************************************************/
49
50 /*** Load the General Options into the array ***/
51 $optgrps[SMOPT_GRP_GENERAL] = _("General Display Options");
52 $optvals[SMOPT_GRP_GENERAL] = array();
53
54 /* load the template set option */
55 $templateset_values = array();
56
57 foreach ($aTemplateSet as $sKey => $aTemplateSetAttributes) {
58 $templateset_values[$aTemplateSetAttributes['NAME']] = $aTemplateSetAttributes['ID'];
59 }
60 ksort($templateset_values);
61 $templateset_values = array_flip($templateset_values);
62 // display template options only when there is more than one template
63 if (count($templateset_values)>1) {
64 $optvals[SMOPT_GRP_GENERAL][] = array(
65 'name' => 'sTemplateID',
66 'caption' => _("Skin"),
67 'type' => SMOPT_TYPE_STRLIST,
68 'refresh' => SMOPT_REFRESH_ALL,
69 'posvals' => $templateset_values,
70 'save' => 'save_option_template'
71 );
72 }
73
74 /* Load the theme option. */
75
76 /**
77 * User themes start with a 'u_', template themes start with a 't_' to
78 * differentiate which is which. This seems kind of hackish, but we can
79 * come up with a better solution later.
80 PL: No need for the prefixes. Just use full paths, no?
81
82 SB: Don't think so. If the user chooses a template theme than changes the
83 path to the template, it would error out, right? Or should we worry about
84 that?
85 *
86 * TODO: Clean me.
87 **/
88 $theme_values = array();
89
90 // Always provide the template default first.
91 $theme_values['none'] = 'Template Default Theme';
92
93 // List alternate themes provided by templates first
94 $template_themes = $oTemplate->get_alternative_stylesheets();
95 asort($template_themes);
96 foreach ($template_themes as $sheet=>$name) {
97 $theme_values['t_'.$sheet] = 'Template Theme - '.htmlspecialchars($name);
98 }
99 // Next, list user-provided styles
100 asort($user_themes);
101 foreach ($user_themes as $style) {
102 if ($style['PATH'] == 'none')
103 continue;
104 $theme_values['u_'.$style['PATH']] = 'User Theme - '.htmlspecialchars($style['NAME']);
105 }
106
107 if (count($user_themes) + count($template_themes) > 1) {
108 $optvals[SMOPT_GRP_GENERAL][] = array(
109 'name' => 'chosen_theme',
110 'caption' => _("Theme"),
111 'type' => SMOPT_TYPE_STRLIST,
112 'refresh' => SMOPT_REFRESH_ALL,
113 'posvals' => $theme_values,
114 'save' => 'css_theme_save'
115 );
116 }
117
118 /* Icon theme selection */
119 if ($use_icons) {
120 global $icon_themes, $icon_theme;
121
122 $temp = array();
123 $value = 0;
124 for ($count = 0; $count < sizeof($icon_themes); $count++) {
125 $temp[$icon_themes[$count]['PATH']] = $icon_themes[$count]['NAME'];
126 }
127 if (sizeof($icon_themes) > 0) {
128 $optvals[SMOPT_GRP_GENERAL][] = array(
129 'name' => 'icon_theme',
130 'caption' => _("Icon Theme"),
131 'type' => SMOPT_TYPE_STRLIST,
132 'refresh' => SMOPT_REFRESH_NONE,
133 'posvals' => $temp,
134 'save' => 'icon_theme_save'
135 );
136 }
137 }
138
139 $fontset_values = array();
140 $fontset_list = array();
141
142 if (!empty($fontsets) && is_array($fontsets)) {
143
144 foreach (array_keys($fontsets) as $fontset_key) {
145 $fontset_list[$fontset_key]=$fontset_key;
146 }
147 ksort($fontset_list);
148 }
149
150 if (count($fontset_list) > 1) {
151 $fontset_list = array_merge(array('' => _("Default font style")), $fontset_list);
152 $optvals[SMOPT_GRP_GENERAL][] = array(
153 'name' => 'chosen_fontset',
154 'caption' => _("Font style"),
155 'type' => SMOPT_TYPE_STRLIST,
156 'refresh' => SMOPT_REFRESH_ALL,
157 'posvals' => $fontset_list
158 );
159 }
160
161 $optvals[SMOPT_GRP_GENERAL][] = array(
162 'name' => 'chosen_fontsize',
163 'caption' => _("Font size"),
164 'type' => SMOPT_TYPE_STRLIST,
165 'refresh' => SMOPT_REFRESH_ALL,
166 'posvals' => array('' => _("Default font size"),
167 '8' => '8 px',
168 '10' => '10 px',
169 '12' => '12 px',
170 '14' => '14 px')
171 );
172
173 $language_values = array();
174 foreach ($languages as $lang_key => $lang_attributes) {
175 if (isset($lang_attributes['NAME'])) {
176 $language_values[$lang_key] = $lang_attributes['NAME'];
177 if ( isset($show_alternative_names) &&
178 $show_alternative_names &&
179 isset($lang_attributes['ALTNAME']) ) {
180 $language_values[$lang_key] .= " / " . $lang_attributes['ALTNAME'];
181 }
182 }
183 }
184
185 asort($language_values);
186 $language_values =
187 array_merge(array('' => _("Default")), $language_values);
188 $language = $squirrelmail_language;
189
190 // add language selection only when more than 2 languages are available
191 // (default, English and some other)
192 if (count($language_values)>2) {
193 $optvals[SMOPT_GRP_GENERAL][] = array(
194 'name' => 'language',
195 'caption' => _("Language"),
196 'type' => SMOPT_TYPE_STRLIST,
197 'refresh' => SMOPT_REFRESH_ALL,
198 'posvals' => $language_values,
199 'htmlencoded' => true
200 );
201 }
202
203 /* Set values for the "use javascript" option. */
204 $optvals[SMOPT_GRP_GENERAL][] = array(
205 'name' => 'javascript_setting',
206 'caption' => _("Use Javascript"),
207 'type' => SMOPT_TYPE_STRLIST,
208 'refresh' => SMOPT_REFRESH_ALL,
209 'posvals' => array(SMPREF_JS_AUTODETECT => _("Autodetect"),
210 SMPREF_JS_ON => _("Always"),
211 SMPREF_JS_OFF => _("Never")),
212 'save' => 'save_option_javascript_autodetect',
213 'script' => 'onclick="document.forms[0].new_js_autodetect_results.value = \'' . SMPREF_JS_ON . '\';"'
214 );
215
216 $optvals[SMOPT_GRP_GENERAL][] = array(
217 'name' => 'js_autodetect_results',
218 'caption' => '',
219 'type' => SMOPT_TYPE_HIDDEN,
220 'refresh' => SMOPT_REFRESH_NONE
221 //'post_script' => $js_autodetect_script,
222 );
223
224 $optvals[SMOPT_GRP_GENERAL][] = array(
225 'name' => 'hour_format',
226 'caption' => _("Hour Format"),
227 'type' => SMOPT_TYPE_STRLIST,
228 'refresh' => SMOPT_REFRESH_FOLDERLIST,
229 'posvals' => array(SMPREF_TIME_12HR => _("12-hour clock"),
230 SMPREF_TIME_24HR => _("24-hour clock"))
231 );
232
233 /*** Load the General Options into the array ***/
234 $optgrps[SMOPT_GRP_MAILBOX] = _("Mailbox Display Options");
235 $optvals[SMOPT_GRP_MAILBOX] = array();
236
237 $optvals[SMOPT_GRP_MAILBOX][] = array(
238 'name' => 'show_num',
239 'caption' => _("Number of Messages per Page"),
240 'type' => SMOPT_TYPE_INTEGER,
241 'refresh' => SMOPT_REFRESH_NONE,
242 'size' => SMOPT_SIZE_TINY
243 );
244
245 $optvals[SMOPT_GRP_MAILBOX][] = array(
246 'name' => 'alt_index_colors',
247 'caption' => _("Enable Alternating Row Colors"),
248 'type' => SMOPT_TYPE_BOOLEAN,
249 'refresh' => SMOPT_REFRESH_NONE
250 );
251
252 $optvals[SMOPT_GRP_MAILBOX][] = array(
253 'name' => 'fancy_index_highlite',
254 'caption' => _("Enable Fancy Row Mouseover Highlighting"),
255 'type' => SMOPT_TYPE_BOOLEAN,
256 'refresh' => SMOPT_REFRESH_NONE
257 );
258
259 $optvals[SMOPT_GRP_MAILBOX][] = array(
260 'name' => 'show_flag_buttons',
261 'caption' => _("Show Flag / Unflag Buttons"),
262 'type' => SMOPT_TYPE_BOOLEAN,
263 'refresh' => SMOPT_REFRESH_NONE
264 );
265
266 $optvals[SMOPT_GRP_MAILBOX][] = array(
267 'name' => 'show_copy_buttons',
268 'caption' => _("Enable Message Copy Buttons"),
269 'type' => SMOPT_TYPE_BOOLEAN,
270 'refresh' => SMOPT_REFRESH_NONE
271 );
272
273 $optvals[SMOPT_GRP_MAILBOX][] = array(
274 'name' => 'page_selector',
275 'caption' => _("Enable Page Selector"),
276 'type' => SMOPT_TYPE_BOOLEAN,
277 'refresh' => SMOPT_REFRESH_NONE
278 );
279
280 $optvals[SMOPT_GRP_MAILBOX][] = array(
281 'name' => 'compact_paginator',
282 'caption' => _("Use Compact Page Selector"),
283 'type' => SMOPT_TYPE_BOOLEAN,
284 'refresh' => SMOPT_REFRESH_NONE
285 );
286
287 $optvals[SMOPT_GRP_MAILBOX][] = array(
288 'name' => 'page_selector_max',
289 'caption' => _("Maximum Number of Pages to Show"),
290 'type' => SMOPT_TYPE_INTEGER,
291 'refresh' => SMOPT_REFRESH_NONE,
292 'size' => SMOPT_SIZE_TINY
293 );
294
295 $optvals[SMOPT_GRP_MAILBOX][] = array(
296 'name' => 'show_full_date',
297 'caption' => _("Always Show Full Date"),
298 'type' => SMOPT_TYPE_BOOLEAN,
299 'refresh' => SMOPT_REFRESH_NONE
300 );
301
302 $optvals[SMOPT_GRP_MAILBOX][] = array(
303 'name' => 'truncate_sender',
304 'caption' => _("Length of From/To Field (0 for full)"),
305 'type' => SMOPT_TYPE_INTEGER,
306 'refresh' => SMOPT_REFRESH_NONE,
307 'size' => SMOPT_SIZE_TINY
308 );
309
310 $optvals[SMOPT_GRP_MAILBOX][] = array(
311 'name' => 'truncate_subject',
312 'caption' => _("Length of Subject Field (0 for full)"),
313 'type' => SMOPT_TYPE_INTEGER,
314 'refresh' => SMOPT_REFRESH_NONE,
315 'size' => SMOPT_SIZE_TINY
316 );
317 /*
318 FIXME!
319 disabled because the template doesn't support it (yet?)
320 $optvals[SMOPT_GRP_MAILBOX][] = array(
321 'name' => 'show_recipient_instead',
322 'caption' => _("Show recipient name if the message is from your default identity"),
323 'type' => SMOPT_TYPE_BOOLEAN,
324 'refresh' => SMOPT_REFRESH_NONE,
325 'size' => SMOPT_SIZE_TINY
326 );
327 */
328
329 if ($allow_thread_sort == TRUE) {
330 $optvals[SMOPT_GRP_MAILBOX][] = array(
331 'name' => 'sort_by_ref',
332 'caption' => _("Enable Thread Sort by References Header"),
333 'type' => SMOPT_TYPE_BOOLEAN,
334 'refresh' => SMOPT_REFRESH_ALL
335 );
336 }
337
338
339
340 /*** Load the General Options into the array ***/
341 $optgrps[SMOPT_GRP_MESSAGE] = _("Message Display Options");
342 $optvals[SMOPT_GRP_MESSAGE] = array();
343
344 $optvals[SMOPT_GRP_MESSAGE][] = array(
345 'name' => 'wrap_at',
346 'caption' => _("Wrap Incoming Text At"),
347 'type' => SMOPT_TYPE_INTEGER,
348 'refresh' => SMOPT_REFRESH_NONE,
349 'size' => SMOPT_SIZE_TINY
350 );
351
352 $optvals[SMOPT_GRP_MESSAGE][] = array(
353 'name' => 'show_html_default',
354 'caption' => _("Show HTML Version by Default"),
355 'type' => SMOPT_TYPE_BOOLEAN,
356 'refresh' => SMOPT_REFRESH_NONE
357 );
358
359 if ($use_iframe) {
360 // Type is set to string in order to be able to use 100%.
361 $optvals[SMOPT_GRP_MESSAGE][] = array(
362 'name' => 'iframe_height',
363 'caption' => _("Height of inline frame"),
364 'type' => SMOPT_TYPE_STRING,
365 'size' => SMOPT_SIZE_TINY,
366 'refresh' => SMOPT_REFRESH_NONE
367 );
368 }
369 $optvals[SMOPT_GRP_MESSAGE][] = array(
370 'name' => 'enable_forward_as_attachment',
371 'caption' => _("Enable Forward as Attachment"),
372 'type' => SMOPT_TYPE_BOOLEAN,
373 'refresh' => SMOPT_REFRESH_NONE
374 );
375
376 $optvals[SMOPT_GRP_MESSAGE][] = array(
377 'name' => 'show_xmailer_default',
378 'caption' => _("Enable Mailer Display"),
379 'type' => SMOPT_TYPE_BOOLEAN,
380 'refresh' => SMOPT_REFRESH_NONE
381 );
382
383 $optvals[SMOPT_GRP_MESSAGE][] = array(
384 'name' => 'attachment_common_show_images',
385 'caption' => _("Display Attached Images with Message"),
386 'type' => SMOPT_TYPE_BOOLEAN,
387 'refresh' => SMOPT_REFRESH_NONE
388 );
389
390 if ($default_use_mdn) {
391 $optvals[SMOPT_GRP_MESSAGE][] = array(
392 'name' => 'mdn_user_support',
393 'caption' => _("Enable Mail Delivery Notification"),
394 'type' => SMOPT_TYPE_BOOLEAN,
395 'refresh' => SMOPT_REFRESH_NONE
396 );
397 }
398
399 $optvals[SMOPT_GRP_MESSAGE][] = array(
400 'name' => 'delete_prev_next_display',
401 'caption' => _("Show 'Delete &amp; Prev/Next' Links"),
402 'type' => SMOPT_TYPE_BOOLEAN,
403 'refresh' => SMOPT_REFRESH_ALL
404 );
405
406 /* Assemble all this together and return it as our result. */
407 $result = array(
408 'grps' => $optgrps,
409 'vals' => $optvals
410 );
411 return ($result);
412 }
413
414 /******************************************************************/
415 /** Define any specialized save functions for this option page. ***/
416 /******************************************************************/
417
418 /**
419 * This function saves a new template setting.
420 * It updates the template array.
421 */
422 function save_option_template($option) {
423 global $aTemplateSet;
424
425 /* Do checking to make sure new template is in the available templates array. */
426 $templateset_in_array = false;
427 for ($i = 0; $i < count($aTemplateSet); ++$i) {
428 if ($aTemplateSet[$i]['ID'] == $option->new_value) {
429 $templateset_in_array = true;
430 break;
431 }
432 }
433
434 if (!$templateset_in_array) {
435 $option->new_value = '';
436 } else {
437
438 // clear template cache when changing template sets
439 // (in order to do so, we have to change the global
440 // template set ID now... should not be a problem --
441 // in fact, if we don't do it now, very anomalous
442 // problems occur)
443 //
444 global $sTemplateID;
445 $sTemplateID = $option->new_value;
446 Template::cache_template_file_hierarchy(TRUE);
447
448 }
449
450 /* Save the option like normal. */
451 save_option($option);
452 }
453
454 /**
455 * This function saves the javascript detection option.
456 */
457 function save_option_javascript_autodetect($option) {
458 save_option($option);
459 checkForJavascript(TRUE);
460 }
461
462 /**
463 * This function saves the user's icon theme setting
464 */
465 function icon_theme_save($option) {
466 global $icon_themes;
467
468
469 // Don't assume the new value is there, double check
470 // and only save if found
471 $found = false;
472 while (!$found && (list($index, $data) = each($icon_themes))) {
473 if ($data['PATH'] == $option->new_value)
474 $found = true;
475 }
476
477 if (!$found)
478 $option->new_value = 'none';
479
480 save_option($option);
481 }
482
483 function css_theme_save ($option) {
484 global $user_themes, $oTemplate;
485
486 // Don't assume the new value is there, double check
487 // and only save if found
488 $found = false;
489 reset($user_themes);
490 while (!$found && (list($index, $data) = each($user_themes))) {
491 if ('u_'.$data['PATH'] == $option->new_value)
492 $found = true;
493 }
494
495 $template_themes = $oTemplate->get_alternative_stylesheets();
496 foreach ($template_themes as $path=>$name) {
497 if ('t_'.$path == $option->new_value)
498 $found = true;
499 }
500
501 if (!$found)
502 $option->new_value = 'none';
503
504 save_option($option);
505 }
506
507