<?php
/**
- @package Joomla.Site
- @subpackage mod_custom
- @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
- @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// no direct access
defined('_JEXEC') or die;
?>
<?php $moduleclass_sfx_str = ($moduleclass_sfx == NULL)? "" : $moduleclass_sfx;
if(str_contains($moduleclass_sfx_str, 'clear') == FALSE ) : ?>
<div class="custom <?php echo $moduleclass_sfx; ?>">
<?php endif; ?>
<?php echo $module->content;?>
<?php if(str_contains($moduleclass_sfx_str, 'clear') == FALSE ) : ?>
</div>
<?php endif; ?>