Installation
Before you can install the plugin you need a packagist token. You get a token once you buy the plugin. If you haven't done so yet, go to sylius-consent-management.com and hit the big buy button ;)
The plugin relies on two bundles providing user identification and basic consent functionality. These are the ClientIdBundle and the ConsentBundle respectively.
The client id bundle will create a cookie (setono_client_id
) that will allow users of the bundle to easily identity a visitor (i.e. 'client') with a unique id. The bundle also creates the setono_client_id.provider.default_client_id
service which you can use in your application to obtain the client id for the current visitor.
The consent bundle lays the foundation for consent management by creating the service setono_consent.context.default
which is what you will use to obtain consent information around your application. The bundle also allows you to create defaults for the three consent categories (namely marketing, preferences, statistics). See the docs for that on the GitHub page.
Installing the plugin
Since the plugin is being provided through packagist.com you just have two steps to take before you can install the plugin:
1. Add repository to composer.json:
Remember to replace acme
with the short name given to you.
2. Add token to composer auth:
Remember to replace your_token
with the token given to you.
Now you should be able to install the plugin using the normal composer require
command:
Enabling the plugin
If you have Flex enabled the composer require
will automatically add the bundles and the plugin to bundles.php
. If not you should manually add them:
Add configuration file
Create the file config/packages/setono_sylius_cookie_consent.yaml
and add the following:
Include routes configuration
Create the file config/routes/setono_sylius_cookie_consent.yaml
and add the following:
Add the javascript and CSS to webpack
In a Symfony recommended setup where you have an entry file with your imports, here is an example of how it will work with the javascript and CSS included with this plugin:
Output widget in HTML
Finally, you will output the widget in your application. You do this with the following render
function:
Last updated
Was this helpful?