friendsofvictoire/socialbuttons-widget

This package is abandoned and no longer maintained. No replacement package was suggested.

Victoire DCMS social buttons widget

2.0.4 2017-04-26 14:26 UTC

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
  • Facebook
  • Google+
  • Linkedin
  • Flickr
  • Github
  • Periscope
  • Pinterest
  • Slideshare
  • Tumblr
  • Instagram
  • Twitter
  • 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;
    }
}