rkw / rkw-etracker
Extension for integration of eTracker analytics
v10.4.5-stable
2025-02-07 15:15 UTC
Requires
- php: >=7.4
- ext-curl: *
- ext-json: *
- madj2k/t3-core-extended: ~10.4.0 || ~11.5.0 || ~12.4.0
- madj2k/t3-dr-serp: ~12.4.0
- madj2k/t3-postmaster: ~10.4.0 || ~11.5.0 || ~12.4.0
- rkw/rkw-basics: ~10.4.0 || ~11.5.0 || ~12.4.0
- typo3/cms-core: ~10.4.0
This package is auto-updated.
Last update: 2026-06-07 18:11:23 UTC
README
When using a Cookie-Consent-Tool you have to use a timeout for enabling cookies, because the eTracker-Script is loaded asynchronous and thus the relevant script-methods won't be available directly.
Example:
function waitForEtracker(){
if(typeof _etracker !== "undefined"){
_etracker.enableCookies(rkwEtrackerDomain);
console.log('eTracker: cookies enabled');
} else{
setTimeout(waitForEtracker, 250);
}
}
waitForEtracker();