Ajout du script de Matomo, fourni pour l'exemple...

This commit is contained in:
Fabrice PENHOËT 2021-11-08 11:52:06 +01:00
parent 65fa9961c2
commit b334240da9
1 changed files with 13 additions and 0 deletions

13
public/JS/matomo.js Normal file
View File

@ -0,0 +1,13 @@
var _paq=window._paq=window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function()
{
var u="https://stats.le-fab-lab.com/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '6']);
_paq.push(['HeatmapSessionRecording::disable']);// ajout CNIL/RGPD, cf. https://www.cnil.fr/sites/default/files/atoms/files/matomo_analytics_-_exemption_-_guide_de_configuration.pdf
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();