kikwik / cookie-bundle
Cookie banner for Symfony 5
Installs: 22
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=7.2.5
- ext-json: *
- doctrine/doctrine-bundle: ^2.0
- doctrine/orm: ^2.7|^3.0
- symfony/framework-bundle: ^5.4|^6.0
- symfony/translation: ^5.4|^6.0
- symfony/twig-bundle: ^5.4|^6.0
Requires (Dev)
- nyholm/symfony-bundle-test: ^2.0
- symfony/browser-kit: ^5.4|^6.0
- symfony/phpunit-bridge: ^5.4|^6.0
README
Cookie banner for Symfony 5+
Installation
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require kikwik/cookie-bundle
Update the database to create the kw_cookie_consent_log table:
$ php bin/console make:migration $ php bin/console doctrine:migrations:migrate
Configuration
Create the config/packages/kikwik_cookie.yaml
config file and clear the cache
kikwik_cookie: cookie_prefix: 'kwc_consent' # the prefix for the cookie name (default is kwc_consent) cookie_lifetime: 180 # number days after cookie expiration (default is 6 months) consent_version: '1.0' # consent version (change to invalidate old consents) privacy_policy: 'app_privacy' # route or url for privacy policy (default is null) cookie_policy: 'app_cookie' # route or url for cookie policy (default is null) categories: [ ] # list of available categories, example: [ 'functional', 'analytics', 'profiling', 'marketing' ] enable_consent_log: false # save user consent in database (default is false) banner_classes: wrapper: 'position-fixed bottom-0 start-0 end-0 p-1 border-top border-3 bg-white' actionWrapper: 'float-md-end text-center' btnAccept: 'btn btn-sm btn-success my-1' btnDeny: 'btn btn-sm btn-danger my-1' btnChoose: 'btn btn-sm btn-warning my-1' btnPrivacy: 'm-1' btnCookie: 'm-1'
Import routes bundle in config/routes/kikwik_cookie.yaml
:
kikwik_cookie_bundle: resource: '@KikwikCookieBundle/Resources/config/routes.xml' prefix: '/'
Copy translations file from vendor/kikwik/cookie-bundle/src/Resources/translations/KikwikCookieBundle.xx.yaml
into translations
directory to change banner text
Make a twig global variable in config/packages/twig.yaml
to use ConsentManager in templates
twig: globals: cookieConsentManager: '@Kikwik\CookieBundle\Service\ConsentManager'
{% if cookieConsentManager.categoryAllowed('analytics') %} <script> ... </script> {% endif %}