1.1releasedCookie Law

Inject Javascript as soon as the user accepts the cookie law.

Clone URLhttps://github.com/TwistedInteractive/cookie_law.git

Add as a submodulegit submodule add https://github.com/TwistedInteractive/cookie_law.git extensions/cookie_law --recursive

Compatibility

2.x.x2.1.x2.2.x2.3.x2.4.x2.5.x2.6.x2.7.02.7.12.7.22.7.32.7.42.7.52.7.62.7.72.7.82.7.92.7.10
NoNo1.11.1NoNoNoNoNoNoNoNoNoNoNoNoNoNo. Soon?

Readme

Cookie Law

Since June 2012, the law of the Netherlands states that if your site sets third-party or tracking-cookies (like Google Analytics for example), you have to explicit ask the user to opt-in to set this cookie.

This extension tries to make the process of opting-in a bit simpler.

Installation

Just enable the extension and enter the specific fields in the preferences page (or choose one of the existing presets).

Then, in the pages where you want to give to opportunity to opt-in (usually all your pages), place the following XSL right before the </body>-tag. Make sure you've got the HTML Manipulation utility included on these pages:

<xsl:apply-templates select="data/cookie-law/html/*" mode="html" />

If you've choosen to use the default styling, add this before your </head>-tag:

<style type="text/css">
    <xsl:value-of select="data/cookie-law/styling"/>
</style>

That's it! You're all set and done now!

What does it do?

The extensions sets a cookie called cookie_accept, which value can be 1 or 0. When the value is 1, the Javascript that is entered in the preferences page is executed. This is usually the Google Analytics tracking code, but it could also be used for your own custom Javascript. When the value is 0, this is obviously not done.

A nice little detail to 'push' people into accepting the cookie: when the cookie is declined, the cookie_accept-cookie will expire at the end of the browsing session, meaning that the next time the user comes to your website, they are confronted with the same question. However... when the user accepts the cookie, it is valid until December 31st, 2999.

Localisation

The texts for the cookie message are stored in the lang-folder. So if you want to change these texts, you can change the text for the corresponding language.

Version history