Skip to content

Commit 4d88674

Browse files
committed
Trim options before adding to HTML output
1 parent d0da47e commit 4d88674

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
### Changed
1515

1616
- FIX typo in marketing cookie text
17+
- Analytics options are trimmed before adding to HTML output
1718

1819
## [1.5.2] - 2024-07-08
1920

src/Scripts.php

+12-12
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ public function register(): void
1414

1515
public function enqueueScripts(): void
1616
{
17-
$apiKey = get_field('civic_cookie_control_api_key', 'option');
18-
$productType = get_field('civic_cookie_control_product_type', 'option');
19-
$googleAnalyticsId = get_field('google_analytics_id', 'option');
20-
$ga4Id = get_field('ga_4_id', 'option');
21-
$gtmId = get_field('google_analytics_gtm', 'option');
22-
$hotjarId = get_field('hotjar_id', 'option');
17+
$apiKey = trim(get_field('civic_cookie_control_api_key', 'option'));
18+
$productType = trim(get_field('civic_cookie_control_product_type', 'option'));
19+
$googleAnalyticsId = trim(get_field('google_analytics_id', 'option'));
20+
$ga4Id = trim(get_field('ga_4_id', 'option'));
21+
$gtmId = trim(get_field('google_analytics_gtm', 'option'));
22+
$hotjarId = trim(get_field('hotjar_id', 'option'));
2323
if ($apiKey && $productType) {
2424
wp_enqueue_script('civicCookieControl', 'https://cc.cdn.civiccomputing.com/9/cookieControl-9.x.min.js');
2525
wp_enqueue_script('civicCookieControlDefaultAnalytics', plugins_url('/assets/js/analytics.js', dirname(__FILE__)), ['civicCookieControl']);
@@ -41,19 +41,19 @@ public function enqueueStyles(): void
4141

4242
public function addGA4(): void
4343
{
44-
$apiKey = get_field('civic_cookie_control_api_key', 'option');
45-
$productType = get_field('civic_cookie_control_product_type', 'option');
46-
$ga4Id = get_field('ga_4_id', 'option');
44+
$apiKey = trim(get_field('civic_cookie_control_api_key', 'option'));
45+
$productType = trim(get_field('civic_cookie_control_product_type', 'option'));
46+
$ga4Id = trim(get_field('ga_4_id', 'option'));
4747
if ($apiKey && $productType && $ga4Id) {
4848
printf('<script async id="awc_gtag" src="https://www.googletagmanager.com/gtag/js?id=%s"></script>', esc_attr($ga4Id));
4949
}
5050
}
5151

5252
public function addGTM(): void
5353
{
54-
$apiKey = get_field('civic_cookie_control_api_key', 'option');
55-
$productType = get_field('civic_cookie_control_product_type', 'option');
56-
$gtmId = get_field('google_analytics_gtm', 'option');
54+
$apiKey = trim(get_field('civic_cookie_control_api_key', 'option'));
55+
$productType = trim(get_field('civic_cookie_control_product_type', 'option'));
56+
$gtmId = trim(get_field('google_analytics_gtm', 'option'));
5757
if ($apiKey && $productType && $gtmId) {
5858
printf("<script>window.dataLayer = window.dataLayer || []; (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','%s')</script>", esc_js($gtmId));
5959
}

0 commit comments

Comments
 (0)