'',
'class' =>'',
'title' =>'',
'background_color' =>'',
'border_radius' =>'',
'trigger' =>'click',
'placement' =>'top',
), $args
);
extract( $defaults );
self::$args = $defaults;
if(is_numeric($border_radius))
$border_radius = $border_radius.'px';
$addclass = uniqid("tooltip-");
$class .= ' '.$addclass;
$html = '';
if($background_color !== '')
$html .= '';
$html .= sprintf('%s',$class,$id,$trigger,$placement,$title,do_shortcode( Magee_Core::fix_shortcodes($content)));
return $html;
}
}
new Magee_Tooltip();
endif;