'', 'class' =>'', 'icon' =>'', 'color' => '', 'size' => '', 'icon_box' => '', ), $args ); extract( $defaults ); self::$args = $defaults; if(is_numeric($size)) $size = $size.'px'; $html = ''; $css_style = ''; $uniqid = ' magee-fa-icon icon-boxed'; if( $size ) $css_style .= 'font-size:'.$size.';'; if( $icon_box == 'yes'){ $icon .= $uniqid; if( $color ) $css_style .= 'background:'.$color.';'; if( $icon != '') $html = sprintf('',$id,$class,$icon,$css_style); } else{ if( $color ) $css_style .= 'color:'.$color.';'; if( $icon != '') $html = sprintf('',$id,$class,$icon,$css_style); } return $html; } } new Magee_Icon(); endif;