本文整理汇总了PHP中Social::button_twitter_follow方法的典型用法代码示例。如果您正苦于以下问题:PHP Social::button_twitter_follow方法的具体用法?PHP Social::button_twitter_follow怎么用?PHP Social::button_twitter_follow使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Social
的用法示例。
在下文中一共展示了Social::button_twitter_follow方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: mostrar_redes
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
}
示例2: display_content
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();
}