Project

General

Profile

1
<?php
2

    
3
// $Id: details.php 10 2005-09-04 08:59:31Z ryan $
4

    
5
/*
6

    
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2005, Ryan Djurovich
9

    
10
 Website Baker is free software; you can redistribute it and/or modify
11
 it under the terms of the GNU General Public License as published by
12
 the Free Software Foundation; either version 2 of the License, or
13
 (at your option) any later version.
14

    
15
 Website Baker is distributed in the hope that it will be useful,
16
 but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 GNU General Public License for more details.
19

    
20
 You should have received a copy of the GNU General Public License
21
 along with Website Baker; if not, write to the Free Software
22
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23

    
24
*/
25

    
26
// Get entered values
27
$display_name = $admin->get_post('display_name');
28
$language = $admin->get_post('language');
29
$timezone = $admin->get_post('timezone')*60*60;
30
$date_format = $admin->get_post('date_format');
31
$time_format = $admin->get_post('time_format');
32

    
33
// Create a javascript back link
34
$js_back = "javascript: history.go(-1);";
35

    
36
// Update the database
37
$database = new database();
38
$query = "UPDATE ".TABLE_PREFIX."users SET display_name = '$display_name', language = '$language', timezone = '$timezone', date_format = '$date_format', time_format = '$time_format' WHERE user_id = '".$admin->get_user_id()."'";
39
$database->query($query);
40
if($database->is_error()) {
41
	$admin->print_error($database->get_error);
42
} else {
43
	$admin->print_success($MESSAGE['PREFERENCES']['DETAILS_SAVED'], WB_URL.'/account/preferences'.PAGE_EXTENSION);
44
	$_SESSION['DISPLAY_NAME'] = $display_name;
45
	$_SESSION['LANGUAGE'] = $language;
46
	$_SESSION['TIMEZONE'] = $timezone;
47
	// Update date format
48
	if($date_format != '') {
49
		$_SESSION['DATE_FORMAT'] = $date_format;
50
		if(isset($_SESSION['USE_DEFAULT_DATE_FORMAT'])) { unset($_SESSION['USE_DEFAULT_DATE_FORMAT']); }
51
	} else {
52
		$_SESSION['USE_DEFAULT_DATE_FORMAT'] = true;
53
		if(isset($_SESSION['DATE_FORMAT'])) { unset($_SESSION['DATE_FORMAT']); }
54
	}
55
	// Update time format
56
	if($time_format != '') {
57
		$_SESSION['TIME_FORMAT'] = $time_format;
58
		if(isset($_SESSION['USE_DEFAULT_TIME_FORMAT'])) { unset($_SESSION['USE_DEFAULT_TIME_FORMAT']); }
59
	} else {
60
		$_SESSION['USE_DEFAULT_TIME_FORMAT'] = true;
61
		if(isset($_SESSION['TIME_FORMAT'])) { unset($_SESSION['TIME_FORMAT']); }
62
	}
63
}
64

    
65
?>
(1-1/15)