TypoScript setup
See a full TypoScript Configuration example.
All configuration is prepended with plugin.
.
groups
- groups
-
|
Data type: array|
Default: mandatory|
Holds the group configurations. A group contains several tracking objects.
By default, it only contains the 'mandatory' group, which includes the
Cookie
settings cookie. See a full TypoScript Configuration example.Consent
groups.<group-key>
- groups.<group-key>
-
|
Data type: array|
Default: mandatory|
A single group. The group's key (name) should not contain spaces and non-ASCII characters.
It will be saved in the settings cookie and can be checked with JavaScript:
has
Consented ('‹group- key›')
groups.‹group-key›.preselected
- groups.<group-key>.preselected
-
|
Data type: boolean|
Default: 0 (not set)|
If enabled (
1
), the group's consent checkbox will be already checked when the popup opens.The default group 'mandatory' has this set to
1
.
groups.‹group-key›.disabled
- groups.<group-key>.disabled
-
|
Data type: boolean|
Default: 0 (not set)|
If enabled (
1
), the group's consent checkbox will be disabled (cannot be changed).The default group 'mandatory' has this set to
1
.
groups.‹group-key›.trackingObjects
- groups.<group-key>.trackingObjects
-
|
Data type: array with numeric indices|
Holds a list of tracking object keys (numbered).
Example:
trackingObjects { 0 = CookieConsent 1 = fe_typo_user }
Copied!
groups.‹group-key›.respectDnt
- groups.<group-key>.respectDnt
-
|
Data type: boolean|
Default: 0 (not set)|
If set to
1
, this group respects to the "Do-not-track" setting of your browser.
groups.‹group-key›.showDntMessage
- groups.<group-key>.showDntMessage
-
|
Data type: boolean|
Default: 0 (not set)|
If set to
1
and the "Do-not-track" setting of your browser is enabled, an additional message about that is shown inside the group.
trackingObjects
- trackingObjects
-
|
Data type: array|
This array holds the tracking object configurations.
The Cookieman extension already provides several preconfigured tracking objects in the folder ./Configuration/TypoScript/TrackingObjects/ (link to the Github repository).
Important
If you add a preconfigured tracking object, you must at least adapt the
inject
code to your needs!The default group 'mandatory' only contains the tracking object
Cookie
settings cookie.Consent
trackingObjects.‹tracking-object-key›
- trackingObjects.‹tracking-object-key›
-
|
Data type: array|
Example: fe_typo_user|
A single tracking object configuration.
Example:
plugin.tx_cookieman.settings.trackingObjects { // 'Matomo' is the ‹tracking-object-key›: Matomo { // injected code, if consent is given: inject = TEXT inject { insertData = 1 value ( <script data-what="Matomo" src="/{path : EXT:cookieman/Resources/Public/Js/Injects/example-inject.js}?{date : U}"></script> ) } show { // set cookies, if consent is given: _pk_id { duration = 13 durationUnit = months type = cookie_http+html provider = Matomo } // etc. } } }
Copied!
trackingObjects.‹tracking-object-key›.inject
- trackingObjects.‹tracking-object-key›.inject
-
|
Data type: data-type-html-code / data-type-cobject|
Example: <script src="/path/to/tracking-code.js"></script>|
Each HTML tag in here will be appended to the page when the respective group is consented. This can be
<script>
,<img>
or anything else.You can either use inline script or link to an external file (useful if a HTTP header
Content-
is set).Security- Policy If you need a local path from your
_assets
directory, let TYPO3 build it. We currently recommend usingTEXT
withinsert
and the getTextData = 1 {path : EXT:…}
. The preceding root path (/
) is necessary for it to work on subpages. We recommend adding?
to add a cache-busting parameter. See the example above.{date : U} It has shortcomings (namely the missing base and missing cache busting ?parameter. See https://forge.typo3.org/issues/99203#change-507069).
For v13 we can use the
{asset : ...}
` getText function (https://review.typo3.org/c/Packages/TYPO3.CMS/+/77018).
trackingObjects.‹tracking-object-key›.show
- trackingObjects.‹tracking-object-key›.show
-
|
Data type: array|
The actual rows of the table, each representing one "tracking item" (usually a cookie).
trackingObjects.‹tracking-object-key›.show.‹tracking-item-key›
- trackingObjects.‹tracking-object-key›.show.‹tracking-item-key›
-
|
Data type: array|
Example: _pk_id|
A single "tracking item" (e.g. the name of a cookie). A cookie that matches this name will be removed when consent for the group in which this tracking object is included is revoked. (see also trackingObjects.‹tracking-object-key›.show.‹tracking-item-key›.htmlCookieRemovalPattern)
trackingObjects.‹tracking-object-key›.show.‹tracking-item-key›.duration
- trackingObjects.‹tracking-object-key›.show.‹tracking-item-key›.duration
-
|
Data type: data-type-positive-integer|
Example: 12|
The lifetime of the tracking object (only the "number" part).
trackingObjects.‹tracking-object-key›.show.‹tracking-item-key›.durationUnit
- trackingObjects.‹tracking-object-key›.show.‹tracking-item-key›.durationUnit
-
|
Data type: data-type-string|
Example: months|
The lifetime of the tracking object (only the "unit" part).
trackingObjects.‹tracking-object-key›.show.‹tracking-item-key›.type
- trackingObjects.‹tracking-object-key›.show.‹tracking-item-key›.type
-
|
Data type: data-type-string|
Example: cookie_http+html|
The type of tracking.
Possible (default) keywords:
cookie_
: an HTML (=HTTP+HTML) cookie, which is also readable from JavaScript. This is the only type that can be removed after consent has been revoked.http+html cookie_
: an HTTP cookiehttp pixel
: a tracking pixel
Note
You can add your own types by adding a localization string
type.‹your-
.type- key›
trackingObjects.‹tracking-object-key›.show.‹tracking-item-key›.provider
- trackingObjects.‹tracking-object-key›.show.‹tracking-item-key›.provider
-
|
Data type: data-type-string|
Example: Google|
The provider of the cookie or tracking object.
trackingObjects.‹tracking-object-key›.show.‹tracking-item-key›.htmlCookieRemovalPattern
- trackingObjects.‹tracking-object-key›.show.‹tracking-item-key›.htmlCookieRemovalPattern
-
|
Data type: data-type-string|
Example: ^_gat(?:_UA-d+-d+)?$|
You can (optionally) set a regex pattern for cookie names here. It will be used during cookie removal. If would remove all matched cookies when consent for the group in which this tracking object is included is revoked. If this is empty, the tracking object key is used for deletion (see trackingObjects.‹tracking-object-key›).
Note
Cookie removal will only work for tracking object type
cookie_
. See trackingObjects.‹tracking-object-key›.show.‹tracking-item-key›.type.http+html