| Current Path : /home/bijouxly/www/templates/bijouxlyv201611/prototypes/ |
| Current File : /home/bijouxly/www/templates/bijouxlyv201611/prototypes/funcWarningMessage.php |
<?php
function funcWarningMessage($msg) {
ob_start();
$document = JFactory::getDocument();
?>
<div class=" bd-warningmessage-1 alert alert-warning">
<button type="button" class="close" data-dismiss="alert">×</button>
<span><?php echo $msg; ?></span>
</div>
<?php
return ob_get_clean();
}