-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout_shipping_address.php
76 lines (63 loc) · 2.93 KB
/
checkout_shipping_address.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/* --------------------------------------------------------------
checkout_shipping_address.php 2014-02-24 gm
Gambio GmbH
http://www.gambio.de
Copyright (c) 2014 Gambio GmbH
Released under the GNU General Public License (Version 2)
[http://www.gnu.org/licenses/gpl-2.0.html]
--------------------------------------------------------------
based on:
(c) 2000-2001 The Exchange Project (earlier name of osCommerce)
(c) 2002-2003 osCommerce(checkout_shipping_address.php,v 1.14 2003/05/27); www.oscommerce.com
(c) 2003 nextcommerce (checkout_shipping_address.php,v 1.14 2003/08/17); www.nextcommerce.org
(c) 2003 XT-Commerce - community made shopping http://www.xt-commerce.com ($Id: checkout_shipping_address.php 867 2005-04-21 18:35:29Z mz $)
Released under the GNU General Public License
--------------------------------------------------------------------------------------- */
require_once('includes/application_top.php');
// if the customer is not logged on, redirect them to the login page
if(isset($_SESSION['customer_id']) === false)
{
xtc_redirect(xtc_href_link(FILENAME_LOGIN, '', 'SSL'));
}
$GLOBALS['breadcrumb']->add(NAVBAR_TITLE_1_CHECKOUT_SHIPPING_ADDRESS, xtc_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'));
$GLOBALS['breadcrumb']->add(NAVBAR_TITLE_2_CHECKOUT_SHIPPING_ADDRESS, xtc_href_link(FILENAME_CHECKOUT_SHIPPING_ADDRESS, '', 'SSL'));
$coo_checkout_address_control = MainFactory::create_object('CheckoutAddressContentControl');
$coo_checkout_address_control->set_data('GET', $_GET);
$coo_checkout_address_control->set_data('POST', $_POST);
$coo_checkout_address_control->set_('page_type', 'shipping');
$coo_checkout_address_control->set_('customer_id', $_SESSION['customer_id']);
if(isset($GLOBALS['order']) === false)
{
$GLOBALS['order'] = new order();
}
$coo_checkout_address_control->set_('coo_order', $GLOBALS['order']);
$coo_checkout_address_control->proceed();
$t_redirect_url = $coo_checkout_address_control->get_redirect_url();
if(empty($t_redirect_url) == false)
{
xtc_redirect($t_redirect_url);
}
else
{
$t_main_content = $coo_checkout_address_control->get_response();
}
$coo_layout_control = MainFactory::create_object('LayoutContentControl');
$coo_layout_control->set_data('GET', $_GET);
$coo_layout_control->set_data('POST', $_POST);
$coo_layout_control->set_('coo_breadcrumb', $GLOBALS['breadcrumb']);
$coo_layout_control->set_('coo_product', $GLOBALS['product']);
$coo_layout_control->set_('coo_xtc_price', $GLOBALS['xtPrice']);
$coo_layout_control->set_('c_path', $GLOBALS['cPath']);
$coo_layout_control->set_('main_content', $t_main_content);
$coo_layout_control->set_('request_type', $GLOBALS['request_type']);
$coo_layout_control->proceed();
$t_redirect_url = $coo_layout_control->get_redirect_url();
if(empty($t_redirect_url) === false)
{
xtc_redirect($t_redirect_url);
}
else
{
echo $coo_layout_control->get_response();
}