steveosoule
8/28/2013 - 3:07 PM

PHP Bootstrap Alert Helper Function

PHP Bootstrap Alert Helper Function

<?
// @type: string - [success, info, warning, danger]
// @message: string - content of alert
// @dismisable: boolean
// returns alert HTML
function html_alert($type, $message, $dismisable){
	$alert = '';
  $alert_class = 'alert';

	if ( $type ) $alert_class += ' alert-'.$type;
	if ( $dismisable ) $alert_class += ' alert-dismissable';

	$alert = '<div class="'.$alert_class.'">'.$message.'</div>';

	return $alert;
}
?>