-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathGtmCode.php
158 lines (137 loc) · 3.32 KB
/
GtmCode.php
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?php
/**
* Copyright © Magefan (support@magefan.com). All rights reserved.
* Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement).
*/
declare(strict_types=1);
namespace Magefan\GoogleTagManager\Block;
use Magento\Framework\Exception\NoSuchEntityException;
use Magento\Framework\View\Element\Template;
use Magefan\GoogleTagManager\Model\Config;
class GtmCode extends Template
{
/**
* @var Config
*/
private $config;
/**
* GtmCode constructor.
* @param Template\Context $context
* @param Config $config
* @param array $data
*/
public function __construct(
Template\Context $context,
Config $config,
array $data = []
) {
$this->config = $config;
parent::__construct($context, $data);
}
/**
* @return string
*/
public function getGtmScript(): string
{
$partsForRemove = [
'<!-- Google Tag Manager -->',
'<!-- End Google Tag Manager -->',
'<script>',
'</script>'
];
$gtmScript = $this->config->getGtmScript();
if ($gtmScript) {
foreach ($partsForRemove as $part) {
$gtmScript = str_replace($part, '', $gtmScript);
}
return $gtmScript;
}
return '';
}
/**
* @return string
*/
public function getGtmNoScript(): string
{
return $this->config->getGtmNoScript();
}
/**
* @return string
*/
public function getPublicId(): string
{
return $this->config->getPublicId();
}
/**
* Check if protect customer data is enabled
*
* @return bool
*/
public function isProtectCustomerDataEnabled(): bool
{
return $this->config->isProtectCustomerDataEnabled();
}
/**
* Retrieve true if gtm script should be loaded before customer provice consent.
*
* @return bool
*/
public function isLoadBeforeConsent(): bool
{
return $this->config->isLoadBeforeConsent();
}
/**
* Retrieve true if cookie restriction mode enabled
*
* @return bool
*/
public function isCookieRestrictionModeEnabled()
{
return $this->config->isCookieRestrictionModeEnabled();
}
/**
* Retrieve true if mf cookie consent extension is enabled
*
* @return bool
*/
public function isMfCookieConsentExtensionEnabled()
{
return $this->config->isMfCookieConsentExtensionEnabled();
}
/**
* Get current website ID
*
* @return int
* @throws NoSuchEntityException
*/
public function getWebsiteId(): int
{
return (int)$this->_storeManager->getStore()->getWebsiteId();
}
/**
* @return string
*/
protected function _toHtml(): string
{
if ($this->config->isEnabled() /* && $this->getPublicId() */) {
return parent::_toHtml();
}
return '';
}
/**
* @return Config
*/
public function getConfig()
{
return $this->config;
}
/**
* Retrieve true if speed optimization is enabled
*
* @return bool
*/
public function isSpeedOptimizationEnabled(): bool
{
return (bool)$this->config->isSpeedOptimizationEnabled();
}
}