| Current Path : /home/bijouxly/www/templates/bijouxlyv201611/includes/ |
| Current File : /home/bijouxly/www/templates/bijouxlyv201611/includes/joomlaposition_block_15.php |
<?php
function joomlaposition_block_15($caption, $content, $classes = '', $id = '', $extraClass = '')
{
$hasCaption = (null !== $caption && strlen(trim($caption)) > 0);
$hasContent = (null !== $content && strlen(trim($content)) > 0);
$isPreview = $GLOBALS['theme_settings']['is_preview'];
if (!$hasCaption && !$hasContent)
return '';
if (!empty($id))
$id = $isPreview ? (' data-block-id="' . $id . '"') : '';
ob_start();
?>
<div class=" bd-block bd-own-margins <?php echo $classes; ?>" <?php echo $id; ?>>
<?php if ($hasCaption) : ?>
<div class=" bd-blockheader bd-tagstyles">
<h4><?php echo $caption; ?></h4>
</div>
<?php endif; ?>
<?php if ($hasContent) : ?>
<div class="bd-blockcontent bd-tagstyles<?php echo $extraClass;?>">
<?php echo funcPostprocessBlockContent($content); ?>
</div>
<?php endif; ?>
</div>
<?php
return ob_get_clean();
}