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

HEADcourier-fixdev-browser-capabilitiespdorelease-0.6release-0.7release-0.8
Last change on this file since fba1f5a was fba1f5a, checked in by thomascube <thomas@…>, 5 years ago

New class rcube_user + send message disposition notification

  • Property mode set to 100644
File size: 2.3 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  'draft_autosave' => isset($_POST['_draft_autosave']) ? intval($_POST['_draft_autosave']) : 0
31  );
32
33// don't override these parameters
34foreach ((array)$CONFIG['dont_override'] as $p)
35  $a_user_prefs[$p] = $CONFIG[$p];
36
37
38// switch UI language
39if (isset($_POST['_language']))
40  {
41  $sess_user_lang = $_SESSION['user_lang'] = get_input_value('_language', RCUBE_INPUT_POST);
42  rcmail_set_locale($sess_user_lang);
43  }
44
45// force min size
46if ($a_user_prefs['pagesize'] < 1)
47  $a_user_prefs['pagesize'] = 10;
48
49if (isset($CONFIG['max_pagesize']) && ($a_user_prefs['pagesize'] > $CONFIG['max_pagesize']))
50  $a_user_prefs['pagesize'] = (int) $CONFIG['max_pagesize'];
51
52if ($USER->save_prefs($a_user_prefs))
53  $OUTPUT->show_message('successfullysaved', 'confirmation');
54
55
56// go to next step
57rcmail_overwrite_action('preferences');
58
59?>
Note: See TracBrowser for help on using the repository browser.