<?php
/**
* initialise and handle cart actions
* see {@link http://www.zen-cart.com/wiki/index.php/Developers_API_Tutorials#InitSystem wikitutorials} for more details.
*
* @package initSystem
* @copyright Copyright 2003-2005 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: init_cart_handler.php 4528 2006-09-16 01:12:14Z ajeh $
*/
if (!defined('IS_ADMIN_FLAG')) {
die('Illegal Access');
}
if (isset($_GET['action'])) {
/**
* redirect the customer to a friendly cookie-must-be-enabled page if cookies are disabled
*/
if ($session_started == false) {
zen_redirect(zen_href_link(FILENAME_COOKIE_USAGE));
}
if (DISPLAY_CART == 'true') {
$goto = FILENAME_SHOPPING_CART;
$parameters = array('action', 'cPath', 'products_id', 'pid', 'main_page');
} else {
$goto = $_GET['main_page'];
if ($_GET['action'] == 'buy_now') {
$parameters = array('action', 'products_id');
} else {
$parameters = array('action', 'pid', 'main_page');
}
}
/**
* require file containing code to handle default cart actions
*/
require(DIR_WS_INCLUDES . 'main_cart_actions.php');
}
?>