source: subversion/trunk/roundcubemail/program/steps/settings/save_prefs.inc @ 1282

Last change on this file since 1282 was 1282, checked in by alec, 5 years ago

#1483863: empty trash and expunge inbox on logout

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.5 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-2007, 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$a_user_prefs = array(
23  'timezone'     => isset($_POST['_timezone']) ? floatval($_POST['_timezone']) : $CONFIG['timezone'],
24  'dst_active'   => isset($_POST['_dst_active']) ? TRUE : FALSE,
25  'pagesize'     => is_numeric($_POST['_pagesize']) ? intval($_POST['_pagesize']) : $CONFIG['pagesize'],
26  'prettydate'   => isset($_POST['_pretty_date']) ? TRUE : FALSE,
27  'prefer_html'  => isset($_POST['_prefer_html']) ? TRUE : FALSE,
28  'htmleditor'   => isset($_POST['_htmleditor']) ? TRUE : FALSE,
29  'preview_pane' => isset($_POST['_preview_pane']) ? TRUE : FALSE,
30  'logout_purge' => isset($_POST['_logout_purge']) ? TRUE : FALSE,
31  'logout_expunge' => isset($_POST['_logout_expunge']) ? TRUE : FALSE,
32  'draft_autosave' => isset($_POST['_draft_autosave']) ? intval($_POST['_draft_autosave']) : 0,
33  );
34
35// don't override these parameters
36foreach ((array)$CONFIG['dont_override'] as $p)
37  $a_user_prefs[$p] = $CONFIG[$p];
38
39
40// switch UI language
41if (isset($_POST['_language']))
42  {
43  $sess_user_lang = $_SESSION['user_lang'] = get_input_value('_language', RCUBE_INPUT_POST);
44  rcmail_set_locale($sess_user_lang);
45  }
46
47// force min size
48if ($a_user_prefs['pagesize'] < 1)
49  $a_user_prefs['pagesize'] = 10;
50
51if (isset($CONFIG['max_pagesize']) && ($a_user_prefs['pagesize'] > $CONFIG['max_pagesize']))
52  $a_user_prefs['pagesize'] = (int) $CONFIG['max_pagesize'];
53
54if ($USER->save_prefs($a_user_prefs))
55  $OUTPUT->show_message('successfullysaved', 'confirmation');
56
57
58// go to next step
59rcmail_overwrite_action('preferences');
60
61?>
Note: See TracBrowser for help on using the repository browser.