Project

General

Profile

« Previous | Next » 

Revision 1289

Added by kweitzel over 14 years ago

Branch 2.8.1 merged back into Trunk

View differences:

details.php
1
<?php
2

  
3
// $Id$
4

  
5
/*
6

  
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2009, 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
if(!defined('WB_URL')) {
27
	header('Location: ../pages/index.php');
28
	exit(0);
29
}
30

  
31
// Get entered values
32
$display_name = $wb->add_slashes(strip_tags($wb->get_post('display_name')));
33
$language = $wb->get_post_escaped('language');
34
$timezone = $wb->get_post_escaped('timezone')*60*60;
35
$date_format = $wb->get_post_escaped('date_format');
36
$time_format = $wb->get_post_escaped('time_format');
37

  
38
// Create a javascript back link
39
$js_back = "javascript: history.go(-1);";
40

  
41
// Update the database
42
$database = new database();
43
$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 = '".$wb->get_user_id()."'";
44
$database->query($query);
45
if($database->is_error()) {
46
	$wb->print_error($database->get_error,'index.php',false);
47
} else {
48
	$wb->print_success($MESSAGE['PREFERENCES']['DETAILS_SAVED'], WB_URL.'/account/preferences.php');
49
	$_SESSION['DISPLAY_NAME'] = $display_name;
50
	$_SESSION['LANGUAGE'] = $language;
51
	$_SESSION['TIMEZONE'] = $timezone;
52
	// Update date format
53
	if($date_format != '') {
54
		$_SESSION['DATE_FORMAT'] = $date_format;
55
		if(isset($_SESSION['USE_DEFAULT_DATE_FORMAT'])) { unset($_SESSION['USE_DEFAULT_DATE_FORMAT']); }
56
	} else {
57
		$_SESSION['USE_DEFAULT_DATE_FORMAT'] = true;
58
		if(isset($_SESSION['DATE_FORMAT'])) { unset($_SESSION['DATE_FORMAT']); }
59
	}
60
	// Update time format
61
	if($time_format != '') {
62
		$_SESSION['TIME_FORMAT'] = $time_format;
63
		if(isset($_SESSION['USE_DEFAULT_TIME_FORMAT'])) { unset($_SESSION['USE_DEFAULT_TIME_FORMAT']); }
64
	} else {
65
		$_SESSION['USE_DEFAULT_TIME_FORMAT'] = true;
66
		if(isset($_SESSION['TIME_FORMAT'])) { unset($_SESSION['TIME_FORMAT']); }
67
	}
68
}
69

  
1
<?php

2
/**
3
 *

4
 * @category        frontend
5
 * @package         account

6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich

8
 * @copyright       2009-2010, Website Baker Org. e.V.

9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html

11
 * @platform        WebsiteBaker 2.8.x

12
 * @requirements    PHP 4.3.4 and higher

13
 * @version         $Id$

14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$

16
 *

17
 */

18

  
19
if(!defined('WB_URL')) {
20
	header('Location: ../pages/index.php');

21
	exit(0);

22
}

23

  
24
// Get entered values

25
$display_name = $wb->add_slashes(strip_tags($wb->get_post('display_name')));
26
$language = $wb->get_post_escaped('language');

27
$timezone = $wb->get_post_escaped('timezone')*60*60;

28
$date_format = $wb->get_post_escaped('date_format');

29
$time_format = $wb->get_post_escaped('time_format');

30

  
31
// Create a javascript back link

32
$js_back = "javascript: history.go(-1);";

33

  
34
// Update the database

35
$database = new database();

36
$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 = '".$wb->get_user_id()."'";

37
$database->query($query);
38
if($database->is_error()) {

39
	$wb->print_error($database->get_error,'index.php',false);

40
} else {
41
	$wb->print_success($MESSAGE['PREFERENCES']['DETAILS_SAVED'], WB_URL.'/account/preferences.php');

42
	$_SESSION['DISPLAY_NAME'] = $display_name;

43
	$_SESSION['LANGUAGE'] = $language;

44
	// Update date format

45
	if($date_format != '') {

46
		$_SESSION['DATE_FORMAT'] = $date_format;

47
		if(isset($_SESSION['USE_DEFAULT_DATE_FORMAT'])) { unset($_SESSION['USE_DEFAULT_DATE_FORMAT']); }

48
	} else {

49
		$_SESSION['USE_DEFAULT_DATE_FORMAT'] = true;

50
		if(isset($_SESSION['DATE_FORMAT'])) { unset($_SESSION['DATE_FORMAT']); }

51
	}

52
	// Update time format

53
	if($time_format != '') {

54
		$_SESSION['TIME_FORMAT'] = $time_format;

55
		if(isset($_SESSION['USE_DEFAULT_TIME_FORMAT'])) { unset($_SESSION['USE_DEFAULT_TIME_FORMAT']); }

56
	} else {

57
		$_SESSION['USE_DEFAULT_TIME_FORMAT'] = true;

58
		if(isset($_SESSION['TIME_FORMAT'])) { unset($_SESSION['TIME_FORMAT']); }

59
	}

60
	// Update timezone

61
	if($timezone != '-72000') {

62
		$_SESSION['TIMEZONE'] = $timezone;

63
		if(isset($_SESSION['USE_DEFAULT_TIMEZONE'])) { unset($_SESSION['USE_DEFAULT_TIMEZONE']); }

64
	} else {

65
		$_SESSION['USE_DEFAULT_TIMEZONE'] = true;

66
		if(isset($_SESSION['TIMEZONE'])) { unset($_SESSION['TIMEZONE']); }

67
	}

68
}

69

  
70 70
?>
71 71

  

Also available in: Unified diff