Your IP : 216.73.216.134


Current Path : /home/bijouxly/www/templates/bijouxlyv201610/editor/html/mod_virtuemart_cart/
Upload File :
Current File : /home/bijouxly/www/templates/bijouxlyv201610/editor/html/mod_virtuemart_cart/default.php

<?php
defined('_JEXEC') or die;
?>
<?php /*BEGIN_EDITOR_OPEN*/
$app = JFactory::getApplication('site');
$templateName = $app->getTemplate();

$ret = false;
$templateDir = JPATH_THEMES . '/' . $templateName;
$editorClass = $templateDir . '/app/' . 'Editor.php';

if (!$app->isAdmin() && file_exists($editorClass)) {
    require_once $templateDir . '/app/' . 'Editor.php';
    $ret = DesignerEditor::override($templateName, __FILE__);
}

if ($ret) {
    $editorDir = $templateName . '/editor';
    require($ret);
    return;
} else {
/*BEGIN_EDITOR_CLOSE*/ ?>
<?php
require_once dirname(dirname(dirname(__FILE__))) . DIRECTORY_SEPARATOR . 'functions.php';

preg_match('/<a[^>]*>(.*?)<\/a>/i', $data->cart_show, $tagParts);
$cartText = $tagParts[1];
preg_match('/href="(.*?)"/i', $data->cart_show, $hrefParts);
$cartHref = $hrefParts[1];
preg_match('/(.*?)<strong[^>]*>(.*?)<\/strong>/', $data->billTotal, $matches);
$totalLabel = $matches[1];
$totalPrice = $matches[2];
$parts = isset($attribs['drstyle']) ? explode('%', $attribs['drstyle']) : array();
$data->rawProducts = $cart->products;
?>
<?php if (count($parts) > 0 && 'block' === $parts[0]) : ?>
    <div data-cart-position="<?php echo $module->position; ?>" data-style="block" data-template="<?php echo JFactory::getApplication()->getTemplate(); ?>">
	<?php if ($show_product_list and $data->totalProduct): ?>
		<?php
    		$defaultTmplFile = JPATH_ROOT . '/modules/mod_virtuemart_cart/tmpl/default.php';
            $info = pathinfo(__FILE__);
            $file = $info['dirname'] . '/' . $info['filename']
                . '_block.' . $info['extension'];
            if (file_exists($file)) {
                include_once $file;
            } else if (file_exists($defaultTmplFile)) {
                include_once $defaultTmplFile;
            }
        ?>
	<?php else: ?>
		<?php echo $data->totalProductTxt; ?>
	<?php endif; ?>
	</div>
<?php else: ?>
    <?php
        $filePath = dirname(dirname(dirname(__FILE__))) . '/includes/cartlink';
        include($filePath . '/default_cartlink_' . $attribs['id'] . '.php');
    ?>
<?php endif ?>
<?php /*END_EDITOR_OPEN*/ } /*END_EDITOR_CLOSE*/ ?>