thujohn / share-l4 by thujohn

Share links with Laravel 4
18,962
42
7
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-04-18 15:02:57
Package Statistics
Total Downloads: 18,962
Monthly Downloads: 64
Daily Downloads: 0
Total Stars: 42
Total Watchers: 7
Total Forks: 7
Total Open Issues: 4

Share

Share links with Laravel 4

Build Status

Installation

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',
)

Usage

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"}

Services available

  • Delicious : delicious
  • Digg : digg
  • Evernote : evernote
  • Facebook : facebook
  • Gmail : gmail
  • Google Plus : gplus
  • LinkedIn : linkedin
  • Pinterest : pinterest
  • Reddit : reddit
  • Scoop.it : scoopit
  • Springpad : springpad
  • Tumblr : tumblr
  • Twitter : twitter
  • Viadeo : viadeo
  • vk.com : vk