89c063bdc0cfceae31fe071c979c4c72f2d72e98
6 * Copyright (c) 1999-2005 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
9 * Displays the options page. Pulls from proper user preference files
10 * and config.php. Displays preferences as selected and other options.
13 * @package squirrelmail
17 * Path for SquirrelMail required files.
20 define('SM_PATH','../');
22 /* SquirrelMail required files. */
23 require_once(SM_PATH
. 'include/validate.php');
24 require_once(SM_PATH
. 'functions/global.php');
25 require_once(SM_PATH
. 'functions/display_messages.php');
26 require_once(SM_PATH
. 'functions/imap.php');
27 require_once(SM_PATH
. 'functions/options.php');
28 require_once(SM_PATH
. 'functions/strings.php');
29 require_once(SM_PATH
. 'functions/html.php');
30 require_once(SM_PATH
. 'functions/forms.php');
32 /*********************************/
33 /*** Build the resultant page. ***/
34 /*********************************/
36 define('SMOPT_MODE_DISPLAY', 'display');
37 define('SMOPT_MODE_SUBMIT', 'submit');
38 define('SMOPT_MODE_LINK', 'link');
40 define('SMOPT_PAGE_MAIN', 'main');
41 define('SMOPT_PAGE_PERSONAL', 'personal');
42 define('SMOPT_PAGE_DISPLAY', 'display');
43 define('SMOPT_PAGE_COMPOSE', 'compose');
44 define('SMOPT_PAGE_HIGHLIGHT', 'highlight');
45 define('SMOPT_PAGE_FOLDER', 'folder');
46 define('SMOPT_PAGE_ORDER', 'order');
48 function process_optionmode_submit($optpage, $optpage_data) {
49 /* Initialize the maximum option refresh level. */
50 $max_refresh = SMOPT_REFRESH_NONE
;
52 /* Save each option in each option group. */
53 foreach ($optpage_data['options'] as $option_grp) {
54 foreach ($option_grp['options'] as $option) {
55 /* Remove Debug Mode Until Needed
56 echo "name = '$option->name', "
57 . "value = '$option->value', "
58 . "new_value = '$option->new_value'\n";
61 if ($option->changed()) {
63 $max_refresh = max($max_refresh, $option->refresh_level
);
68 /* Return the max refresh level. */
69 return ($max_refresh);
72 function process_optionmode_link($optpage) {
73 /* There will be something here, later. */
78 * This function prints out an option page row.
80 function print_optionpages_row($leftopt, $rightopt = false) {
84 $rightopt_name = html_tag( 'td', '<a href="' . $rightopt['url'] . '">' . $rightopt['name'] . '</a>', 'left', $color[9], 'valign="top" width="49%"' );
85 $rightopt_desc = html_tag( 'td', $rightopt['desc'], 'left', $color[0], 'valign="top" width="49%"' );
87 $rightopt_name = html_tag( 'td', ' ', 'left', $color[4], 'valign="top" width="49%"' );
88 $rightopt_desc = html_tag( 'td', ' ', 'left', $color[4], 'valign="top" width="49%"' );
92 html_tag( 'table', "\n" .
93 html_tag( 'tr', "\n" .
94 html_tag( 'td', "\n" .
95 html_tag( 'table', "\n" .
96 html_tag( 'tr', "\n" .
98 '<a href="' . $leftopt['url'] . '">' . $leftopt['name'] . '</a>' ,
99 'left', $color[9], 'valign="top" width="49%"' ) .
102 'left', $color[4], 'valign="top" width="2%"' ) . "\n" .
105 html_tag( 'tr', "\n" .
108 'left', $color[0], 'valign="top" width="49%"' ) .
111 'left', $color[4], 'valign="top" width="2%"' ) . "\n" .
114 '', '', 'width="100%" cellpadding="2" cellspacing="0" border="0"' ) ,
115 'left', '', 'valign="top"' )
117 '', $color[4], 'width="100%" cellpadding="0" cellspacing="5" border="0"' );
120 /* ---------------------------- main ---------------------------- */
122 /* get the globals that we may need */
123 sqgetGlobalVar('key', $key, SQ_COOKIE
);
124 sqgetGlobalVar('username', $username, SQ_SESSION
);
125 sqgetGlobalVar('onetimepad',$onetimepad, SQ_SESSION
);
126 sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION
);
128 sqgetGlobalVar('optpage', $optpage);
129 sqgetGlobalVar('optmode', $optmode, SQ_FORM
);
130 sqgetGlobalVar('optpage_data',$optpage_data, SQ_POST
);
131 /* end of getting globals */
133 /* Make sure we have an Option Page set. Default to main. */
134 if ( !isset($optpage) ||
$optpage == '' ) {
135 $optpage = SMOPT_PAGE_MAIN
;
137 $optpage = strip_tags( $optpage );
140 /* Make sure we have an Option Mode set. Default to display. */
141 if (!isset($optmode)) {
142 $optmode = SMOPT_MODE_DISPLAY
;
146 * First, set the load information for each option page.
149 /* Initialize load information variables. */
152 $optpage_loader = '';
154 /* Set the load information for each page. */
156 case SMOPT_PAGE_MAIN
:
158 case SMOPT_PAGE_PERSONAL
:
159 $optpage_name = _("Personal Information");
160 $optpage_file = SM_PATH
. 'include/options/personal.php';
161 $optpage_loader = 'load_optpage_data_personal';
162 $optpage_loadhook = 'optpage_loadhook_personal';
164 case SMOPT_PAGE_DISPLAY
:
165 $optpage_name = _("Display Preferences");
166 $optpage_file = SM_PATH
. 'include/options/display.php';
167 $optpage_loader = 'load_optpage_data_display';
168 $optpage_loadhook = 'optpage_loadhook_display';
170 case SMOPT_PAGE_COMPOSE
:
171 $optpage_name = _("Compose Preferences");
172 $optpage_file = SM_PATH
. 'include/options/compose.php';
173 $optpage_loader = 'load_optpage_data_compose';
174 $optpage_loadhook = 'optpage_loadhook_compose';
176 case SMOPT_PAGE_HIGHLIGHT
:
177 $optpage_name = _("Message Highlighting");
178 $optpage_file = SM_PATH
. 'include/options/highlight.php';
179 $optpage_loader = 'load_optpage_data_highlight';
180 $optpage_loadhook = 'optpage_loadhook_highlight';
182 case SMOPT_PAGE_FOLDER
:
183 $optpage_name = _("Folder Preferences");
184 $optpage_file = SM_PATH
. 'include/options/folder.php';
185 $optpage_loader = 'load_optpage_data_folder';
186 $optpage_loadhook = 'optpage_loadhook_folder';
188 case SMOPT_PAGE_ORDER
:
189 $optpage_name = _("Index Order");
190 $optpage_file = SM_PATH
. 'include/options/order.php';
191 $optpage_loader = 'load_optpage_data_order';
192 $optpage_loadhook = 'optpage_loadhook_order';
194 default: do_hook('optpage_set_loadinfo');
197 /**********************************************************/
198 /*** Second, load the option information for this page. ***/
199 /**********************************************************/
201 if ( !@is_file
( $optpage_file ) ) {
202 $optpage = SMOPT_PAGE_MAIN
;
203 } else if ($optpage != SMOPT_PAGE_MAIN
) {
204 /* Include the file for this optionpage. */
206 require_once($optpage_file);
208 /* Assemble the data for this option page. */
209 $optpage_data = array();
210 $optpage_data = $optpage_loader();
211 do_hook($optpage_loadhook);
212 $optpage_data['options'] =
213 create_option_groups($optpage_data['grps'], $optpage_data['vals']);
216 /***********************************************************/
217 /*** Next, process anything that needs to be processed. ***/
218 /***********************************************************/
220 $optpage_save_error=array();
222 if ( isset( $optpage_data ) ) {
224 case SMOPT_MODE_SUBMIT
:
225 $max_refresh = process_optionmode_submit($optpage, $optpage_data);
227 case SMOPT_MODE_LINK
:
228 $max_refresh = process_optionmode_link($optpage, $optpage_data);
233 $optpage_title = _("Options");
234 if (isset($optpage_name) && ($optpage_name != '')) {
235 $optpage_title .= " - $optpage_name";
238 /*******************************************************************/
239 /* DO OLD SAVING OF SUBMITTED OPTIONS. THIS WILL BE REMOVED LATER. */
240 /*******************************************************************/
242 /* If in submit mode, select a save hook name and run it. */
243 if ($optmode == SMOPT_MODE_SUBMIT
) {
244 /* Select a save hook name. */
246 case SMOPT_PAGE_PERSONAL
:
247 $save_hook_name = 'options_personal_save';
249 case SMOPT_PAGE_DISPLAY
:
250 $save_hook_name = 'options_display_save';
252 case SMOPT_PAGE_FOLDER
:
253 $save_hook_name = 'options_folder_save';
256 $save_hook_name = 'options_save';
260 /* Run the options save hook. */
261 do_hook($save_hook_name);
264 /***************************************************************/
265 /* Apply logic to decide what optpage we want to display next. */
266 /***************************************************************/
268 /* If this is the result of an option page being submitted, then */
269 /* show the main page. Otherwise, show whatever page was called. */
271 if ($optmode == SMOPT_MODE_SUBMIT
) {
272 $optpage = SMOPT_PAGE_MAIN
;
275 /***************************************************************/
276 /* Finally, display whatever page we are supposed to show now. */
277 /***************************************************************/
279 displayPageHeader($color, 'None', (isset($optpage_data['xtra']) ?
$optpage_data['xtra'] : ''));
281 echo html_tag( 'table', '', 'center', $color[0], 'width="95%" cellpadding="1" cellspacing="0" border="0"' ) . "\n" .
282 html_tag( 'tr' ) . "\n" .
283 html_tag( 'td', '', 'center' ) .
284 "<b>$optpage_title</b><br />\n".
285 html_tag( 'table', '', '', '', 'width="100%" cellpadding="5" cellspacing="0" border="0"' ) . "\n" .
286 html_tag( 'tr' ) . "\n" .
287 html_tag( 'td', '', 'center', $color[4] ) . "\n";
290 * The main option page has a different layout then the rest of the option
291 * pages. Therefore, we create it here first, then the others below.
293 if ($optpage == SMOPT_PAGE_MAIN
) {
294 /**********************************************************/
295 /* First, display the results of a submission, if needed. */
296 /**********************************************************/
297 if ($optmode == SMOPT_MODE_SUBMIT
) {
298 if (!isset($frame_top)) {
302 if (isset($optpage_save_error) && $optpage_save_error!=array()) {
303 echo "<font color=\"$color[2]\"><b>" . _("Error(s) occurred while saving your options") . "</b></font><br />\n";
305 foreach ($optpage_save_error as $error_message) {
306 echo '<li><small>' . $error_message . "</small></li>\n";
309 echo '<b>' . _("Some of your preference changes were not applied.") . "</b><br />\n";
311 /* Display a message indicating a successful save. */
312 echo '<b>' . _("Successfully Saved Options") . ": $optpage_name</b><br />\n";
315 /* If $max_refresh != SMOPT_REFRESH_NONE, provide a refresh link. */
316 if ( !isset( $max_refresh ) ) {
317 } else if ($max_refresh == SMOPT_REFRESH_FOLDERLIST
) {
318 echo '<a href="../src/left_main.php" target="left">' . _("Refresh Folder List") . '</a><br />';
319 } else if ($max_refresh) {
320 echo '<a href="../src/webmail.php?right_frame=options.php" target="' . $frame_top . '">' . _("Refresh Page") . '</a><br />';
323 /******************************************/
324 /* Build our array of Option Page Blocks. */
325 /******************************************/
326 $optpage_blocks = array();
328 /* Build a section for Personal Options. */
329 $optpage_blocks[] = array(
330 'name' => _("Personal Information"),
331 'url' => 'options.php?optpage=' . SMOPT_PAGE_PERSONAL
,
332 'desc' => _("This contains personal information about yourself such as your name, your email address, etc."),
336 /* Build a section for Display Options. */
337 $optpage_blocks[] = array(
338 'name' => _("Display Preferences"),
339 'url' => 'options.php?optpage=' . SMOPT_PAGE_DISPLAY
,
340 'desc' => _("You can change the way that SquirrelMail looks and displays information to you, such as the colors, the language, and other settings."),
344 /* Build a section for Message Highlighting Options. */
345 $optpage_blocks[] = array(
346 'name' =>_("Message Highlighting"),
347 'url' => 'options_highlight.php',
348 'desc' =>_("Based upon given criteria, incoming messages can have different background colors in the message list. This helps to easily distinguish who the messages are from, especially for mailing lists."),
352 /* Build a section for Folder Options. */
353 $optpage_blocks[] = array(
354 'name' => _("Folder Preferences"),
355 'url' => 'options.php?optpage=' . SMOPT_PAGE_FOLDER
,
356 'desc' => _("These settings change the way your folders are displayed and manipulated."),
360 /* Build a section for Index Order Options. */
361 $optpage_blocks[] = array(
362 'name' => _("Index Order"),
363 'url' => 'options_order.php',
364 'desc' => _("The order of the message index can be rearranged and changed to contain the headers in any order you want."),
368 /* Build a section for Compose Options. */
369 $optpage_blocks[] = array(
370 'name' => _("Compose Preferences"),
371 'url' => 'options.php?optpage=' . SMOPT_PAGE_COMPOSE
,
372 'desc' => _("Control the behaviour and layout of writing new mail messages, replying to and forwarding messages."),
376 /* Build a section for plugins wanting to register an optionpage. */
377 do_hook('optpage_register_block');
379 /*****************************************************/
380 /* Let's sort Javascript Option Pages to the bottom. */
381 /*****************************************************/
382 $js_optpage_blocks = array();
383 $reg_optpage_blocks = array();
384 foreach ($optpage_blocks as $cur_optpage) {
385 if (!isset($cur_optpage['js']) ||
!$cur_optpage['js']) {
386 $reg_optpage_blocks[] = $cur_optpage;
387 } else if ($javascript_on == SMPREF_JS_ON
) {
388 $js_optpage_blocks[] = $cur_optpage;
391 $optpage_blocks = array_merge($reg_optpage_blocks, $js_optpage_blocks);
393 /********************************************/
394 /* Now, print out each option page section. */
395 /********************************************/
396 $first_optpage = false;
397 echo html_tag( 'table', '', '', $color[4], 'width="100%" cellpadding="0" cellspacing="5" border="0"' ) . "\n" .
398 html_tag( 'tr' ) . "\n" .
399 html_tag( 'td', '', 'left', '', 'valign="top"' ) .
400 html_tag( 'table', '', '', $color[4], 'width="100%" cellpadding="3" cellspacing="0" border="0"' ) . "\n" .
401 html_tag( 'tr' ) . "\n" .
402 html_tag( 'td', '', 'left' );
403 foreach ($optpage_blocks as $next_optpage) {
404 if ($first_optpage == false) {
405 $first_optpage = $next_optpage;
407 print_optionpages_row($first_optpage, $next_optpage);
408 $first_optpage = false;
412 if ($first_optpage != false) {
413 print_optionpages_row($first_optpage);
416 echo "</td></tr></table></td></tr></table>\n";
418 do_hook('options_link_and_description');
421 /*************************************************************************/
422 /* If we are not looking at the main option page, display the page here. */
423 /*************************************************************************/
425 echo addForm('options.php', 'post', 'f')
426 . create_optpage_element($optpage)
427 . create_optmode_element(SMOPT_MODE_SUBMIT
)
428 . html_tag( 'table', '', '', '', 'width="100%" cellpadding="2" cellspacing="0" border="0"' ) . "\n";
430 /* Output the option groups for this page. */
431 print_option_groups($optpage_data['options']);
433 /* Set the inside_hook_name and submit_name. */
435 case SMOPT_PAGE_PERSONAL
:
436 $inside_hook_name = 'options_personal_inside';
437 $bottom_hook_name = 'options_personal_bottom';
438 $submit_name = 'submit_personal';
440 case SMOPT_PAGE_DISPLAY
:
441 $inside_hook_name = 'options_display_inside';
442 $bottom_hook_name = 'options_display_bottom';
443 $submit_name = 'submit_display';
445 case SMOPT_PAGE_HIGHLIGHT
:
446 $inside_hook_name = 'options_highlight_inside';
447 $bottom_hook_name = 'options_highlight_bottom';
448 $submit_name = 'submit_highlight';
450 case SMOPT_PAGE_FOLDER
:
451 $inside_hook_name = 'options_folder_inside';
452 $bottom_hook_name = 'options_folder_bottom';
453 $submit_name = 'submit_folder';
455 case SMOPT_PAGE_ORDER
:
456 $inside_hook_name = 'options_order_inside';
457 $bottom_hook_name = 'options_order_bottom';
458 $submit_name = 'submit_order';
461 $inside_hook_name = '';
462 $bottom_hook_name = '';
463 $submit_name = 'submit';
466 /* If it is not empty, trigger the inside hook. */
467 if ($inside_hook_name != '') {
468 do_hook($inside_hook_name);
471 /* Spit out a submit button. */
472 OptionSubmit($submit_name);
473 echo '</table></form>';
475 /* If it is not empty, trigger the bottom hook. */
476 if ($bottom_hook_name != '') {
477 do_hook($bottom_hook_name);