Project

General

Profile

1
<?php
2
/**
3
 *
4
 * @category        frontend
5
 * @package         account
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, 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 5.2.2 and higher
13
 * @version         $Id: preferences.php 1473 2011-07-09 00:40:50Z Luisehahne $
14
 * @filesource		$HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/account/preferences.php $
15
 * @lastmodified    $Date: 2011-07-09 02:40:50 +0200 (Sat, 09 Jul 2011) $
16
 *
17
 */
18

    
19
require_once('../config.php');
20

    
21
if(!FRONTEND_LOGIN) {
22
	if(INTRO_PAGE) {
23
		header('Location: '.WB_URL.PAGES_DIRECTORY.'/index.php');
24
		exit(0);
25
	} else {
26
		header('Location: '.WB_URL.'/index.php');
27
		exit(0);
28
	}
29
}
30

    
31
require_once(WB_PATH.'/framework/class.wb.php');
32
$wb_inst = new wb();
33
if ($wb_inst->is_authenticated()==false) {
34
	header('Location: '.WB_URL.'/account/login.php');
35
	exit(0);
36
}
37

    
38
// Required page details
39
$page_id = 0;
40
$page_description = '';
41
$page_keywords = '';
42
define('PAGE_ID', 0);
43
define('ROOT_PARENT', 0);
44
define('PARENT', 0);
45
define('LEVEL', 0);
46
define('PAGE_TITLE', $MENU['PREFERENCES']);
47
define('MENU_TITLE', $MENU['PREFERENCES']);
48
define('MODULE', '');
49
define('VISIBILITY', 'public');
50

    
51
// Set the page content include file
52
if(isset($_POST['current_password']) AND isset($_POST['new_password'])) {
53
	define('PAGE_CONTENT', WB_PATH.'/account/password.php');
54
} elseif(isset($_POST['current_password']) AND isset($_POST['email'])) {
55
	define('PAGE_CONTENT', WB_PATH.'/account/email.php');
56
} elseif(isset($_POST['display_name'])) {
57
	define('PAGE_CONTENT', WB_PATH.'/account/details.php');
58
} else {
59
	define('PAGE_CONTENT', WB_PATH.'/account/preferences_form.php');
60
}
61

    
62
// Include the index (wrapper) file
63
require(WB_PATH.'/index.php');
(10-10/14)