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: login.php 1728 2012-08-30 14:21:31Z Luisehahne $
13
 * @filesource		$HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/account/login.php $
14
 * @lastmodified    $Date: 2012-08-30 16:21:31 +0200 (Thu, 30 Aug 2012) $
15
 *
16
 */
17

    
18
require_once("../config.php");
19

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

    
31
$page_id = !empty($_SESSION['PAGE_ID']) ? $_SESSION['PAGE_ID'] : 0;
32

    
33
// Required page details
34
// $page_id = 0;
35
$page_description = '';
36
$page_keywords = '';
37
define('PAGE_ID', $page_id);
38
define('ROOT_PARENT', 0);
39
define('PARENT', 0);
40
define('LEVEL', 0);
41
define('PAGE_TITLE', $TEXT['PLEASE_LOGIN']);
42
define('MENU_TITLE', $TEXT['PLEASE_LOGIN']);
43
define('VISIBILITY', 'public');
44
// Set the page content include file
45
define('PAGE_CONTENT', WB_PATH.'/account/login_form.php');
46

    
47
require_once(WB_PATH.'/framework/class.login.php');
48
require_once(WB_PATH.'/framework/class.frontend.php');
49

    
50
// Create new frontend object
51
$wb = new frontend();
52

    
53
// Create new login app
54
$requestMethod = '_'.strtoupper($_SERVER['REQUEST_METHOD']);
55
$redirect  = strip_tags(isset(${$requestMethod}['redirect']) ? ${$requestMethod}['redirect'] : '');
56
//$redirect = ( (empty($redirect)) ?  $_SERVER['HTTP_REFERER'] : $redirect);
57
$_SESSION['HTTP_REFERER'] = str_replace(WB_URL,'',$redirect);
58

    
59
$loginUrl  = WB_URL.'/account/login.php';
60
$loginUrl .= (!empty($redirect) ? '?redirect=' .$_SESSION['HTTP_REFERER'] : '');
61

    
62
//print '<pre style="text-align: left;"><strong>function '.__FUNCTION__.'( '.''.' );</strong>  basename: '.basename(__FILE__).'  line: '.__LINE__.' -> <br />';
63
//print_r( $redirect ); print '</pre>';
64

    
65
$ThemeUrl  = WB_URL.$wb->correct_theme_source('warning.html');
66
// Setup template object, parse vars to it, then parse it
67
$ThemePath = realpath(WB_PATH.$wb->correct_theme_source('loginBox.htt'));
68

    
69
$thisApp = new Login(
70
				array(
71
						"MAX_ATTEMPS" => "3",
72
						"WARNING_URL" => $ThemeUrl."/warning.html",
73
						"USERNAME_FIELDNAME" => 'username',
74
						"PASSWORD_FIELDNAME" => 'password',
75
						"REMEMBER_ME_OPTION" => SMART_LOGIN,
76
						"MIN_USERNAME_LEN" => "2",
77
						"MIN_PASSWORD_LEN" => "2",
78
						"MAX_USERNAME_LEN" => "30",
79
						"MAX_PASSWORD_LEN" => "30",
80
						"LOGIN_URL" => $loginUrl,
81
						"DEFAULT_URL" => WB_URL."/index.php",
82
						"TEMPLATE_DIR" => $ThemePath,
83
						"TEMPLATE_FILE" => "login.htt",
84
						"FRONTEND" => true,
85
						"FORGOTTEN_DETAILS_APP" => WB_URL."/account/forgot.php",
86
						"USERS_TABLE" => TABLE_PREFIX."users",
87
						"GROUPS_TABLE" => TABLE_PREFIX."groups",
88
						"REDIRECT_URL" => $redirect
89
				)
90
		);
91

    
92
// Set extra outsider var
93
$globals[] = 'thisApp';
94

    
95
// Include the index (wrapper) file
96
require(WB_PATH.'/index.php');
(12-12/22)