t("Social Share")); } static function get($block_id, $theme) { $block = new Block(); $block->css_id = "g-social-share"; $block->title = 'Share With Friends'; $block->content = ''; if(module::get_var("social_share", "facebook_share_enabled")){ $block->content .= new View("facebook_share.html"); } if(module::get_var("social_share", "facebook_like_enabled")){ $block->content .= new View("facebook_like.html"); } if(module::get_var("social_share", "google_enabled")){ $block->content .= new View("google.html"); } if(module::get_var("social_share", "twitter_enabled")){ $block->content .= new View("twitter.html"); } return $block; } }