df5ed332ed575b07459235fc5f2a587ec23ba8a0
[squirrelmail.git] / src / options.php
1 <?php
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 **
11 **/
12
13 session_start();
14
15 if (!isset($config_php))
16 include("../config/config.php");
17 if (!isset($strings_php))
18 include("../functions/strings.php");
19 if (!isset($page_header_php))
20 include("../functions/page_header.php");
21 if (!isset($display_messages_php))
22 include("../functions/display_messages.php");
23 if (!isset($imap_php))
24 include("../functions/imap.php");
25 if (!isset($array_php))
26 include("../functions/array.php");
27 if (!isset($i18n_php))
28 include("../functions/i18n.php");
29 if (!isset($auth_php))
30 include ("../functions/auth.php");
31
32 if ($language) {
33 setcookie("squirrelmail_language", $language, time()+2592000);
34 $squirrelmail_language = $language;
35 }
36
37 include("../src/load_prefs.php");
38 displayPageHeader($color, "None");
39 is_logged_in();
40 ?>
41
42 <br>
43 <table width=95% align=center cellpadding=2 cellspacing=2 border=0>
44 <tr><td bgcolor="<?php echo $color[0] ?>">
45 <center><b><?php echo _("Options") ?></b></center>
46 </td></tr></table>
47
48 <?php
49 if ($submit_personal) {
50 # Save personal information
51 if (isset($full_name)) setPref($data_dir, $username, "full_name", stripslashes($full_name));
52 if (isset($email_address)) setPref($data_dir, $username, "email_address", stripslashes($email_address));
53 if (isset($reply_to)) setPref($data_dir, $username, "reply_to", stripslashes($reply_to));
54 setPref($data_dir, $username, "use_signature", stripslashes($usesignature));
55 if (isset($signature_edit)) setSig($data_dir, $username, stripslashes($signature_edit));
56
57 echo "<br><center><b>"._("Successfully saved personal information!")."</b></center><br>";
58 } else if ($submit_display) {
59 # Save display preferences
60 setPref($data_dir, $username, "chosen_theme", $chosentheme);
61 setPref($data_dir, $username, "show_num", $shownum);
62 setPref($data_dir, $username, "wrap_at", $wrapat);
63 setPref($data_dir, $username, "editor_size", $editorsize);
64 setPref($data_dir, $username, "left_refresh", $leftrefresh);
65 setPref($data_dir, $username, "language", $language);
66 setPref($data_dir, $username, "left_size", $leftsize);
67 setPref($data_dir, $username, "use_javascript_addr_book", $javascript_abook);
68
69 echo "<br><center><b>"._("Successfully saved display preferences!")."</b><br>";
70 echo "<a href=\"webmail.php?right_frame=options.php\" target=_top>"._("Refresh Page")."</a></center><br>";
71 } else if ($submit_folder) {
72 # Save folder preferences
73 if ($trash != "none") {
74 setPref($data_dir, $username, "move_to_trash", true);
75 setPref($data_dir, $username, "trash_folder", $trash);
76 } else {
77 setPref($data_dir, $username, "move_to_trash", false);
78 setPref($data_dir, $username, "trash_folder", "");
79 }
80 if ($sent != "none") {
81 setPref($data_dir, $username, "move_to_sent", true);
82 setPref($data_dir, $username, "sent_folder", $sent);
83 } else {
84 setPref($data_dir, $username, "move_to_sent", false);
85 setPref($data_dir, $username, "sent_folder", "");
86 }
87 setPref($data_dir, $username, "folder_prefix", $folderprefix);
88 setPref($data_dir, $username, "unseen_notify", $unseennotify);
89 setPref($data_dir, $username, "unseen_type", $unseentype);
90 echo "<br><center><b>"._("Successfully saved folder preferences!")."</b><br>";
91 echo "<a href=\"left_main.php\" target=left>"._("Refresh Folders")."</a></center><br>";
92 }
93 ?>
94
95
96 <table width=90% cellpadding=0 cellspacing=10 border=0 align=center>
97 <tr>
98 <td width=50% valign=top>
99 <table width=100% cellpadding=3 cellspacing=0 border=0>
100 <tr>
101 <td bgcolor="<?php echo $color[9] ?>">
102 <a href="options_personal.php"><?php echo _("Personal Information"); ?></a>
103 </td>
104 </tr>
105 <tr>
106 <td bgcolor="<?php echo $color[0] ?>">
107 <?php echo _("This contains personal information about yourself such as your name, your email address, etc.") ?>
108 </td>
109 </tr>
110 </table><br>
111 <table width=100% cellpadding=3 cellspacing=0 border=0>
112 <tr>
113 <td bgcolor="<?php echo $color[9] ?>">
114 <a href="options_highlight.php"><?php echo _("Message Highlighting"); ?></a>
115 </td>
116 </tr>
117 <tr>
118 <td bgcolor="<?php echo $color[0] ?>">
119 <?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.") ?>
120 </td>
121 </tr>
122 </table><br>
123 </td>
124 <td valign=top width=50%>
125 <table width=100% cellpadding=3 cellspacing=0 border=0>
126 <tr>
127 <td bgcolor="<?php echo $color[9] ?>">
128 <a href="options_display.php"><?php echo _("Display Preferences"); ?></a>
129 </td>
130 </tr>
131 <tr>
132 <td bgcolor="<?php echo $color[0] ?>">
133 <?php echo _("You can change the way that SquirrelMail looks and displays information to you, such as the colors, the language, and other settings.") ?>
134 </td>
135 </tr>
136 </table><br>
137 <table width=100% cellpadding=3 cellspacing=0 border=0>
138 <tr>
139 <td bgcolor="<?php echo $color[9] ?>">
140 <a href="options_folder.php"><?php echo _("Folder Preferences"); ?></a>
141 </td>
142 </tr>
143 <tr>
144 <td bgcolor="<?php echo $color[0] ?>">
145 <?php echo _("These settings change the way your folders are displayed and manipulated.") ?>
146 </td>
147 </tr>
148 </table><br>
149 </td>
150 </tr>
151 </table>
152 </body></html>