public function mostrar_redes() { $social = new Social(); // id="social" al div principal ?> <div> <div class="social"> <?php $social->button_gplus('standard'); ?> </div> <div class="social"> <?php $social->button_twitter_share('large'); ?> </div> <div class="social"> <?php $social->button_twitter_follow('codeando_org'); ?> </div> <div class="social"> <?php $social->button_fb_share(); ?> </div> </div> <?php }
public function display_content() { ?> <!--[if lt IE 7]> <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> <![endif]--> <!-- Add your site or application content here --> <p>Hello world! This is HTML5 Boilerplate.</p> <?php // Mostramos el boton de login de facebook self::login_fb(); // ######## Cargamos la clase social para los plugins relacionados con redes sociales ######### $social = new Social(); // Mostramos el boton de gplus $social->button_gplus(); // Mostramos el boton de twitter $social->button_twitter_share(); // Mostramos el boton de twitter seguir $social->button_twitter_follow(); // Mostramos el boton de facebook like $social->button_fb_like(); // Mostramos el boton de facebook share $social->button_fb_follow(); // Mostramos area de comentarios para facebook $social->button_fb_comment(); // Mostramos area para like a paginas $social->button_fb_page_like(); }