friendsofvictoire/cookielaw-widget

Victoire DCMS CookieLaw 小部件

2.1.4 2018-03-02 14:03 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:14:57 UTC


README

##本组件的作用是什么

此组件为您提供了访问 Cookie Law Widget 的权限。使用此小部件,会弹出一个提示框告知用户该网站使用Cookies。

##设置Victoire

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

##安装组件

运行以下Composer命令

php composer.phar require friendsofvictoire/cookielaw-widget

###提示

请记得在AppKernel中添加该组件!

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

        return $bundles;
    }
}