Fixed options_display to use functions/options.
[squirrelmail.git] / src / options.php
CommitLineData
59177427 1<?php
ef870322 2 /**
3 ** options.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 ** Displays the options page. Pulls from proper user preference files
9 ** and config.php. Displays preferences as selected and other options.
10 **
245a6892 11 ** $Id$
ef870322 12 **/
13
ff8a98e7 14 require_once('../src/validate.php');
15 require_once('../functions/display_messages.php');
16 require_once('../functions/imap.php');
17 require_once('../functions/array.php');
88fa922a 18
19 ereg ("(^.*/)[^/]+/[^/]+$", $PHP_SELF, $regs);
20 $base_uri = $regs[1];
d3cdb279 21
7aaa81fc 22 if (isset($language)) {
88fa922a 23 setcookie('squirrelmail_language', $language, time()+2592000, $base_uri);
c36ed9cf 24 $squirrelmail_language = $language;
37df47f5 25 }
1e0628fb 26
e7db48af 27 displayPageHeader($color, _("None"));
f740c049 28
c36ed9cf 29?>
11307a4c 30
e9f8ea4e 31<br>
e7db48af 32<table bgcolor="<?php echo $color[0] ?>" width="95%" align="center" cellpadding="2" cellspacing="0" border="0">
33<tr><td align="center">
34
35 <b><?php echo _("Options") ?></b><br>
36
37 <table width="100%" border="0" cellpadding="5" cellspacing="0">
38 <tr><td bgcolor="<?php echo $color[4] ?>" align="center">
c36ed9cf 39
6170c5b6 40<?php
245a6892 41 if (isset($submit_personal)) {
c36ed9cf 42 # Save personal information
ed21fc85 43 if (isset($full_name)) {
aaf9abef 44 setPref($data_dir, $username, 'full_name', $full_name);
ed21fc85 45 }
46 if (isset($email_address)) {
aaf9abef 47 setPref($data_dir, $username, 'email_address', $email_address);
ed21fc85 48 }
49 if (isset($reply_to)) {
aaf9abef 50 setPref($data_dir, $username, 'reply_to', $reply_to);
ed21fc85 51 }
52 setPref($data_dir, $username, 'reply_citation_style', $new_reply_citation_style);
53 setPref($data_dir, $username, 'reply_citation_start', $new_reply_citation_start);
54 setPref($data_dir, $username, 'reply_citation_end', $new_reply_citation_end);
aab2c92c 55 if (! isset($usesignature))
56 $usesignature = 0;
f740c049 57 setPref($data_dir, $username, 'use_signature', $usesignature);
ed21fc85 58 if (! isset($prefixsig)) {
f740c049 59 $prefixsig = 0;
ed21fc85 60 }
f740c049 61 setPref($data_dir, $username, 'prefix_sig', $prefixsig);
ed21fc85 62 if (isset($signature_edit)) {
63 setSig($data_dir, $username, $signature_edit);
64 }
2848c630 65
db5910ac 66 do_hook('options_personal_save');
ef3c69f0 67
e7db48af 68 echo '<br><b>'._("Successfully saved personal information!").'</b><br>';
f740c049 69 } else if (isset($submit_display)) {
70 // Do checking to make sure $chosentheme is in the array
71 $in_ary = false;
72 for ($i=0; $i < count($theme); $i++)
73 {
74 if ($theme[$i]['PATH'] == $chosentheme)
75 {
76 $in_ary = true;
77 break;
78 }
79 }
80 if (! $in_ary)
81 $chosentheme = '';
82
c36ed9cf 83 # Save display preferences
db5910ac 84 setPref($data_dir, $username, 'chosen_theme', $chosentheme);
cd41fc8d 85 setPref($data_dir, $username, 'language', $language);
86 setPref($data_dir, $username, 'use_javascript_addr_book', $javascript_abook);
db5910ac 87 setPref($data_dir, $username, 'show_num', $shownum);
88 setPref($data_dir, $username, 'wrap_at', $wrapat);
89 setPref($data_dir, $username, 'editor_size', $editorsize);
90 setPref($data_dir, $username, 'left_refresh', $leftrefresh);
9a732bb6 91 setPref($data_dir, $username, 'location_of_bar', $folder_new_location);
441f2d33 92 setPref($data_dir, $username, 'location_of_buttons', $button_new_location);
db5910ac 93 setPref($data_dir, $username, 'left_size', $leftsize);
cd41fc8d 94
95 if (isset($altIndexColors) && $altIndexColors == 1) {
ac53fb56 96 setPref($data_dir, $username, 'alt_index_colors', 1);
cd41fc8d 97 } else {
ac53fb56 98 setPref($data_dir, $username, 'alt_index_colors', 0);
cd41fc8d 99 }
100
101 if (isset($showhtmldefault)) {
e2ab93e5 102 setPref($data_dir, $username, 'show_html_default', 1);
cd41fc8d 103 } else {
e2ab93e5 104 removePref($data_dir, $username, 'show_html_default');
cd41fc8d 105 }
106
107 if (isset($includeselfreplyall)) {
a13cf243 108 setPref($data_dir, $username, 'include_self_reply_all', 1);
cd41fc8d 109 } else {
a13cf243 110 removePref($data_dir, $username, 'include_self_reply_all');
cd41fc8d 111 }
feb563a6 112
f1e6f580 113 if (isset($pageselectormax)) {
114 setPref($data_dir, $username, 'page_selector_max', $pageselectormax);
feb563a6 115 } else {
f1e6f580 116 removePref($data_dir, $username, 'page_selector_max', 0 );
117 }
118
119 if (isset($pageselector)) {
feb563a6 120 removePref($data_dir, $username, 'page_selector');
f1e6f580 121 } else {
122 setPref($data_dir, $username, 'page_selector', 1);
feb563a6 123 }
124
db5910ac 125 do_hook('options_display_save');
ef3c69f0 126
e7db48af 127 echo '<br><b>'._("Successfully saved display preferences!").'</b><br>';
128 echo '<a href="../src/webmail.php?right_frame=options.php" target=_top>' . _("Refresh Page") . '</a><br>';
245a6892 129 } else if (isset($submit_folder)) {
c36ed9cf 130 # Save folder preferences
db5910ac 131 if ($trash != 'none') {
132 setPref($data_dir, $username, 'move_to_trash', true);
133 setPref($data_dir, $username, 'trash_folder', $trash);
c36ed9cf 134 } else {
db5910ac 135 setPref($data_dir, $username, 'move_to_trash', '0');
136 setPref($data_dir, $username, 'trash_folder', 'none');
9d157cec 137 }
db5910ac 138 if ($sent != 'none') {
139 setPref($data_dir, $username, 'move_to_sent', true);
140 setPref($data_dir, $username, 'sent_folder', $sent);
c36ed9cf 141 } else {
db5910ac 142 setPref($data_dir, $username, 'move_to_sent', '0');
143 setPref($data_dir, $username, 'sent_folder', 'none');
8d636967 144 }
2e950c24 145 if (isset($folderprefix)) {
8d636967 146 setPref($data_dir, $username, 'folder_prefix', $folderprefix);
147 } else {
148 setPref($data_dir, $username, 'folder_prefix', '');
149 }
db5910ac 150 setPref($data_dir, $username, 'unseen_notify', $unseennotify);
151 setPref($data_dir, $username, 'unseen_type', $unseentype);
235a65d5 152 if (isset($collapsefolders))
153 setPref($data_dir, $username, 'collapse_folders', $collapsefolders);
154 else
155 removePref($data_dir, $username, 'collapse_folders');
db5910ac 156 do_hook('options_folders_save');
e7db48af 157 echo '<br><b>'._("Successfully saved folder preferences!").'</b><br>';
158 echo '<a href="../src/left_main.php" target=left>' . _("Refresh Folder List") . '</a><br>';
6b638171 159 } else {
db5910ac 160 do_hook('options_save');
9d157cec 161 }
6b638171 162
c36ed9cf 163?>
11307a4c 164
e7db48af 165<table bgcolor="<?php echo $color[4] ?>" width="100%" cellpadding="5" cellspacing="0" border="0">
c36ed9cf 166<tr>
db5910ac 167 <td width="50%" valign="top">
168 <table width="100%" cellpadding="3" cellspacing="0" border="0">
c36ed9cf 169 <tr>
6170c5b6 170 <td bgcolor="<?php echo $color[9] ?>">
171 <a href="options_personal.php"><?php echo _("Personal Information"); ?></a>
c36ed9cf 172 </td>
173 </tr>
174 <tr>
6170c5b6 175 <td bgcolor="<?php echo $color[0] ?>">
176 <?php echo _("This contains personal information about yourself such as your name, your email address, etc.") ?>
c36ed9cf 177 </td>
178 </tr>
179 </table><br>
db5910ac 180 <table width="100%" cellpadding="3" cellspacing="0" border="0">
c36ed9cf 181 <tr>
6170c5b6 182 <td bgcolor="<?php echo $color[9] ?>">
183 <a href="options_highlight.php"><?php echo _("Message Highlighting"); ?></a>
c36ed9cf 184 </td>
185 </tr>
186 <tr>
6170c5b6 187 <td bgcolor="<?php echo $color[0] ?>">
188 <?php echo _("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.") ?>
c36ed9cf 189 </td>
190 </tr>
191 </table><br>
db5910ac 192 <table width="100%" cellpadding="3" cellspacing="0" border="0">
8e265988 193 <tr>
194 <td bgcolor="<?php echo $color[9] ?>">
195 <a href="options_order.php"><?php echo _("Index Order"); ?></a>
196 </td>
197 </tr>
198 <tr>
199 <td bgcolor="<?php echo $color[0] ?>">
200 <?php echo _("The order of the message index can be rearanged and changed to contain the headers in any order you want.") ?>
201 </td>
202 </tr>
203 </table><br>
c36ed9cf 204 </td>
db5910ac 205 <td valign="top" width="50%">
206 <table width="100%" cellpadding="3" cellspacing="0" border="0">
c36ed9cf 207 <tr>
6170c5b6 208 <td bgcolor="<?php echo $color[9] ?>">
209 <a href="options_display.php"><?php echo _("Display Preferences"); ?></a>
c36ed9cf 210 </td>
211 </tr>
212 <tr>
6170c5b6 213 <td bgcolor="<?php echo $color[0] ?>">
214 <?php echo _("You can change the way that SquirrelMail looks and displays information to you, such as the colors, the language, and other settings.") ?>
c36ed9cf 215 </td>
216 </tr>
217 </table><br>
db5910ac 218 <table width="100%" cellpadding="3" cellspacing="0" border="0">
c36ed9cf 219 <tr>
6170c5b6 220 <td bgcolor="<?php echo $color[9] ?>">
221 <a href="options_folder.php"><?php echo _("Folder Preferences"); ?></a>
c36ed9cf 222 </td>
223 </tr>
224 <tr>
6170c5b6 225 <td bgcolor="<?php echo $color[0] ?>">
226 <?php echo _("These settings change the way your folders are displayed and manipulated.") ?>
c36ed9cf 227 </td>
228 </tr>
229 </table><br>
230 </td>
231</tr>
232</table>
e7db48af 233
234 <?php do_hook('options_link_and_description'); ?>
235
236
237 </td></tr>
238 </table>
239
240</td></tr>
241</table>
242
ff8a98e7 243</body></html>