?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/demo2/wp-content/plugins/cookiebot/src/addons/controller/addons/wp_mautic/



?? Go up: /home/webdevt/www/demo2/wp-content/plugins/cookiebot/src/addons/controller/addons

?? Viewing: Wp_Mautic.php

<?php

namespace cybot\cookiebot\addons\controller\addons\wp_mautic;

use cybot\cookiebot\addons\controller\addons\Base_Cookiebot_Plugin_Addon;

class Wp_Mautic extends Base_Cookiebot_Plugin_Addon {


	const ADDON_NAME                  = 'Mautic';
	const DEFAULT_PLACEHOLDER_CONTENT = 'Please accept [renew_consent]%cookie_types[/renew_consent] cookies to enable tracking.';
	const OPTION_NAME                 = 'mautic';
	const PLUGIN_FILE_PATH            = 'wp-mautic/wpmautic.php';
	const DEFAULT_COOKIE_TYPES        = array( 'statistics' );
	const ENABLE_ADDON_BY_DEFAULT     = false;
	const SVN_URL_BASE_PATH           = 'https://plugins.svn.wordpress.org/wp-mautic/trunk/';
	const SVN_URL_DEFAULT_SUB_PATH    = 'wpmautic.php';

	/**
	 * Disable scripts if state not accepted
	 *
	 * @since 1.5.0
	 */
	public function load_addon_configuration() {
		$this->buffer_output->add_tag(
			'wp_head',
			10,
			array(
				'MauticTrackingObject' => $this->get_cookie_types(),
			),
			false
		);
		$this->buffer_output->add_tag(
			'wp_footer',
			10,
			array(
				'MauticTrackingObject' => $this->get_cookie_types(),
			),
			false
		);

		// Remove noscript tracking
		if ( has_action( 'wp_footer', 'wpmautic_inject_noscript' ) ) {
			remove_action( 'wp_footer', 'wpmautic_inject_noscript' );
		}
	}
}


??

??