hpdl
|
74
|
1
|
<?php
|
|
2
|
/*
|
|
3
|
$Id: checkout.php 824 2006-08-29 11:09:15Z hpdl $
|
|
4
|
|
|
5
|
osCommerce, Open Source E-Commerce Solutions
|
|
6
|
http://www.oscommerce.com
|
|
7
|
|
hpdl
|
554
|
8
|
Copyright (c) 2006 osCommerce
|
hpdl
|
74
|
9
|
|
|
10
|
Released under the GNU General Public License
|
|
11
|
*/
|
|
12
|
|
hpdl
|
824
|
13
|
$_SERVER['SCRIPT_FILENAME'] = __FILE__;
|
|
14
|
|
hpdl
|
74
|
15
|
require('includes/application_top.php');
|
|
16
|
|
hpdl
|
410
|
17
|
$osC_Language->load('checkout');
|
hpdl
|
74
|
18
|
|
|
19
|
if ($osC_Services->isStarted('breadcrumb')) {
|
hpdl
|
754
|
20
|
$breadcrumb->add($osC_Language->get('breadcrumb_checkout'), osc_href_link(FILENAME_CHECKOUT, null, 'SSL'));
|
hpdl
|
74
|
21
|
}
|
|
22
|
|
hpdl
|
370
|
23
|
$osC_Template = osC_Template::setup('cart');
|
hpdl
|
74
|
24
|
|
hpdl
|
370
|
25
|
require('templates/' . $osC_Template->getCode() . '.php');
|
hpdl
|
110
|
26
|
|
hpdl
|
74
|
27
|
require('includes/application_bottom.php');
|
|
28
|
?>
|