ride / wba-cms-widgets-social
A collection of social media widgets
Installs: 1 225
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 12
Forks: 0
Open Issues: 0
Requires
- ride/lib-cms: >=0.16.0
- ride/lib-common: >=0.4.0
- ride/lib-form: >=0.13.0
- ride/lib-i18n: >=0.1.0
- ride/lib-validation: >=0.1.0
- ride/lib-widget: >=0.1.1
- ride/web-base: >=0.7.6
- ride/web-cms: >=0.16.0
- ride/web-form: >=0.4.6
This package is auto-updated.
Last update: 2024-10-13 00:16:09 UTC
README
A collection of widgets and REST clients allowing you to implement various social media integrations.
Widgets
Social media link widget
Select various social media services to display links to provided profile pages.
Social media share widget
Select various social media services allowing the user to share the current page to them.
Clients
###Flickr client A minimalistic client and model which can ben used to send and handle requests to the Flickr API.
Usage : Request the first 5 photos of a specific Flickr photoset
$flickrModel->setApiAuthentication(API_KEY, API_SECRET_KEY);
$photos = $flickrModel->call('flickr.photosets.getPhotos', array(
'photoset_id': PHOTOSET_ID,
'page' => 1,
'per_page' => 5,
));