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


PHP Social::includeTwitterLib方法代码示例

本文整理汇总了PHP中Social::includeTwitterLib方法的典型用法代码示例。如果您正苦于以下问题:PHP Social::includeTwitterLib方法的具体用法?PHP Social::includeTwitterLib怎么用?PHP Social::includeTwitterLib使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Social的用法示例。


在下文中一共展示了Social::includeTwitterLib方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: init

 public function init()
 {
     require_once _base_ . '/lib/lib.json.php';
     $this->json = new Services_JSON();
     //require_once(_base_.'/addons/social/config_docebo.php');
     //require_once(_base_.'/addons/social/class.fblinkedtwit.php');
     //$fblinkedtwit   =   new FbLinkedTwit();
     //require_once(_base_.'/addons/social/functions.php');
     $this->conf = Social::getConfig();
     Social::includeTwitterLib();
 }
开发者ID:abhinay100,项目名称:forma_app,代码行数:11,代码来源:SocialconnectLmsController.php

示例2: lostpwd

     break;
     //lost user or password
 //lost user or password
 case "lostpwd":
     lostpwd();
     break;
 case "test":
 case "social_connect_login":
     socialConnectLogin();
     break;
 case "facebook_login":
     include_once dirname(__FILE__) . '/login.facebook.oauth2.php';
     break;
 case "twitter_login":
     $social = new Social();
     $social->includeTwitterLib();
     require_once _base_ . '/lib/lib.preference.php';
     $preference = new UserPreferences(getLogUserId());
     $conf = $social->getConfig();
     $user_pref = array();
     $user_pref['twitter_key'] = $preference->getPreference('social.twitter_key');
     $user_pref['twitter_secret'] = $preference->getPreference('social.twitter_secret');
     if (!isset($_GET['back'])) {
         if (empty($user_pref['twitter_key'])) {
             $twitter = new EpiTwitter($conf['twitter_key'], $conf['twitter_secret']);
             $aUrl = $twitter->getAuthenticateUrl();
             header("location: " . $aUrl);
             exit;
         } else {
         }
     } else {
开发者ID:abhinay100,项目名称:forma_app,代码行数:31,代码来源:login.php


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