当前位置: 首页>>代码示例>>PHP>>正文


PHP Social::button_twitter_follow方法代码示例

本文整理汇总了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 
    }
开发者ID:nemesis866,项目名称:codeando,代码行数:29,代码来源:Template.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();
    }
开发者ID:nemesis866,项目名称:codeando,代码行数:29,代码来源:Page.php


注:本文中的Social::button_twitter_follow方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。