Your IP : 216.73.216.229


Current Path : /home/jeromecohp/www/templates/yootheme/html/mod_custom/
Upload File :
Current File : /home/jeromecohp/www/templates/yootheme/html/mod_custom/default.php

<?php

use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Plugin\PluginHelper;

defined('_JEXEC') or die;

if ($params->def('prepare_content', 1)) {
    PluginHelper::importPlugin('content');
    $module->content = HTMLHelper::_('content.prepare', $module->content, '', 'mod_custom.content');
}

$image = $params->get('backgroundimage') ? HTMLHelper::_('image', $params->get('backgroundimage'), null, [], false, 1) : false;

?>

<?php if ($module->content) : ?>
<div class="uk-margin-remove-last-child custom" <?= $image ? " style=\"background-image:url({$image})\"" : '' ?>><?= $module->content ?></div>
<?php endif ?>