1 |
1566
|
Luisehahne
|
<?php
|
2 |
|
|
/**
|
3 |
|
|
*
|
4 |
|
|
* @category frontend
|
5 |
|
|
* @package account
|
6 |
1728
|
Luisehahne
|
* @author Ryan Djurovich,WebsiteBaker Project
|
7 |
|
|
* @copyright 2009-2012, WebsiteBaker Org. e.V.
|
8 |
1566
|
Luisehahne
|
* @link http://www.websitebaker2.org/
|
9 |
|
|
* @license http://www.gnu.org/licenses/gpl.html
|
10 |
|
|
* @platform WebsiteBaker 2.8.x
|
11 |
|
|
* @requirements PHP 5.2.2 and higher
|
12 |
|
|
* @version $Id$
|
13 |
|
|
* @filesource $HeadURL$
|
14 |
|
|
* @lastmodified $Date$
|
15 |
|
|
*
|
16 |
|
|
*/
|
17 |
|
|
|
18 |
1792
|
Luisehahne
|
// Include config file
|
19 |
|
|
$config_file = realpath('../config.php');
|
20 |
|
|
if(file_exists($config_file) && !defined('WB_URL'))
|
21 |
|
|
{
|
22 |
|
|
require_once($config_file);
|
23 |
|
|
}
|
24 |
1566
|
Luisehahne
|
|
25 |
1792
|
Luisehahne
|
if(!class_exists('frontend', false)){ include(WB_PATH.'/framework/class.frontend.php'); }
|
26 |
1566
|
Luisehahne
|
|
27 |
1792
|
Luisehahne
|
require_once(WB_PATH.'/framework/functions.php');
|
28 |
|
|
|
29 |
|
|
$wb = new frontend(false);
|
30 |
|
|
|
31 |
|
|
$page_id = defined('REFERRER_ID') ? REFERRER_ID : isset($_SESSION['PAGE_ID']) ? $_SESSION['PAGE_ID'] : PAGE_ID;
|
32 |
|
|
|
33 |
1566
|
Luisehahne
|
// Required page details
|
34 |
|
|
$page_description = '';
|
35 |
|
|
$page_keywords = '';
|
36 |
1792
|
Luisehahne
|
// Work out level
|
37 |
|
|
$level = ($page_id > 0 )? level_count($page_id): $page_id;
|
38 |
|
|
// Work out root parent
|
39 |
|
|
$root_parent = ($page_id > 0 )? root_parent($page_id): $page_id;
|
40 |
|
|
|
41 |
1566
|
Luisehahne
|
define('PAGE_ID', $page_id);
|
42 |
1792
|
Luisehahne
|
define('ROOT_PARENT', $root_parent);
|
43 |
1566
|
Luisehahne
|
define('PARENT', 0);
|
44 |
1792
|
Luisehahne
|
define('LEVEL', $level);
|
45 |
|
|
|
46 |
1566
|
Luisehahne
|
define('PAGE_TITLE', $MENU['FORGOT']);
|
47 |
|
|
define('MENU_TITLE', $MENU['FORGOT']);
|
48 |
|
|
define('VISIBILITY', 'public');
|
49 |
|
|
|
50 |
|
|
if(!FRONTEND_LOGIN) {
|
51 |
|
|
if(INTRO_PAGE) {
|
52 |
|
|
header('Location: '.WB_URL.PAGES_DIRECTORY.'/index.php');
|
53 |
|
|
exit(0);
|
54 |
|
|
} else {
|
55 |
|
|
header('Location: '.WB_URL.'/index.php');
|
56 |
|
|
exit(0);
|
57 |
|
|
}
|
58 |
|
|
}
|
59 |
|
|
|
60 |
|
|
// Set the page content include file
|
61 |
|
|
define('PAGE_CONTENT', WB_PATH.'/account/forgot_form.php');
|
62 |
|
|
|
63 |
|
|
// Set auto authentication to false
|
64 |
|
|
$auto_auth = false;
|
65 |
|
|
|
66 |
|
|
// Include the index (wrapper) file
|
67 |
|
|
require(WB_PATH.'/index.php');
|