osCommerce / oscommerce

osCommerce Online Merchant v3.x

This URL has Read+Write access

santssoft (author)
Thu Apr 02 01:19:32 -0700 2009
haraldpdl (committer)
Thu Apr 02 07:18:55 -0700 2009
oscommerce / checkout.php
100644 31 lines (20 sloc) 0.765 kb
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
<?php
/*
$Id$
 
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
 
Copyright (c) 2006 osCommerce
 
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License v2 (1991)
as published by the Free Software Foundation.
*/
 
  $_SERVER['SCRIPT_FILENAME'] = __FILE__;
 
  require('includes/application_top.php');
 
  $osC_Language->load('checkout');
 
  if ($osC_Services->isStarted('breadcrumb')) {
    $osC_Breadcrumb->add($osC_Language->get('breadcrumb_checkout'), osc_href_link(FILENAME_CHECKOUT, null, 'SSL'));
  }
 
  $osC_Template = osC_Template::setup('cart');
 
  require('templates/' . $osC_Template->getCode() . '.php');
 
  require('includes/application_bottom.php');
?>