friendsofvictoire / socialbuttons-widget
Victoire DCMS social buttons widget
Installs: 13 636
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 9
Forks: 3
Open Issues: 1
Type:symfony-bundle
Requires
- friendsofvictoire/listing-widget: ~2
- victoire/victoire: ~2.3|~3.0
This package is not auto-updated.
Last update: 2021-12-21 22:43:28 UTC
README
This bundle installs the Social Buttons Widget on your Victoire project. With this widget, you can put some social buttons anywhere linking to your social pages such as
- Your Blog
- Google+
- Flickr
- Github
- Periscope
- Slideshare
- Tumblr
- Viadeo
- Vimeo
- YouTube
- Behance
- Any email adress
- RSS Feed
##Set Up Victoire
If you haven't already, you can follow the steps to set up Victoire here
##Install the SocialButtons Bundle :
Run the following composer command :
php composer.phar require friendsofvictoire/socialbuttons-widget
###Reminder
Do not forget to add the bundle in your AppKernel !
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
...
new Victoire\Widget\SocialButtonsBundle\VictoireWidgetSocialButtonsBundle(),
);
return $bundles;
}
}