totox777 /fbplugins
Laravel 4 Facebook 社交插件
dev-master
2013-07-12 03:58 UTC
Requires
- php: >=5.3.0
- illuminate/support: 4.0.x
This package is not auto-updated.
Last update: 2024-09-23 16:11:32 UTC
README
Laravel 4 包,用于嵌入 Facebook 评论和点赞插件
## 安装
将此行添加到 composer.json 中的 require 数组
"totox777/fbplugins": "dev-master"
然后,运行:composer update 以获取最新版本。
将此行添加到 app.php 的 provider 数组中
'Totox777\Fbplugins\FbpluginsServiceProvider',
并将此行添加到 app.php 的别名数组中
'Fbplugins' => 'Totox777\Fbplugins\Facades\Profiler',
配置:不要忘记在 src/config/config.php 中输入您的 Facebook app_id 和 admins
## 使用
Fbplugins::getScript();
嵌入评论
Fbplugins::getPlugin('comments');
嵌入点赞
Fbplugins::getPlugin('like');
嵌入活动
Fbplugins::getPlugin('activity');