Your IP : 216.73.216.134


Current Path : /home/bijouxly/www/templates/themler2016x_160438/includes/
Upload File :
Current File : /home/bijouxly/www/templates/themler2016x_160438/includes/cartlink_3.php

<?php
function cartlink_3() {
    $view = JFactory::getDocument()->view;
    $modulesContains = $view->containsModules('cart');
    $isPreview  = $GLOBALS['theme_settings']['is_preview'];
    if (isset($GLOBALS['isModuleContentExists']) && false == $GLOBALS['isModuleContentExists'])
        $GLOBALS['isModuleContentExists'] = $view->containsModules('cart') ? true : false;
    ?>
    <?php if ($isPreview || $modulesContains) : ?>
        
        <div class=" bd-cartlink-3">
            <?php if ($modulesContains) : ?>
                
                <?php echo $view->position('cart', '', '3', 'cart'); ?>
                
            <?php else: ?>
                Please add a cart module in the 'cart' position
            <?php endif; ?>
        </div>
        
    <?php endif; ?>
<?php
}