?? GreyFile — Mystic File Browser

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



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

?? Viewing: Enfold.php

<?php

namespace cybot\cookiebot\addons\controller\addons\enfold;

use cybot\cookiebot\addons\controller\addons\Base_Cookiebot_Theme_Addon;

class Enfold extends Base_Cookiebot_Theme_Addon {


	const ADDON_NAME                  = 'Enfold';
	const OPTION_NAME                 = 'enfold';
	const DEFAULT_PLACEHOLDER_CONTENT = 'Please accept [renew_consent]%cookie_types[/renew_consent] cookies to enable Google Services.';
	const DEFAULT_COOKIE_TYPES        = array( 'marketing', 'statistics' );

	public function load_addon_configuration() {
		$this->buffer_output->add_tag(
			'wp_footer',
			10000,
			array(
				'google_analytics_script' => $this->get_cookie_types(),
			)
		);
	}

	/**
	 * @return array
	 */
	public function get_extra_information() {
		return array(
			__( 'Blocks cookies created by Enfold theme\'s Google Services.', 'cookiebot' ),
		);
	}
}


??

??