Your IP : 216.73.216.240
<?php
/**
* @package Helix Framework
* @author JoomShaper http://www.joomshaper.com
* @copyright Copyright (c) 2010 - 2014 JoomShaper
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later
*/
//no direct accees
defined ('_JEXEC') or die('resticted aceess');
//[alert]
if(!function_exists('alert_sc')){
function alert_sc($atts, $content=''){
extract(shortcode_atts(array(
"type" => '',
"style" =>'',
"close" => true
), $atts));
return '<div class="alert alert-' . $type . ' fade in" . style=' . $style . '><button type="button" class="close" data-dismiss="alert">×</button><div>' . do_shortcode( $content ) . '</div></div>';
}
add_shortcode('alert','alert_sc');
}