Feature #21220
Updated by Brett Smith over 1 year ago
Add a configuration setting to Workbench 2 that supports a Google Tag. Analytics token. If set, Workbench 2 generates the necessary HTML to load and report to Google Analytics using that tag. token. Version 1 of this integration can be the simplest possible integration: it just needs to report when someone loads Workbench. More detailed activity tracking can be done in a follow-up story. "The necessary HTML is below.":https://developers.google.com/tag-platform/gtagjs/install @TAG_ID@ is the value from configuration anywhere it appears. <pre><code class="html"> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=TAG_ID"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'TAG_ID'); </script> </code></pre>