Project

General

Profile

1
<?php
2
/**
3
 *
4
 * @category        frontend
5
 * @package         account
6
 * @author          Ryan Djurovich,WebsiteBaker Project
7
 * @copyright       2009-2012, WebsiteBaker Org. e.V.
8
 * @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: forgot.php 1844 2012-12-28 06:03:26Z Luisehahne $
13
 * @filesource		$HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/account/forgot.php $
14
 * @lastmodified    $Date: 2012-12-28 07:03:26 +0100 (Fri, 28 Dec 2012) $
15
 *
16
 */
17

    
18
// 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

    
25
if(!class_exists('frontend', false)){ include(WB_PATH.'/framework/class.frontend.php'); }
26

    
27
require_once(WB_PATH.'/framework/functions.php');
28

    
29
$wb = new frontend(false);
30

    
31
$page_id = defined('PAGE_ID') ? PAGE_ID : 0;
32
$page_id = defined('REFERRER_ID') ? REFERRER_ID : isset($_SESSION['PAGE_ID']) ? $_SESSION['PAGE_ID'] : $page_id;
33

    
34
// Required page details
35
$page_description = '';
36
$page_keywords = '';
37
// Work out level
38
$level = ($page_id > 0 )? level_count($page_id): $page_id;
39
// Work out root parent
40
$root_parent = ($page_id > 0 )? root_parent($page_id): $page_id;
41

    
42
define('PAGE_ID', $page_id);
43
define('ROOT_PARENT', $root_parent);
44
define('PARENT', 0);
45
define('LEVEL', $level);
46

    
47
define('PAGE_TITLE', $MENU['FORGOT']);
48
define('MENU_TITLE', $MENU['FORGOT']);
49
define('VISIBILITY', 'public');
50

    
51
if(!FRONTEND_LOGIN) {
52
	if(INTRO_PAGE) {
53
		header('Location: '.WB_URL.PAGES_DIRECTORY.'/index.php');
54
		exit(0);
55
	} else {
56
		header('Location: '.WB_URL.'/index.php');
57
		exit(0);
58
	}
59
}
60

    
61
// Set the page content include file
62
define('PAGE_CONTENT', WB_PATH.'/account/forgot_form.php');
63

    
64
// Set auto authentication to false
65
$auto_auth = false;
66

    
67
// Include the index (wrapper) file
68
require(WB_PATH.'/index.php');
(8-8/22)