source: github/program/steps/settings/save_prefs.inc @ e6ce006

HEADcourier-fixdev-browser-capabilitiespdorelease-0.6release-0.7release-0.8
Last change on this file since e6ce006 was e6ce006, checked in by alecpl <alec@…>, 3 years ago
  • Unify hooks names, see rcube_plugin_api::deprecated_hooks for complete list (old names are supported without errors nor warnings)
  • Property mode set to 100644
File size: 6.6 KB
Line 
1<?php
2
3/*
4 +-----------------------------------------------------------------------+
5 | program/steps/settings/save_prefs.inc                                 |
6 |                                                                       |
7 | This file is part of the RoundCube Webmail client                     |
8 | Copyright (C) 2005-2009, RoundCube Dev. - Switzerland                 |
9 | Licensed under the GNU GPL                                            |
10 |                                                                       |
11 | PURPOSE:                                                              |
12 |   Save user preferences to DB and to the current session              |
13 |                                                                       |
14 +-----------------------------------------------------------------------+
15 | Author: Thomas Bruederli <roundcube@gmail.com>                        |
16 +-----------------------------------------------------------------------+
17
18 $Id$
19
20*/
21
22$CURR_SECTION = get_input_value('_section', RCUBE_INPUT_POST);
23
24$a_user_prefs = array();
25
26// set options for specified section
27switch ($CURR_SECTION)
28{
29  case 'general':
30    $a_user_prefs = array(
31      'language'     => isset($_POST['_language']) ? get_input_value('_language', RCUBE_INPUT_POST) : $CONFIG['language'],
32      'timezone'     => isset($_POST['_timezone']) ? (is_numeric($_POST['_timezone']) ? floatval($_POST['_timezone']) : get_input_value('_timezone', RCUBE_INPUT_POST)) : $CONFIG['timezone'],
33      'dst_active'   => isset($_POST['_dst_active']) ? TRUE : FALSE,
34      'pagesize'     => is_numeric($_POST['_pagesize']) ? max(2, intval($_POST['_pagesize'])) : $CONFIG['pagesize'],
35      'prettydate'   => isset($_POST['_pretty_date']) ? TRUE : FALSE,
36      'skin'         => isset($_POST['_skin']) ? get_input_value('_skin', RCUBE_INPUT_POST) : $CONFIG['skin'],
37    );
38
39  break;
40  case 'mailbox':
41    $a_user_prefs = array(
42      'focus_on_new_message' => isset($_POST['_focus_on_new_message']) ? TRUE : FALSE,
43      'preview_pane'         => isset($_POST['_preview_pane']) ? TRUE : FALSE,
44      'preview_pane_mark_read' => isset($_POST['_preview_pane_mark_read']) ? intval($_POST['_preview_pane_mark_read']) : $CONFIG['preview_pane_mark_read'],
45      'autoexpand_threads'   => isset($_POST['_autoexpand_threads']) ? intval($_POST['_autoexpand_threads']) : 0,
46      'mdn_requests'         => isset($_POST['_mdn_requests']) ? intval($_POST['_mdn_requests']) : 0,
47      'keep_alive'           => isset($_POST['_keep_alive']) ? intval($_POST['_keep_alive'])*60 : $CONFIG['keep_alive'],
48      'check_all_folders'    => isset($_POST['_check_all_folders']) ? TRUE : FALSE,
49    );
50
51  break;
52  case 'mailview':
53    $a_user_prefs = array(
54      'prefer_html'     => isset($_POST['_prefer_html']) ? TRUE : FALSE,
55      'inline_images'   => isset($_POST['_inline_images']) ? TRUE : FALSE,
56      'show_images'     => isset($_POST['_show_images']) ? intval($_POST['_show_images']) : 0,
57      'display_next'    => isset($_POST['_display_next']) ? TRUE : FALSE,
58      'default_charset' => get_input_value('_default_charset', RCUBE_INPUT_POST),
59    );
60
61
62  break;
63  case 'compose':
64    $a_user_prefs = array(
65      'htmleditor'         => isset($_POST['_htmleditor']) ? TRUE : FALSE,
66      'draft_autosave'     => isset($_POST['_draft_autosave']) ? intval($_POST['_draft_autosave']) : 0,
67      'mime_param_folding' => isset($_POST['_mime_param_folding']) ? intval($_POST['_mime_param_folding']) : 0,
68      'force_7bit'         => isset($_POST['_force_7bit']) ? TRUE : FALSE,
69      'show_sig'           => isset($_POST['_show_sig']) ? intval($_POST['_show_sig']) : 1,
70      'top_posting'        => !empty($_POST['_top_posting']),
71      'strip_existing_sig' => isset($_POST['_strip_existing_sig']),
72      'sig_above'          => !empty($_POST['_sig_above']) && !empty($_POST['_top_posting']),
73    );
74
75  break;
76  case 'server':
77    $a_user_prefs = array(
78      'read_when_deleted' => isset($_POST['_read_when_deleted']) ? TRUE : FALSE,
79      'skip_deleted'      => isset($_POST['_skip_deleted']) ? TRUE : FALSE,
80      'flag_for_deletion' => isset($_POST['_flag_for_deletion']) ? TRUE : FALSE,
81      'delete_always'     => isset($_POST['_delete_always']) ? TRUE : FALSE,
82      'logout_purge'      => isset($_POST['_logout_purge']) ? TRUE : FALSE,
83      'logout_expunge'    => isset($_POST['_logout_expunge']) ? TRUE : FALSE,
84    );
85
86  break;
87  case 'folders':
88    $a_user_prefs = array(
89      'drafts_mbox' => get_input_value('_drafts_mbox', RCUBE_INPUT_POST),
90      'sent_mbox'   => get_input_value('_sent_mbox', RCUBE_INPUT_POST),
91      'junk_mbox'   => get_input_value('_junk_mbox', RCUBE_INPUT_POST),
92      'trash_mbox'  => get_input_value('_trash_mbox', RCUBE_INPUT_POST),
93    );
94
95  break;
96}
97
98$data = rcmail::get_instance()->plugins->exec_hook('preferences_save',
99  array('prefs' => $a_user_prefs, 'section' => $CURR_SECTION));
100
101$a_user_prefs = $data['prefs'];
102
103// don't override these parameters
104foreach ((array)$CONFIG['dont_override'] as $p)
105  $a_user_prefs[$p] = $CONFIG[$p];
106
107
108// verify some options
109switch ($CURR_SECTION)
110{
111  case 'general':
112
113    // switch UI language
114    if (isset($_POST['_language']) && $a_user_prefs['language'] != $_SESSION['language']) {
115      $RCMAIL->load_language($a_user_prefs['language']);
116      $OUTPUT->command('reload', 500);
117    }
118
119    // switch skin
120    $OUTPUT->set_skin($a_user_prefs['skin']);
121
122    // force min size
123    if ($a_user_prefs['pagesize'] < 1)
124      $a_user_prefs['pagesize'] = 10;
125
126    if (isset($CONFIG['max_pagesize']) && ($a_user_prefs['pagesize'] > $CONFIG['max_pagesize']))
127      $a_user_prefs['pagesize'] = (int) $CONFIG['max_pagesize'];
128
129  break;
130  case 'mailbox':
131
132    // force keep_alive
133    if (isset($a_user_prefs['keep_alive'])) {
134      $a_user_prefs['keep_alive'] = max(60, $CONFIG['min_keep_alive'], $a_user_prefs['keep_alive']);
135      if (!empty($CONFIG['session_lifetime']))
136        $a_user_prefs['keep_alive'] = min($CONFIG['session_lifetime']*60, $a_user_prefs['keep_alive']);
137    }
138
139  break;
140  case 'folders':
141
142    // special handling for 'default_imap_folders'
143    if (in_array('default_imap_folders', (array)$CONFIG['dont_override'])) {
144      foreach (array('drafts_mbox','sent_mbox','junk_mbox','trash_mbox') as $p)
145        $a_user_prefs[$p] = $CONFIG[$p];
146    } else {
147      $a_user_prefs['default_imap_folders'] = array('INBOX');
148      foreach (array('drafts_mbox','sent_mbox','junk_mbox','trash_mbox') as $p) {
149        if ($a_user_prefs[$p])
150          $a_user_prefs['default_imap_folders'][] = $a_user_prefs[$p];
151      }
152    }
153 
154  break;
155}
156
157if ($USER->save_prefs($a_user_prefs))
158  $OUTPUT->show_message('successfullysaved', 'confirmation');
159
160// display the form again
161rcmail_overwrite_action('edit-prefs');
162
163
Note: See TracBrowser for help on using the repository browser.