Package Data | |
---|---|
Maintainer Username: | thujohn |
Maintainer Contact: | jonathan.thuau@gmail.com (thujohn) |
Package Create Date: | 2013-06-24 |
Package Last Update: | 2014-05-20 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-15 03:04:40 |
Package Statistics | |
---|---|
Total Downloads: | 19,007 |
Monthly Downloads: | 6 |
Daily Downloads: | 0 |
Total Stars: | 42 |
Total Watchers: | 7 |
Total Forks: | 7 |
Total Open Issues: | 4 |
Share links with Laravel 4
Add thujohn/share
to composer.json
.
"thujohn/share": "dev-master"
Run composer update
to pull down the latest version of Share.
Now open up app/config/app.php
and add the service provider to your providers
array.
'providers' => array(
'Thujohn\Share\ShareServiceProvider',
)
Now add the alias.
'aliases' => array(
'Share' => 'Thujohn\Share\ShareFacade',
)
Get a link (example with Twitter)
Route::get('/', function()
{
return Share::load('http://www.example.com', 'My example')->twitter();
});
Returns a string :
https://twitter.com/intent/tweet?url=http%3A%2F%2Fwww.example.com&text=Link+description
Get many links
Route::get('/', function()
{
return Share::load('http://www.example.com', 'Link description')->services('facebook', 'gplus', 'twitter');
});
Returns an array :
{"facebook":"https:\/\/www.facebook.com\/sharer\/sharer.php?u=http%3A%2F%2Fwww.example.com&title=Link+description","gplus":"https:\/\/plus.google.com\/share?url=http%3A%2F%2Fwww.example.com","twitter":"https:\/\/twitter.com\/intent\/tweet?url=http%3A%2F%2Fwww.example.com&text=Link+description"}