forked from dvygolov/YellowCloaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pixels.php
218 lines (188 loc) · 7.83 KB
/
pixels.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<?php
require_once 'settings.php';
require_once 'htmlinject.php';
require_once 'cookies.php';
function get_fbpixel(){
global $fbpixel_subname;
//если пиксель не лежит в querystring, то также ищем его в куки
$fb_pixel = isset($_GET[$fbpixel_subname])?$_GET[$fbpixel_subname]:get_cookie($fbpixel_subname);
return $fb_pixel;
}
//если в querystring есть id пикселя фб, то встраиваем его скрытым полем в форму на лендинге
//чтобы потом передать его на страницу "Спасибо" через send.php и там отстучать Lead
function insert_fbpixel_id($html)
{
global $fbpixel_subname;
$fb_pixel = get_fbpixel();
if (empty($fb_pixel)) return $html;
$fb_input = '<input type="hidden" name="'.$fbpixel_subname.'" value="'.$fb_pixel.'"/>';
$needle = '</form>';
return insert_before_tag($html, $needle, $fb_input);
}
//вставляет в head полный код пикселя фб с указанным в $event событием (Lead,PageView,Purchase итп)
//если событие не указано, то и не шлём его
function insert_fbpixel_script($html, $event=null)
{
$fb_pixel = get_fbpixel();
if (empty($fb_pixel)) return $html;
$file_name=__DIR__.'/scripts/pixels/facebook/fbpxcode.js';
if (!file_exists($file_name)) {
return $html;
}
$px_code = file_get_contents($file_name);
if (empty($px_code)) {
return $html;
}
$search='{PIXELID}';
$px_code = str_replace($search, $fb_pixel, $px_code);
if ($event==null){ //если не передали Event, значит добавляем только код пикселя без передачи событий
$search = "fbq('track', '{EVENT}');";
$px_code = str_replace($search, $event, $px_code);
}
else{
$search='{EVENT}';
$px_code = str_replace($search, $event, $px_code);
}
return insert_before_tag($html, '</head>', $px_code);
}
function insert_fbpixel_pageview($html){
global $fb_use_pageview;
if (get_fbpixel()=='') return $html;
if ($fb_use_pageview) {
$html = insert_fbpixel_script($html, 'PageView');
}
return $html;
}
function insert_fbpixel_viewcontent($html,$url){
global $fb_use_viewcontent,$fb_view_content_time,$fb_view_content_percent;
if (get_fbpixel()=='') return $html;
if ($fb_use_viewcontent){
if ($fb_view_content_time>0){
$html= insert_file_content_with_replace($html,'pixels/facebook/fbpxviewcontenttime.js','</head>',['{SECONDS}','{PAGE}'],[$fb_view_content_time,$url]);
}
if ($fb_view_content_percent>0){
$html= insert_file_content_with_replace($html,'pixels/facebook/fbpxviewcontentpercent.js','</head>',['{PERCENT}','{PAGE}'],[$fb_view_content_percent,$url]);
}
}
return $html;
}
function full_fbpixel_processing($html,$url){
global $fb_use_pageview, $fb_add_button_pixel, $fb_thankyou_event;
if (empty(get_fbpixel())) return $html;
//добавляем в страницу скрипт Facebook Pixel с событием PageView
if ($fb_use_pageview) {
$html = insert_fbpixel_script($html, 'PageView');
}
else if ($fb_add_button_pixel){
$html = insert_fbpixel_script($html);
}
$html=insert_fbpixel_viewcontent($html,$url);
if ($fb_add_button_pixel){
$html= insert_file_content_with_replace($html,'pixels/facebook/fbpxbuttonconversion.js','</head>','{EVENT}',$fb_thankyou_event);
}
return $html;
}
function get_ttpixel(){
global $ttpixel_subname;
//если пиксель не лежит в querystring, то также ищем его в куки
$tt_pixel = isset($_GET[$ttpixel_subname])?$_GET[$ttpixel_subname]:get_cookie($ttpixel_subname);
return $tt_pixel;
}
//если в querystring есть id пикселя тт, то встраиваем его скрытым полем в форму на лендинге
//чтобы потом передать его на страницу "Спасибо" через send.php и там отстучать Lead
function insert_ttpixel_id($html)
{
global $ttpixel_subname;
$tt_pixel = get_ttpixel();
if (empty($tt_pixel)) return $html;
$tt_input = '<input type="hidden" name="'.$ttpixel_subname.'" value="'.$tt_pixel.'"/>';
$needle = '</form>';
return insert_before_tag($html, $needle, $tt_input);
}
//вставляет в head полный код пикселя фб с указанным в $event событием (Lead,PageView,Purchase итп)
//если событие не указано, то и не шлём его
function insert_ttpixel_script($html, $event=null)
{
$tt_pixel = get_ttpixel();
if (empty($tt_pixel)) return $html;
$file_name=__DIR__.'/scripts/pixels/tiktok/ttpxcode.js';
if (!file_exists($file_name)) return $html;
$px_code = file_get_contents($file_name);
if (empty($px_code)) return $html;
$search='{PIXELID}';
$px_code = str_replace($search, $tt_pixel, $px_code);
if ($event==null){ //если не передали Event, значит добавляем только код пикселя без передачи событий
$search = "ttq.track('{EVENT}');";
$px_code = str_replace($search, $event, $px_code);
$search = "ttq.page();";
$px_code = str_replace($search, $event, $px_code);
}
else if ($event=='PageView'){
$search = "ttq.track('{EVENT}');";
$px_code = str_replace($search, '', $px_code);
}
else{
$search='{EVENT}';
$px_code = str_replace($search, $event, $px_code);
}
return insert_before_tag($html, '</head>', $px_code);
}
function insert_ttpixel_pageview($html){
global $tt_use_pageview;
if (get_ttpixel()=='') return $html;
if ($tt_use_pageview) {
$html = insert_ttpixel_script($html, 'PageView');
}
return $html;
}
function insert_ttpixel_viewcontent($html,$url){
global $tt_use_viewcontent,$tt_view_content_time,$tt_view_content_percent;
if (get_ttpixel()=='') return $html;
if ($tt_use_viewcontent){
if ($tt_view_content_time>0){
$html= insert_file_content_with_replace($html,
'pixels/tiktok/ttpxviewcontenttime.js','</head>',['{SECONDS}','{PAGE}'],[$tt_view_content_time,$url]);
}
if ($tt_view_content_percent>0){
$html= insert_file_content_with_replace($html,
'pixels/tiktok/ttpxviewcontentpercent.js','</head>',['{PERCENT}','{PAGE}'],[$tt_view_content_percent,$url]);
}
}
return $html;
}
function full_ttpixel_processing($html,$url){
global $tt_use_pageview, $tt_add_button_pixel, $tt_thankyou_event;
$tt_pixel = get_ttpixel();
if ($tt_pixel==='') return $html;
//добавляем в страницу скрипт TikTok Pixel с событием PageView
if ($tt_use_pageview) {
$html = insert_ttpixel_script($html, 'PageView');
}
else if ($tt_add_button_pixel){
$html = insert_ttpixel_script($html);
}
$html=insert_ttpixel_viewcontent($html,$url);
if ($tt_add_button_pixel){
$html= insert_file_content_with_replace($html,'pixels/tiktok/ttpxbuttonconversion.js','</head>','{EVENT}',$tt_thankyou_event);
}
return $html;
}
//если задан ID Google Tag Manager, то вставляем его скрипт
function insert_gtm_script($html)
{
global $gtm_id;
if ($gtm_id==='' || empty($gtm_id)) {
return $html;
}
return insert_file_content_with_replace($html,'pixels/google/gtmcode.js','</head>','{GTMID}',$gtm_id);
}
//если задан ID Yandex Metrika, то вставляем её скрипт
function insert_yandex_script($html)
{
global $ya_id;
if ($ya_id=='' || empty($ya_id)) {
return $html;
}
return insert_file_content_with_replace($html,'pixels/yandex/yacode.js','</head>','{YAID}',$ya_id);
}
?>