-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathavailable-services.php
45 lines (44 loc) · 1.56 KB
/
available-services.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
<?php
namespace CookieLawConsent;
const SERVICES = [
[
'name' => 'googletagmanager',
'title' => 'Google Tag Manager',
'info' => 'Google Tag Manager (also known as GTM) is a free tag management solution provided by Google. Before activating it, create an account and a "container" at <a href="https://tagmanager.google.com" target="_blank">tagmanager.google.com</a>',
'enabled' => false,
'category' => null,
'fields' => [
[ 'type' => 'text', 'name' => 'containerID', 'label' => 'Container ID', 'placeholder' => 'GTM-XXX'],
]
],
[
'name' => 'googleanalytics',
'title' => 'Google Analytics 4',
'info' => 'Google Analytics is a web analytics service offered by Google that tracks and reports website traffic. Before activating it, create an account and a "property" at <a href="https://analytics.google.com" target="_blank">analytics.google.com</a>',
'enabled' => false,
'category' => null,
'fields' => [
[ 'type' => 'text', 'name' => 'propertyID', 'label' => 'Property ID', 'placeholder' => 'G-XXX'],
]
],
[
'name' => 'facebookpixel',
'title' => 'Facebook Pixel',
'info' => '',
'enabled' => false,
'category' => null,
'fields' => [
[ 'type' => 'text', 'name' => 'pixelID', 'label' => 'Pixel ID', 'placeholder' => '1234567890'],
]
],
[
'name' => 'googlemaps',
'title' => 'Google Maps',
'info' => '',
'enabled' => false,
'category' => null,
'fields' => [
[ 'type' => 'text', 'name' => 'apiKey', 'label' => 'API Key', 'placeholder' => 'ABCdefGHI123klmNOpqR'],
]
],
];