1 |
1473
|
Luisehahne
|
<?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$
|
14 |
|
|
* @filesource $HeadURL$
|
15 |
|
|
* @lastmodified $Date$
|
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 |
1508
|
Luisehahne
|
require_once(WB_PATH.'/framework/class.frontend.php');
|
32 |
1473
|
Luisehahne
|
$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 |
1508
|
Luisehahne
|
$page_id = !empty($_SESSION['PAGE_ID']) ? $_SESSION['PAGE_ID'] : 0;
|
39 |
|
|
|
40 |
1473
|
Luisehahne
|
// Required page details
|
41 |
1508
|
Luisehahne
|
/* */
|
42 |
|
|
// $page_id = 0;
|
43 |
1473
|
Luisehahne
|
$page_description = '';
|
44 |
|
|
$page_keywords = '';
|
45 |
1508
|
Luisehahne
|
define('PAGE_ID', $page_id);
|
46 |
1473
|
Luisehahne
|
define('ROOT_PARENT', 0);
|
47 |
|
|
define('PARENT', 0);
|
48 |
|
|
define('LEVEL', 0);
|
49 |
1508
|
Luisehahne
|
|
50 |
1473
|
Luisehahne
|
define('PAGE_TITLE', $MENU['PREFERENCES']);
|
51 |
|
|
define('MENU_TITLE', $MENU['PREFERENCES']);
|
52 |
|
|
define('MODULE', '');
|
53 |
|
|
define('VISIBILITY', 'public');
|
54 |
|
|
|
55 |
1508
|
Luisehahne
|
define('PAGE_CONTENT', WB_PATH.'/account/preferences_form.php');
|
56 |
1473
|
Luisehahne
|
// Include the index (wrapper) file
|
57 |
|
|
require(WB_PATH.'/index.php');
|