tms / consent
Simple, lightweight and customizable consent manager for Neos CMS based on Klaro!
Installs: 1 239
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 20
Language:SCSS
Type:neos-plugin
Requires
- neos/neos: ^4.3 || ^5.0 || ^7.0 || ^8.0 || dev-master
- dev-master
- 1.3.0
- 1.2.0
- 1.1.6
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.0
- 0.1.0
- dev-dependabot/npm_and_yarn/minimist-1.2.8
- dev-dependabot/npm_and_yarn/json5-1.0.2
- dev-dependabot/npm_and_yarn/json5-and-css-loader-and-mini-css-extract-plugin-and-sass-loader-and-webpack-and-webpack-cli--removed
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/loader-utils-1.4.2
- dev-dependabot/npm_and_yarn/terser-4.8.1
- dev-dependabot/npm_and_yarn/postcss-7.0.39
- dev-dependabot/npm_and_yarn/ansi-regex-4.1.1
- dev-dependabot/npm_and_yarn/color-string-1.9.0
- dev-dependabot/npm_and_yarn/ajv-6.12.6
- dev-dependabot/npm_and_yarn/browserslist-4.16.6
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/npm_and_yarn/ssri-6.0.2
- dev-dependabot/npm_and_yarn/y18n-4.0.1
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/ini-1.3.8
This package is auto-updated.
Last update: 2024-11-13 15:46:04 UTC
README
Simple, lightweight and customizable consent manager for Neos CMS based on Klaro!
Let your users decide, which scripts should be loaded and executed while visiting your website.
IMPORTANT: We are developers, no lawyers. Using this package without further adaptation will most likely NOT result in GDPR, ePrivacy nor CCPA compliance!
Install
composer require tms/consent
What's included?
- Klaro Script + opinionated Klaro Config (override or use your own anytime)
- Klaro Config editing via
Settings.yaml
& predefined services - Klaro default styles & themes
/Resources/Private/Styles/Theme
- Placeholder for blocked content elements (Fusion Component + JS)
- Consent settings button (Fusion Component + JS)
- Overrides for common Neos packages
/Resources/Private/Fusion/PresetPackages
Usage
Step 1: Service configuration via YAML
settings
This package includes default consent management settings for the following services. Enable them in your Settings.yaml
or add your own services.
- Cloudflare
- Matomo
- Google Analytics
- Google Maps
- Youtube
# Example Tms.Consent configuration Tms: Consent: config: # The privacy policy uri can be specified by node type, path, identifier or simply an absolute/relative link privacyPolicy: '#4999814e-61c2-4ce1-ab46-c1145f2285d7' # Enable the services you need consent management for services: matomo: enabled: true # Use the position key to render services in your favorite order position: 100 youtube: enabled: true position: 200
Extend your services
Simply extend the YAML
settings within your Neos package.
Tms: Consent: config: services: yourServiceName: enabled: true # ----------------------------------------------------------------- # Klaro! Config # ----------------------------------------------------------------- klaro: name: yourServiceName title: 'Your Service Title' description: 'Short description, why your website use this service...' purposes: ['functionality']
Think your service configuration is useful for others too?
Don't hesitate to submit a PR. All the service related configuration should be combined in one settings
file named like Settings.Consent.YourServiceName.yaml
.
Step 2: Modify HTML
In order to control your configured services (e.g. to stop loading and/or execution without consent) it is necessary to modify the resulting HTML of your webpages.
This can be achieved by simply replacing some attributes - see https://github.com/KIProtect/klaro#managing-third-party-appstrackers
We try to provide preconfigured solutions for some common Neos packages, please have a look at /Resources/Private/Fusion/PresetPackages
what we've already covered. Your package is missing? Submit a PR, if you think the service configuration could be useful for others.
Step 3: Verify
Check your site - have you blocked all your critical services?
- by using the dev tools of your favorite browser
- or simply run a check on https://webbkoll.dataskydd.net/
(Optional) Step 4: Better UX for blocked content elements
This is an example how to use the Fusion Component for a Youtube + Bootstrap markup.
prototype(Your.Package:Component.Atom.Youtube) < prototype(Neos.Fusion:Component) {
renderer = afx`
<div class="embed-responsive embed-responsive-16by9">
<Tms.Consent:Component.Atom.NoConsentPlaceholder serviceName="youtube" imageUri="" />
<iframe src="about:blank" data-name="youtube" data-src="https://www.youtube-nocookie.com/embed/4DVD03IlXIs?wmode=transparent&autoplay=&controls=1&rel=&showinfo=" class="embed-responsive-item" loading="lazy" allowfullscreen="1"></iframe>
</div>
`
}
Wishlist
- Add multi-site support
- Backend module with some basic statistics on acceptance rate
- User location based configurations
Any feedback, pull request or other contribution is very welcome!
Acknowledgments
Development sponsored by tms.development - Online Marketing and Neos CMS Agency
Webpack config inspired by https://github.com/neos/redirecthandler-ui