?? GreyFile — Mystic File Browser

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



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

?? Viewing: Matomo.php

<?php

namespace cybot\cookiebot\addons\controller\addons\matomo;

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

class Matomo extends Base_Cookiebot_Plugin_Addon {


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

	/**
	 * Disable scripts if state not accepted
	 *
	 * @since 1.5.0
	 */
	public function load_addon_configuration() {
		$possible_tags = array(
			'admin_footer',
			'admin_head',
			'wp_footer',
			'wp_head',
		);
		foreach ( $possible_tags as $possible_tag ) {
			$this->buffer_output->add_tag(
				$possible_tag,
				10,
				array(
					'matomo' => $this->get_cookie_types(),
				),
				false
			);
		}
	}
}


??

??