Your IP : 216.73.216.134


Current Path : /home/bijouxly/www/templates/themler2016u_160433/editor/prototypes/
Upload File :
Current File : /home/bijouxly/www/templates/themler2016u_160433/editor/prototypes/funcWarningMessage.php

<?php
function funcWarningMessage($msg) {
    ob_start();
    $document = JFactory::getDocument();
    ?>
    <div class="data-control-id-2673 bd-warningmessage-1 alert alert-warning">
        <button type="button" class="close" data-dismiss="alert">&times;</button>
        <span><?php echo $msg; ?></span>
    </div>
    <?php
    return ob_get_clean();
}