Moving template util file
[squirrelmail.git] / include / options / folder.php
CommitLineData
c36ed9cf 1<?php
c36ed9cf 2
35586184 3/**
4 * options_folder.php
5 *
35586184 6 * Displays all options relating to folders
7 *
47ccfad4 8 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
4b4abf93 9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
763b63fe 10 * @version $Id$
2b646597 11 * @package squirrelmail
35586184 12 */
cbe5423b 13
2b646597 14/** SquirrelMail required files. */
202bcbcc 15include(SM_PATH . 'functions/imap_general.php');
cbe5423b 16
aedb6605 17/* Define the group constants for the folder options page. */
cbe5423b 18define('SMOPT_GRP_SPCFOLDER', 0);
19define('SMOPT_GRP_FOLDERLIST', 1);
be2d5495 20define('SMOPT_GRP_FOLDERSELECT', 2);
cbe5423b 21
48af4b64 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 */
cbe5423b 35function load_optpage_data_folder() {
045ec1a1 36 global $username, $imapServerAddress, $imapPort;
2fad95fa 37 global $folder_prefix, $default_folder_prefix, $show_prefix_option;
cbe5423b 38
39 /* Get some imap data we need later. */
045ec1a1 40 $imapConnection = sqimap_login($username, false, $imapServerAddress, $imapPort, 0);
cbe5423b 41 $boxes = sqimap_mailbox_list($imapConnection);
bbcafebd 42
b5efadfa 43 /* Build a simple array into which we will build options. */
bbcafebd 44 $optgrps = array();
b5efadfa 45 $optvals = array();
46
bbcafebd 47 /******************************************************/
48 /* LOAD EACH GROUP OF OPTIONS INTO THE OPTIONS ARRAY. */
49 /******************************************************/
bbcafebd 50
51 /*** Load the General Options into the array ***/
52 $optgrps[SMOPT_GRP_SPCFOLDER] = _("Special Folder Options");
53 $optvals[SMOPT_GRP_SPCFOLDER] = array();
54
cbe5423b 55 if (!isset($folder_prefix)) { $folder_prefix = $default_folder_prefix; }
56 if ($show_prefix_option) {
57 $optvals[SMOPT_GRP_SPCFOLDER][] = array(
58 'name' => 'folder_prefix',
59 'caption' => _("Folder Path"),
60 'type' => SMOPT_TYPE_STRING,
61 'refresh' => SMOPT_REFRESH_FOLDERLIST,
62 'size' => SMOPT_SIZE_LARGE
63 );
64 }
65
be2d5495 66 $trash_folder_values = array(SMPREF_NONE => '[ '._("Do not use Trash").' ]',
67 'whatever' => $boxes);
bbcafebd 68 $optvals[SMOPT_GRP_SPCFOLDER][] = array(
b5efadfa 69 'name' => 'trash_folder',
70 'caption' => _("Trash Folder"),
be2d5495 71 'type' => SMOPT_TYPE_FLDRLIST,
b5efadfa 72 'refresh' => SMOPT_REFRESH_FOLDERLIST,
cbe5423b 73 'posvals' => $trash_folder_values,
74 'save' => 'save_option_trash_folder'
b5efadfa 75 );
aedb6605 76
77 $draft_folder_values = array(SMPREF_NONE => '[ '._("Do not use Drafts").' ]',
78 'whatever' => $boxes);
79 $optvals[SMOPT_GRP_SPCFOLDER][] = array(
80 'name' => 'draft_folder',
81 'caption' => _("Draft Folder"),
82 'type' => SMOPT_TYPE_FLDRLIST,
83 'refresh' => SMOPT_REFRESH_FOLDERLIST,
84 'posvals' => $draft_folder_values,
85 'save' => 'save_option_draft_folder'
86 );
87
be2d5495 88 $sent_folder_values = array(SMPREF_NONE => '[ '._("Do not use Sent").' ]',
89 'whatever' => $boxes);
bbcafebd 90 $optvals[SMOPT_GRP_SPCFOLDER][] = array(
b5efadfa 91 'name' => 'sent_folder',
92 'caption' => _("Sent Folder"),
be2d5495 93 'type' => SMOPT_TYPE_FLDRLIST,
b5efadfa 94 'refresh' => SMOPT_REFRESH_FOLDERLIST,
cbe5423b 95 'posvals' => $sent_folder_values,
96 'save' => 'save_option_sent_folder'
b5efadfa 97 );
aedb6605 98
7652c651 99 $optvals[SMOPT_GRP_SPCFOLDER][] = array(
100 'name' => 'translate_special_folders',
101 'caption' => _("Translate Special Folders"),
102 'type' => SMOPT_TYPE_BOOLEAN,
103 'refresh' => SMOPT_REFRESH_FOLDERLIST
104 );
105
bbcafebd 106 $optvals[SMOPT_GRP_SPCFOLDER][] = array(
aedb6605 107 'name' => 'save_reply_with_orig',
108 'caption' => _("Save Replies with Original Message"),
109 'type' => SMOPT_TYPE_BOOLEAN,
110 'refresh' => SMOPT_REFRESH_FOLDERLIST
b5efadfa 111 );
112
bbcafebd 113 /*** Load the General Options into the array ***/
114 $optgrps[SMOPT_GRP_FOLDERLIST] = _("Folder List Options");
115 $optvals[SMOPT_GRP_FOLDERLIST] = array();
116
117 $optvals[SMOPT_GRP_FOLDERLIST][] = array(
a440e68f 118 'name' => 'location_of_bar',
119 'caption' => _("Location of Folder List"),
120 'type' => SMOPT_TYPE_STRLIST,
121 'refresh' => SMOPT_REFRESH_ALL,
122 'posvals' => array(SMPREF_LOC_LEFT => _("Left"),
123 SMPREF_LOC_RIGHT => _("Right"))
124 );
125
126 $left_size_values = array();
127 for ($lsv = 100; $lsv <= 300; $lsv += 10) {
128 $left_size_values[$lsv] = "$lsv " . _("pixels");
129 }
bbcafebd 130 $optvals[SMOPT_GRP_FOLDERLIST][] = array(
a440e68f 131 'name' => 'left_size',
132 'caption' => _("Width of Folder List"),
133 'type' => SMOPT_TYPE_STRLIST,
134 'refresh' => SMOPT_REFRESH_ALL,
135 'posvals' => $left_size_values
136 );
137
a440e68f 138 $left_refresh_values = array(SMPREF_NONE => _("Never"));
721db745 139 foreach (array(30,60,120,180,300,600,1200) as $lr_val) {
a440e68f 140 if ($lr_val < 60) {
141 $left_refresh_values[$lr_val] = "$lr_val " . _("Seconds");
a440e68f 142 } else {
031b6f72 143 $left_refresh_values[$lr_val] = sprintf(ngettext("%d Minute","%d Minutes",($lr_val/60)),($lr_val/60));
a440e68f 144 }
145 }
bbcafebd 146 $optvals[SMOPT_GRP_FOLDERLIST][] = array(
a440e68f 147 'name' => 'left_refresh',
148 'caption' => _("Auto Refresh Folder List"),
149 'type' => SMOPT_TYPE_STRLIST,
150 'refresh' => SMOPT_REFRESH_FOLDERLIST,
151 'posvals' => $left_refresh_values
152 );
153
bbcafebd 154 $optvals[SMOPT_GRP_FOLDERLIST][] = array(
a440e68f 155 'name' => 'unseen_notify',
10ff0c3d 156 'caption' => _("Enable Unread Message Notification"),
a440e68f 157 'type' => SMOPT_TYPE_STRLIST,
158 'refresh' => SMOPT_REFRESH_FOLDERLIST,
159 'posvals' => array(SMPREF_UNSEEN_NONE => _("No Notification"),
160 SMPREF_UNSEEN_INBOX => _("Only INBOX"),
161 SMPREF_UNSEEN_ALL => _("All Folders"))
162 );
163
bbcafebd 164 $optvals[SMOPT_GRP_FOLDERLIST][] = array(
a440e68f 165 'name' => 'unseen_type',
10ff0c3d 166 'caption' => _("Unread Message Notification Type"),
a440e68f 167 'type' => SMOPT_TYPE_STRLIST,
168 'refresh' => SMOPT_REFRESH_FOLDERLIST,
169 'posvals' => array(SMPREF_UNSEEN_ONLY => _("Only Unseen"),
aedb6605 170 SMPREF_UNSEEN_TOTAL => _("Unseen and Total"))
a440e68f 171 );
172
bbcafebd 173 $optvals[SMOPT_GRP_FOLDERLIST][] = array(
a440e68f 174 'name' => 'collapse_folders',
175 'caption' => _("Enable Collapsable Folders"),
176 'type' => SMOPT_TYPE_BOOLEAN,
177 'refresh' => SMOPT_REFRESH_FOLDERLIST
178 );
179
f612a235 180 $optvals[SMOPT_GRP_FOLDERLIST][] = array(
181 'name' => 'unseen_cum',
182 'caption' => _("Enable Cumulative Unread Message Notification"),
183 'type' => SMOPT_TYPE_BOOLEAN,
184 'refresh' => SMOPT_REFRESH_FOLDERLIST
185 );
186
187
bbcafebd 188 $optvals[SMOPT_GRP_FOLDERLIST][] = array(
a440e68f 189 'name' => 'date_format',
190 'caption' => _("Show Clock on Folders Panel"),
191 'type' => SMOPT_TYPE_STRLIST,
192 'refresh' => SMOPT_REFRESH_FOLDERLIST,
e4f5158a 193 'posvals' => array( '0' => _("International date and time"),
300a044d 194 '1' => _("American date and time"),
e4f5158a 195 '2' => _("European date and time"),
157e9c5e 196 '3' => _("Show weekday and time"),
197 '4' => _("Show time with seconds"),
198 '5' => _("Show time"),
a440e68f 199 '6' => _("No Clock")),
200 );
201
0d672ac0 202 $optvals[SMOPT_GRP_FOLDERLIST][] = array(
203 'name' => 'search_memory',
204 'caption' => _("Memory Search"),
205 'type' => SMOPT_TYPE_STRLIST,
90568047 206 'refresh' => SMOPT_REFRESH_NONE,
0d672ac0 207 'posvals' => array( 0 => _("Disabled"),
208 1 => '1',
209 2 => '2',
210 3 => '3',
211 4 => '4',
212 5 => '5',
213 6 => '6',
214 7 => '7',
215 8 => '8',
a2bc1180 216 9 => '9')
217 );
0d672ac0 218
4d5f2b31 219 $optvals[SMOPT_GRP_FOLDERLIST][] = array(
220 'name' => 'show_only_subscribed_folders',
221 'caption' => _("Show only subscribed folders"),
222 'type' => SMOPT_TYPE_BOOLEAN,
223 'refresh' => SMOPT_REFRESH_FOLDERLIST
224 );
be2d5495 225
226 /*** Load the General Options into the array ***/
227 $optgrps[SMOPT_GRP_FOLDERSELECT] = _("Folder Selection Options");
228 $optvals[SMOPT_GRP_FOLDERSELECT] = array();
229
ebbf2fd0 230 $delim = sqimap_get_delimiter($imapConnection);
be2d5495 231 $optvals[SMOPT_GRP_FOLDERSELECT][] = array(
232 'name' => 'mailbox_select_style',
233 'caption' => _("Selection List Style"),
234 'type' => SMOPT_TYPE_STRLIST,
235 'refresh' => SMOPT_REFRESH_NONE,
0e1a248b 236 'posvals' => array( 0 => _("Long:") . ' "' . _("Folder") . $delim . _("Subfolder") . '"',
237 1 => _("Indented:") . ' "&nbsp;&nbsp;&nbsp;&nbsp;' . _("Subfolder") . '"',
238 2 => _("Delimited:") . ' ".&nbsp;' . _("Subfolder") . '"'),
300a044d 239 'htmlencoded' => true
be2d5495 240 );
241
cbe5423b 242 /* Assemble all this together and return it as our result. */
243 $result = array(
244 'grps' => $optgrps,
245 'vals' => $optvals
246 );
ebbf2fd0 247 sqimap_logout($imapConnection);
cbe5423b 248 return ($result);
249}
250
251/******************************************************************/
252/** Define any specialized save functions for this option page. ***/
253/******************************************************************/
48af4b64 254
255/**
256 * Saves the trash folder option.
345e009b 257 * @param object $option SquirrelOption object
258 * @since 1.3.2
48af4b64 259 */
cbe5423b 260function save_option_trash_folder($option) {
261 global $data_dir, $username;
262
345e009b 263 if (strtolower($option->new_value)=='inbox') {
264 // make sure that it is not INBOX
265 error_option_save(_("You can't select INBOX as Trash folder."));
266 } else {
267 /* Set move to trash on or off. */
268 $trash_on = ($option->new_value == SMPREF_NONE ? SMPREF_OFF : SMPREF_ON);
269 setPref($data_dir, $username, 'move_to_trash', $trash_on);
a440e68f 270
345e009b 271 /* Now just save the option as normal. */
272 save_option($option);
273 }
cbe5423b 274}
2016e645 275
48af4b64 276/**
277 * Saves the sent folder option.
345e009b 278 * @param object $option SquirrelOption object
279 * @since 1.3.2
48af4b64 280 */
cbe5423b 281function save_option_sent_folder($option) {
282 global $data_dir, $username;
e7db48af 283
345e009b 284 if (strtolower($option->new_value)=='inbox') {
285 // make sure that it is not INBOX
286 error_option_save(_("You can't select INBOX as Sent folder."));
287 } else {
288 /* Set move to sent on or off. */
289 $sent_on = ($option->new_value == SMPREF_NONE ? SMPREF_OFF : SMPREF_ON);
290 setPref($data_dir, $username, 'move_to_sent', $sent_on);
e7db48af 291
345e009b 292 /* Now just save the option as normal. */
293 save_option($option);
294 }
cbe5423b 295}
e7db48af 296
48af4b64 297/**
298 * Saves the draft folder option.
345e009b 299 * @param object $option SquirrelOption object
300 * @since 1.3.2
48af4b64 301 */
cbe5423b 302function save_option_draft_folder($option) {
303 global $data_dir, $username;
304
345e009b 305 if (strtolower($option->new_value)=='inbox') {
306 // make sure that it is not INBOX
307 error_option_save(_("You can't select INBOX as Draft folder."));
308 } else {
309 /* Set move to draft on or off. */
310 $draft_on = ($option->new_value == SMPREF_NONE ? SMPREF_OFF : SMPREF_ON);
311 setPref($data_dir, $username, 'save_as_draft', $draft_on);
312
313 /* Now just save the option as normal. */
314 save_option($option);
315 }
cbe5423b 316}