?? GreyFile — Mystic File Browser

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



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

?? Viewing: Wp_Piwik.php

<?php

namespace cybot\cookiebot\addons\controller\addons\wp_piwik;

require_once ABSPATH . 'wp-admin/includes/plugin.php';

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

class Wp_Piwik extends Base_Cookiebot_Plugin_Addon {


	const ADDON_NAME                  = 'WP Piwik';
	const DEFAULT_PLACEHOLDER_CONTENT = 'Please accept [renew_consent]%cookie_types[/renew_consent] cookies to allow Matomo statistics.';
	const OPTION_NAME                 = 'wp_piwik';
	const PLUGIN_FILE_PATH            = 'wp-piwik/wp-piwik.php';
	const DEFAULT_COOKIE_TYPES        = array( 'statistics' );
	const ENABLE_ADDON_BY_DEFAULT     = false;
	const SVN_URL_BASE_PATH           = 'https://plugins.svn.wordpress.org/wp-piwik/trunk/';
	const SVN_URL_DEFAULT_SUB_PATH    = 'wp-piwik.php';

	/**
	 * Manipulate the scripts if they are loaded.
	 *
	 * @since 1.3.0
	 */
	public function load_addon_configuration() {
		if ( ! $this->cookie_consent->are_cookie_states_accepted( $this->get_cookie_types() ) ) {
			// wp_footer
			$this->buffer_output->add_tag(
				'wp_footer',
				10,
				array(
					'matomo' => $this->get_cookie_types(),
				),
				false
			);

			// wp_head
			$this->buffer_output->add_tag(
				'wp_head',
				10,
				array(
					'matomo' => $this->get_cookie_types(),
				),
				false
			);
		}
	}
}


??

??