Newer
Older
<?php
/**
* @file
* Installation file for Google Analytics module.
*/
use Drupal\Core\Url;
use Drupal\user\Entity\Role;
/**
* Implements hook_install().
*/
function google_analytics_install() {
// Make the default install more user and GDPR friendly.
$role = Role::load('authenticated');
$role->grantPermission('opt-in or out of google analytics tracking');
$success = $role->save();
if ($success) {
$messenger = \Drupal::messenger();
$messenger->addMessage(t('Module %module granted %permission permission to authenticated users.', ['%module' => 'Google Analytics', '%permission' => t('Opt-in or out of tracking')]), 'status');
}
}
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
/**
* Implements hook_uninstall().
*
* Remove cache directory if module is uninstalled.
*/
function google_analytics_uninstall() {
google_analytics_clear_js_cache();
}
/**
* Implements hook_requirements().
*/
function google_analytics_requirements($phase) {
$requirements = [];
if ($phase == 'runtime') {
$config = \Drupal::config('google_analytics.settings');
// Raise warning if Google user account has not been set yet.
if (!preg_match('/^UA-\d+-\d+$/', $config->get('account'))) {
$requirements['google_analytics_account'] = [
'title' => t('Google Analytics module'),
'description' => t('Google Analytics module has not been configured yet. Please configure its settings from the <a href=":url">Google Analytics settings page</a>.', [':url' => Url::fromRoute('google_analytics.admin_settings_form')->toString()]),
'severity' => REQUIREMENT_WARNING,
'value' => t('Not configured'),
];
}
// Raise warning if debugging is enabled.
if ($config->get('debug')) {
$requirements['google_analytics_debugging'] = [
'title' => t('Google Analytics module'),
'description' => t('Google Analytics module has debugging enabled. Please disable debugging setting in production sites from the <a href=":url">Google Analytics settings page</a>.', [':url' => Url::fromRoute('google_analytics.admin_settings_form')->toString()]),
'severity' => REQUIREMENT_WARNING,
'value' => t('Debugging enabled'),
];
}
}
return $requirements;
}
/**
* Migrate create only fields to gtag.js parameters.
*/
function google_analytics_update_8300() {
$config = \Drupal::configFactory()->getEditable('google_analytics.settings');
$create_only_fields = $config->get('codesnippet.create');
$parameters = [
'client_id' => $create_only_fields['clientId'],
'cookie_name' => $create_only_fields['cookieName'],
'cookie_domain' => $create_only_fields['cookieDomain'],
'cookie_expires' => $create_only_fields['cookieExpires'],
'sample_rate' => $create_only_fields['sampleRate'],
'site_speed_sample_rate' => $create_only_fields['siteSpeedSampleRate'],
'use_amp_client_id' => $create_only_fields['useAmpClientId'],
'user_id' => $create_only_fields['userId'],
];
$parameters = array_filter($parameters);
$config
->set('codesnippet.create', $parameters)
->save();
return t('Migrated create only fields to gtag.js parameters.');
}