totox777 / fbplugins
Laravel 4 Facebook social plugins
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-11-04 16:48:08 UTC
README
Laravel 4 Package to embed facebook comment and like plugin
##INSTALL
add this line to your require array in composer.json
"totox777/fbplugins": "dev-master"
and then, Run :
composer update
to pull down the latest version.
add this line to your app.php provider array:
'Totox777\Fbplugins\FbpluginsServiceProvider',
and add this line to app.php aliases array:
'Fbplugins' => 'Totox777\Fbplugins\Facades\Profiler',
config: don't forget to input your facebook app_id
and admins
in src/config/config.php
##Usage Always use this once in your script:
Fbplugins::getScript();
To embed comment:
Fbplugins::getPlugin('comments');
To embed like:
Fbplugins::getPlugin('like');
To embed activity:
Fbplugins::getPlugin('activity');