Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 1.06 KB

File metadata and controls

51 lines (40 loc) · 1.06 KB

#Victoire DCMS SocialButtons Bundle

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