friendsofvictoire/socialbuttons-widget

此包已被放弃,不再维护。未建议替代包。

Victoire DCMS 社交按钮小部件

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

此扩展包将在您的 Victoire 项目上安装社交按钮小部件。使用此小部件,您可以将一些社交按钮放置在项目的任何位置,链接到您的社交页面,例如

  • 您的博客
  • Facebook
  • Google+
  • LinkedIn
  • Flickr
  • Github
  • Periscope
  • Pinterest
  • Slideshare
  • Tumblr
  • Instagram
  • Twitter
  • Viadeo
  • Vimeo
  • YouTube
  • Behance
  • 任何电子邮件地址
  • RSS Feed

##设置Victoire

如果您还没有设置Victoire,可以按照以下步骤进行 这里

##安装SocialButtons Bundle

运行以下composer命令

php composer.phar require friendsofvictoire/socialbuttons-widget

###注意事项

请务必在您的AppKernel中添加此扩展包!

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            ...
            new Victoire\Widget\SocialButtonsBundle\VictoireWidgetSocialButtonsBundle(),
        );

        return $bundles;
    }
}