Your IP : 216.73.216.111


Current Path : /home/bateauecpx/www/modules/mod_j2store_cart/tmpl/
Upload File :
Current File : /home/bateauecpx/www/modules/mod_j2store_cart/tmpl/default.php

<?php
/*------------------------------------------------------------------------
# mod_j2store_cart - J2 Store Cart
# ------------------------------------------------------------------------
# author    Sasi varna kumar - Weblogicx India http://www.weblogicxindia.com
# copyright Copyright (C) 2014 - 19 Weblogicxindia.com. All Rights Reserved.
# @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# Websites: http://j2store.org
# Technical Support:  Forum - http://j2store.org/forum/index.html
-------------------------------------------------------------------------*/

// no direct access
defined('_JEXEC') or die('Restricted access');
$app = JFactory::getApplication();
require_once(JPATH_ADMINISTRATOR.'/components/com_j2store/helpers/j2store.php');
J2Store::utilities()->nocache();
$ajax = $app->getUserState('mod_j2store_mini_cart.isAjax');
$hide = false;
if($params->get('check_empty',0) && $list['product_count'] < 1) {
$hide = true;
}
$title = $params->get('cart_module_title', '');
?>

	<?php if(!$ajax): ?>
		<div class="j2store_cart_module_<?php echo $module->id; ?> <?php echo $moduleclass_sfx;?>">
	<?php endif; ?>
		<?php if(!$hide): ?>

			<h3 class="cart-module-title"><?php echo JText::_($title); ?></h3>
			<?php if($list['product_count'] > 0): ?>
				<span class="default_cart_module_text"><?php echo JText::sprintf('J2STORE_CART_TOTAL', $list['product_count'], $currency->format($list['total'])); ?></span>
			<?php else : ?>
					<?php echo JText::_('J2STORE_NO_ITEMS_IN_CART'); ?>
			<?php endif; ?>

			<div class="j2store-minicart-button">
			<?php if($link_type =='link'):?>
			<a class="link" href="<?php echo JRoute::_('index.php?option=com_j2store&view=carts');?>">
			<?php echo JText::_('J2STORE_VIEW_CART');?>
			</a>
			<?php else: ?>
			<input type="button" class="btn btn-primary button" onClick="window.location='<?php echo JRoute::_('index.php?option=com_j2store&view=carts');?>'"
			value="<?php echo JText::_('J2STORE_VIEW_CART');?>"
			/>
			<?php endif;?>
			</div>
		<?php endif; ?>
			<?php if(!$ajax):?>
				</div>
			<?php else: ?>
				<?php $app->setUserState('mod_j2store_mini_cart.isAjax', 0); ?>
			<?php endif; ?>