msgStyle
Copy Below Code
View As A Text File
Show Text Only
Show API
Edit Code
function msgStyle($text = '', $msgType = 's')
{
if ($msgType == 's') {
$msgType = 'success';
} else if ($msgType == 'e') {
$msgType = 'danger';
} else if ($msgType == 'w') {
$msgType = 'warning';
} else if ($msgType == 'i') {
$msgType = 'info';
} else {
$msgType = 'success';
}
if ($text != '') {
return '<div class="alert alert-' . $msgType . ' alert-dismissible fade in" role="alert"><button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button> ' . $text . '</div>';
}
}