-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathQueries.php
More file actions
73 lines (71 loc) · 1.66 KB
/
Copy pathQueries.php
File metadata and controls
73 lines (71 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
namespace PhpCmsig\HttpList;
class Queries
{
/**
* @return string[]
*/
public static function getQueries(): array
{
return [
'L',
// Matomo
'mtm_campaign',
'mtm_keyword',
'mtm_kwd',
'mtm_source',
'mtm_medium',
'mtm_content',
'mtm_cid',
'mtm_group',
'mtm_placement',
// Piwik
'pk_campaign',
'pk_kwd',
'_stg_debug',
// Google
'utm_source',
'utm_medium',
'utm_campaign',
'utm_term',
'utm_content',
'utm_id',
'utm_source_platform',
'utm_creative_format',
'utm_marketing_tactic',
'gtm_debug',
'_gl',
// Google ads
'gad',
'gclid',
'dclid',
// Facebook
'fbclid',
// Microsoft Bing Ads.
'msclkid',
// HubSpot Ad Tracking Parameters
'hsa_acc',
'hsa_ad',
'hsa_cam',
'hsa_grp',
'hsa_kw',
'hsa_mt',
'hsa_net',
'hsa_src',
'hsa_tgt',
'hsa_ver',
'hsa_ol',
'hsa_la',
// HubSpot Email Tracking Parameters
'_hsenc',
'_hsmi',
// HubSpot CTA Tracking Parameters
'__hssc',
'__hstc',
'__hsfp',
'hsCtaTracking',
// HubSpot Form Tracking Parameters
'submissionGuid',
];
}
}