forked from gburton/CE-Phoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshopping_cart.php
More file actions
35 lines (24 loc) · 732 Bytes
/
shopping_cart.php
File metadata and controls
35 lines (24 loc) · 732 Bytes
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
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2018 osCommerce
Released under the GNU General Public License
*/
require("includes/application_top.php");
$page_content = $oscTemplate->getContent('shopping_cart');
require('includes/languages/' . $language . '/shopping_cart.php');
$breadcrumb->add(NAVBAR_TITLE, tep_href_link('shopping_cart.php'));
require('includes/template_top.php');
if ($messageStack->size('product_action') > 0) {
echo $messageStack->output('product_action');
}
?>
<div class="row">
<?php echo $page_content; ?>
</div>
<?php
require('includes/template_bottom.php');
require('includes/application_bottom.php');
?>