friendsofvictoire/cookielaw-widget

Victoire DCMS CookieLaw widget

2.1.4 2018-03-02 14:03 UTC

This package is not auto-updated.

Last update: 2024-04-13 16:00:12 UTC


README

##What is the purpose of this bundle

This bundle gives you access to the Cookie Law Widget. With this widget, an alert pops to inform the user that cookies are used on this website.

##Set Up Victoire

If you haven't already, you can follow the steps to set up Victoire here

##Install the Bundle

Run the following composer command :

php composer.phar require friendsofvictoire/cookielaw-widget

###Reminder

Do not forget to add the bundle in your AppKernel !

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

        return $bundles;
    }
}