File: /home/clinicamaciel/www/index_lixo/wp-content/plugins/cherry-plugin/includes/shortcodes/alert.php
<?php
/**
* Alert boxes
*/
if (!function_exists('shortcode_alert_box')) {
function shortcode_alert_box( $atts, $content = null, $shortcodename = '' ) {
extract(shortcode_atts(
array(
'style' => '',
'close' => '',
'custom_class' => ''
), $atts));
$output = '<div class="alert alert-'.$style.' fade in '.$custom_class.'">';
if ($close == 'yes') {
$output .= '<button type="button" class="close" data-dismiss="alert">×</button>';
}
$output .= $content;
$output .= '</div>';
$output = apply_filters( 'cherry_plugin_shortcode_output', $output, $atts, $shortcodename );
return $output;
}
add_shortcode('alert_box', 'shortcode_alert_box');
}
?>