| Current Path : /home/bijouxly/www/templates/themler2016aa1/includes/ |
| Current File : /home/bijouxly/www/templates/themler2016aa1/includes/cartlink_8.php |
<?php
function cartlink_8() {
$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-8">
<?php if ($modulesContains) : ?>
<?php echo $view->position('cart', '', '8', 'cart'); ?>
<?php else: ?>
Please add a cart module in the 'cart' position
<?php endif; ?>
</div>
<?php endif; ?>
<?php
}