friendsofvictoire / cookielaw-widget
Victoire DCMS CookieLaw widget
Installs: 10 393
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 5
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.5.9
- symfony/framework-bundle: ~2.8|~3.0
- victoire/victoire: >=2.0.0|~3.0
This package is not auto-updated.
Last update: 2024-11-09 18:48:45 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;
}
}