120 lines
2.9 KiB
PHP
120 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace Blocksy;
|
|
|
|
class GoogleAnalytics {
|
|
public function __construct() {
|
|
add_filter(
|
|
'blocksy_engagement_general_start_customizer_options',
|
|
[$this, 'generate_google_analytics_opts']
|
|
);
|
|
|
|
add_filter('blocksy:cookies-consent:scripts-to-load', function ($data) {
|
|
|
|
$ga_3_code = $this->get_ga_3_code();
|
|
$ga_4_code = $this->get_ga_4_code();
|
|
|
|
if (! empty($ga_3_code)) {
|
|
$data[] = $ga_3_code;
|
|
}
|
|
|
|
if (! empty($ga_4_code)) {
|
|
$data[] = $ga_4_code;
|
|
}
|
|
|
|
return $data;
|
|
});
|
|
|
|
if (is_admin()) return;
|
|
|
|
add_action('wp_print_scripts', function () {
|
|
if (is_admin()) return;
|
|
|
|
if (class_exists('BlocksyExtensionCookiesConsent')) {
|
|
if (! \BlocksyExtensionCookiesConsent::has_consent()) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
echo $this->get_ga_3_code();
|
|
echo $this->get_ga_4_code();
|
|
});
|
|
}
|
|
|
|
private function get_ga_4_code() {
|
|
$analytics_v4_id = blocksy_get_theme_mod('analytics_v4_id', '');
|
|
|
|
if (empty($analytics_v4_id)) {
|
|
return '';
|
|
}
|
|
|
|
ob_start(); ?>
|
|
|
|
<!-- Global site tag (gtag.js) - Google Analytics v4 -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=<?php echo $analytics_v4_id ?>"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', '<?php echo $analytics_v4_id?>');
|
|
</script>
|
|
<!-- End Google Analytics v4 -->
|
|
|
|
<?php
|
|
return ob_get_clean();
|
|
}
|
|
|
|
private function get_ga_3_code() {
|
|
$analytics_id = blocksy_get_theme_mod('analytics_id', '');
|
|
|
|
// https://stackoverflow.com/a/70251467/3220977
|
|
|
|
if (empty($analytics_id)) {
|
|
return '';
|
|
}
|
|
|
|
ob_start(); ?>
|
|
<!-- Google Analytics -->
|
|
<script>
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
ga('create', '<?php echo $analytics_id ?>', 'auto');
|
|
ga('send', 'pageview');
|
|
|
|
<?php if (blocksy_get_theme_mod('ip_anonymization', 'no') === 'yes') { ?>
|
|
ga('set', 'anonymizeIp', true);
|
|
<?php } ?>
|
|
</script>
|
|
<!-- End Google Analytics -->
|
|
<?php
|
|
|
|
return ob_get_clean();
|
|
}
|
|
|
|
public function generate_google_analytics_opts($options) {
|
|
$options[] = [
|
|
'analytics_v4_id' => [
|
|
'label' => __( 'Google Analytics v4', 'blocksy-companion' ),
|
|
'type' => 'text',
|
|
'design' => 'block',
|
|
'value' => '',
|
|
'desc' => blc_safe_sprintf(
|
|
__(
|
|
'Link your Google Analytics 4 tracking ID. More info and instructions can be found %shere%s.',
|
|
'blocksy-companion'
|
|
),
|
|
'<a href="https://support.google.com/analytics/answer/9744165?hl=en" target="_blank">',
|
|
'</a>'
|
|
),
|
|
'disableRevertButton' => true,
|
|
'setting' => [ 'transport' => 'postMessage' ],
|
|
]
|
|
];
|
|
|
|
return $options;
|
|
}
|
|
}
|