| 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 |
|---|
| 36 | foreach ((array)$CONFIG['dont_override'] as $p) |
|---|
| 37 | $a_user_prefs[$p] = $CONFIG[$p]; |
|---|
| 38 | |
|---|
| 39 | |
|---|
| 40 | // switch UI language |
|---|
| 41 | if (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 |
|---|
| 48 | if ($a_user_prefs['pagesize'] < 1) |
|---|
| 49 | $a_user_prefs['pagesize'] = 10; |
|---|
| 50 | |
|---|
| 51 | if (isset($CONFIG['max_pagesize']) && ($a_user_prefs['pagesize'] > $CONFIG['max_pagesize'])) |
|---|
| 52 | $a_user_prefs['pagesize'] = (int) $CONFIG['max_pagesize']; |
|---|
| 53 | |
|---|
| 54 | if ($USER->save_prefs($a_user_prefs)) |
|---|
| 55 | $OUTPUT->show_message('successfullysaved', 'confirmation'); |
|---|
| 56 | |
|---|
| 57 | |
|---|
| 58 | // go to next step |
|---|
| 59 | rcmail_overwrite_action('preferences'); |
|---|
| 60 | |
|---|
| 61 | ?> |
|---|