|
Server : Apache System : Linux s1230 5.15.0-139-generic #149~20.04.1 SMP Tue Jul 14 11:21:49 UTC 2026 x86_64 User : p141464 ( 418825) PHP Version : 7.4.33.12 Disable Function : NONE Directory : /html/relaunch-kmu/wp-content/plugins/real-cookie-banner/inc/ |
Upload File : |
<?php
namespace DevOwl\RealCookieBanner;
use DevOwl\RealCookieBanner\Vendor\DevOwl\CacheInvalidate\CacheInvalidator;
use DevOwl\RealCookieBanner\Vendor\DevOwl\Customize\Assets as CustomizeAssets;
use DevOwl\RealCookieBanner\Vendor\DevOwl\Freemium\Assets as FreemiumAssets;
use DevOwl\RealCookieBanner\Vendor\DevOwl\Multilingual\Iso3166OneAlpha2;
use DevOwl\RealCookieBanner\base\UtilsProvider;
use DevOwl\RealCookieBanner\lite\settings\TcfVendorConfiguration;
use DevOwl\RealCookieBanner\settings\Cookie;
use DevOwl\RealCookieBanner\settings\Consent;
use DevOwl\RealCookieBanner\settings\CookieGroup;
use DevOwl\RealCookieBanner\settings\CountryBypass;
use DevOwl\RealCookieBanner\settings\Revision;
use DevOwl\RealCookieBanner\settings\General;
use DevOwl\RealCookieBanner\view\Blocker;
use DevOwl\RealCookieBanner\settings\TCF;
use DevOwl\RealCookieBanner\view\Banner;
use DevOwl\RealCookieBanner\view\AnimateCss;
use DevOwl\RealCookieBanner\view\customize\banner\CustomCss;
use DevOwl\RealCookieBanner\view\customize\banner\Texts;
use DevOwl\RealCookieBanner\Vendor\DevOwl\RealProductManagerWpClient\Core as RpmWpClientCore;
use DevOwl\RealCookieBanner\Vendor\DevOwl\RealProductManagerWpClient\license\License;
use DevOwl\RealCookieBanner\Vendor\MatthiasWeb\Utils\Utils as UtilsUtils;
use DevOwl\RealCookieBanner\Vendor\MatthiasWeb\Utils\Assets as UtilsAssets;
use DevOwl\RealCookieBanner\Vendor\MatthiasWeb\Utils\Constants;
// @codeCoverageIgnoreStart
\defined('ABSPATH') or die('No script kiddies please!');
// Avoid direct file request
// @codeCoverageIgnoreEnd
/**
* Asset management for frontend scripts and styles.
* @internal
*/
class Assets
{
use UtilsProvider;
use UtilsAssets;
use FreemiumAssets;
use CustomizeAssets;
const TCF_STUB_PATH = '@iabtechlabtcf/stub/lib/stub.js';
/**
* The registered handle name for the enqueued banner.
*/
public $handleBanner = null;
/**
* The registered handle name for the enqueued blocker.
*/
public $handleBlocker = null;
/**
* The current post ID captured by the body_class filter.
*
* @var int[]
*/
protected $currentPostId = [];
/**
* Get the current post ID through the wp filter. At this time, the
* wp filter is the only way to reliably detect the current post ID. Plugins like
* Visual Composer run into issues in `wp_enqueue_scripts` returning the wrong ID (in Visual Composer,
* the ID of Theme Builder > Headers is returned).
*/
public function wp()
{
if (\is_singular()) {
$this->currentPostId = [\get_the_ID()];
}
}
/**
* See `DeliverAnonymousAsset`.
*/
public function createHashedAssets()
{
$filePath = RCB_PATH . '/' . $this->getPublicFolder() . '%s.' . ($this->isPro() ? 'pro' : 'lite') . '.js';
$libraryFilePath = RCB_PATH . '/' . $this->getPublicFolder(\true) . '/%s';
$handleName = RCB_SLUG . '-%s';
$anonymousAssetsBuilder = \DevOwl\RealCookieBanner\Core::getInstance()->getAnonymousAssetBuilder();
$isTcf = TCF::getInstance()->isActive() && TcfVendorConfiguration::getInstance()->getAllCount() > 0;
$bannerName = $isTcf ? 'banner_tcf' : 'banner';
$blockerName = $isTcf ? 'blocker_tcf' : 'blocker';
$anonymousAssetsBuilder->build(\sprintf($handleName, 'vendor-' . RCB_SLUG . '-' . $bannerName), \sprintf($filePath, 'vendor-' . $bannerName), 'vendorBanner');
$anonymousAssetsBuilder->build(\sprintf($handleName, 'vendor-' . RCB_SLUG . '-' . $blockerName), \sprintf($filePath, 'vendor-' . $blockerName), 'vendorBlocker');
$anonymousAssetsBuilder->build(\sprintf($handleName, $bannerName), \sprintf($filePath, $bannerName), 'banner');
$anonymousAssetsBuilder->build(\sprintf($handleName, $blockerName), \sprintf($filePath, $blockerName), 'blocker');
if ($isTcf) {
$anonymousAssetsBuilder->build('iabtcf-stub', \sprintf($libraryFilePath, self::TCF_STUB_PATH), 'iabtcf-stub');
}
}
/**
* Enqueue scripts and styles depending on the type. This function is called
* from both admin_enqueue_scripts and wp_enqueue_scripts. You can check the
* type through the $type parameter. In this function you can include your
* external libraries from src/public/lib, too.
*
* @param string $type The type (see utils Assets constants)
* @param string $hook_suffix The current admin page
*/
public function enqueue_scripts_and_styles($type, $hook_suffix = null)
{
// Generally check if an entrypoint should be loaded
$core = \DevOwl\RealCookieBanner\Core::getInstance();
$banner = $core->getBanner();
$isConfigPage = $core->getConfigPage()->isVisible($hook_suffix);
$shouldLoadAssets = $banner->shouldLoadAssets($type);
$realUtils = RCB_ROOT_SLUG . '-real-utils-helper';
// Do not enqueue anything if not needed
if (!$isConfigPage && !\in_array($type, [Constants::ASSETS_TYPE_CUSTOMIZE], \true) && !$shouldLoadAssets) {
// We need to enqueue real-utils helper always in backend for shared helper integrations
if ($type === Constants::ASSETS_TYPE_ADMIN) {
$this->enqueueUtils();
\wp_enqueue_script($realUtils);
\wp_enqueue_style($realUtils);
}
return;
}
// Your assets implementation here... See utils Assets for enqueue* methods
// $useNonMinifiedSources = $this->useNonMinifiedSources(); // Use this variable if you need to differ between minified or non minified sources
// Our utils package relies on jQuery, but this shouldn't be a problem as the most themes still use jQuery (might be replaced with https://github.com/github/fetch)
$scriptDeps = [];
// Mobx should not be loaded on any frontend page, but in customize preview (see `customize_banner.tsx`)
if ($type === Constants::ASSETS_TYPE_CUSTOMIZE || $isConfigPage || \is_customize_preview()) {
$scriptDeps = $this->enqueueUtils();
$scriptDeps[] = 'moment';
$scriptDeps[] = 'wp-editor';
}
// Enqueue customize helpers and add the handle to our dependencies
$this->probablyEnqueueCustomizeHelpers($scriptDeps, $isConfigPage);
// When the banner should be shown, do not enqueue real utils
if (!$shouldLoadAssets) {
\array_push($scriptDeps, $realUtils);
}
// Enqueue plugin entry points
if ($isConfigPage) {
$handle = $this->enqueueAdminPage($scriptDeps);
} elseif ($type === Constants::ASSETS_TYPE_CUSTOMIZE) {
$handle = $this->enqueueScript('customize', [[$this->isPro(), 'customize.pro.js'], 'customize.lite.js'], $scriptDeps);
$this->enqueueStyle('customize', 'customize.css');
} elseif ($shouldLoadAssets) {
$handle = $this->enqueueBanner($scriptDeps);
// Enqueue blocker if enabled
if (General::getInstance()->isBlockerActive() && \in_array($type, [Constants::ASSETS_TYPE_FRONTEND, Constants::ASSETS_TYPE_LOGIN], \true)) {
$this->enqueueBlocker(\array_merge($scriptDeps, [$handle]));
}
}
/**
* If you return `true`, the optimized wp_localize_script will be used:
*
* - Moves the JSON to the footer but keeps the banner script in the header
* - Bypasses the JSON.parse call from the HTML parsing process and just exposes the raw JSON string in the inline script in the HTML
* - This improves performance as the JSON parsing is offloaded to a deferred script
*
* @hook RCB/Experimental/OptimizedWpLocalizeScript
* @param {boolean} $useOptimizedWpLocalizeScript
* @return {boolean}
* @since 5.2.10
*/
$useOptimizedWpLocalizeScript = $this->isAdvancedEnqueueEnabled($handle, Constants::ASSETS_ADVANCED_ENQUEUE_FEATURE_DEFER) ? \apply_filters('RCB/Experimental/OptimizedWpLocalizeScript', \false) : \false;
// Localize once per asset type: `[rcb-consent]` inside the cookie policy would otherwise
// rebuild the TCF frontend JSON on every nested shortcode during `the_content`.
static $localizedTypes = [];
$localizeHandle = $useOptimizedWpLocalizeScript ? $this->enqueueFooterDummyHandle() : $handle;
if (!empty($localizeHandle) && !isset($localizedTypes[$type])) {
$localizedTypes[$type] = \true;
$this->anonymous_localize_script($localizeHandle, 'realCookieBanner', $this->localizeScript($type), [
'makeBase64Encoded' => [Cookie::META_NAME_CODE_OPT_IN, Cookie::META_NAME_CODE_OPT_OUT, Cookie::META_NAME_CODE_ON_PAGE_LOAD, 'contactEmail'],
'useCore' => !\in_array($type, [Constants::ASSETS_TYPE_FRONTEND, Constants::ASSETS_TYPE_LOGIN], \true) && !\is_customize_preview(),
// Only allow lazy parse in frontend (also not in customizer) as this conflicts with Mobx observables
'lazyParse' => \in_array($type, [Constants::ASSETS_TYPE_FRONTEND], \true) && !\is_customize_preview() ? ['others.frontend.tcf', 'others.frontend.groups', 'others.customizeValuesBanner'] : [],
'bypassJsonParse' => $useOptimizedWpLocalizeScript,
]);
}
}
/**
* Enqueue admin page (currently only the config).
*
* @param string[] $scriptDeps
*/
public function enqueueAdminPage($scriptDeps)
{
\array_unshift($scriptDeps, 'wp-codemirror', 'jquery-ui-sortable');
\wp_enqueue_media();
// Enqueue code mirror to edit JavaScript files
$cm_settings['codeEditor'] = \wp_enqueue_code_editor(['type' => 'text/html']);
\wp_localize_script('jquery', 'cm_settings', $cm_settings);
// real-product-manager-wp-client (for licensing purposes)
\array_unshift($scriptDeps, RpmWpClientCore::getInstance()->getAssets()->enqueue($this));
$handle = $this->enqueueScript('admin', [[$this->isPro(), 'admin.pro.js'], 'admin.lite.js'], $scriptDeps);
$this->enqueueStyle('admin', 'admin.css');
return $handle;
}
/**
* Enqueue the banner.
*
* @param string[] $scriptDeps
*/
public function enqueueBanner($scriptDeps)
{
// Only enqueue once
static $enqueued = \false;
if ($enqueued) {
return;
}
$enqueued = \true;
$excludeAssets = \DevOwl\RealCookieBanner\Core::getInstance()->getExcludeAssets();
$useNonMinifiedSources = $this->useNonMinifiedSources();
$isTcf = TCF::getInstance()->isActive() && TcfVendorConfiguration::getInstance()->getAllCount() > 0;
$anonymousAssetsBuilder = \DevOwl\RealCookieBanner\Core::getInstance()->getAnonymousAssetBuilder();
$isAntiAdBlock = $this->isAntiAdBlockActive();
// Enqueue IAB TCF stub
if ($isTcf) {
$handle = $this->enqueueLibraryScript('iabtcf-stub', self::TCF_STUB_PATH);
\array_unshift($scriptDeps, $handle);
if ($handle !== \false && $isAntiAdBlock) {
$anonymousAssetsBuilder->ready('iabtcf-stub');
}
}
// Enqueue scripts in customize preview
if (\is_customize_preview()) {
$handle = $this->enqueueScript('customize_banner', [[$this->isPro(), 'customize_banner.pro.js'], 'customize_banner.lite.js'], $scriptDeps);
} else {
// Enqueue banner in frontend page (determine correct bundle depending on TCF status)
$handle = $this->enqueueScript($isTcf ? 'banner_tcf' : 'banner', [[$isTcf, 'banner_tcf.pro.js'], [$this->isPro(), 'banner.pro.js'], 'banner.lite.js'], $scriptDeps, \false);
// Modify the URL so it is obtained by a hashed root URL
if ($handle !== \false && $isAntiAdBlock) {
$anonymousAssetsBuilder->ready('banner', !$useNonMinifiedSources);
$anonymousAssetsBuilder->ready('vendorBanner', !$useNonMinifiedSources);
}
// Populate `codeOnPageLoad`
\add_action('wp_head', [\DevOwl\RealCookieBanner\Core::getInstance()->getBanner(), 'wp_head'], 2);
}
// animate.css (only when animations are enabled)
$customize = \DevOwl\RealCookieBanner\Core::getInstance()->getBanner()->getCustomize();
$animateCss = new AnimateCss($customize);
$hasAnimations = $animateCss->hasConfiguredAnimations();
$useClientAnimateCss = $hasAnimations && !\is_customize_preview() && $animateCss->canInlineSubset();
if ((\is_customize_preview() || $hasAnimations) && !$useClientAnimateCss) {
$handleAnimateCss = $this->enqueueLibraryStyle('animate-css', [[$useNonMinifiedSources, 'animate.css/animate.css'], 'animate.css/animate.min.css']);
$excludeAssets->byHandle('css', $handleAnimateCss);
}
if ($handle !== \false) {
$preloadJs = ['iabtcf-stub', $handle];
$preloadCss = $useClientAnimateCss ? [] : ['animate-css'];
$advancedFeatures = [Constants::ASSETS_ADVANCED_ENQUEUE_FEATURE_PRIORITY_QUEUE];
if (!$excludeAssets->hasFailureSupportPluginActive()) {
$advancedFeatures[] = Constants::ASSETS_ADVANCED_ENQUEUE_FEATURE_DEFER;
$advancedFeatures[] = Constants::ASSETS_ADVANCED_ENQUEUE_FEATURE_PRELOADING;
}
// Only enable the advanced enqueue when we are not relying on `react-dom` as this could lead to issues with
// e.g. WP Fastest Cache which moves `react-dom` to the body footer -> "Undefined variable ReactDOM" error.
if (!\is_customize_preview()) {
$this->enableAdvancedEnqueue($preloadJs, $advancedFeatures, 'script', $this->getBannerJavaScriptChunkPreloadNames());
$this->enableAdvancedEnqueue($preloadCss, $advancedFeatures, 'style');
}
$excludeAssets->byHandle('js', $preloadJs);
$excludeAssets->byHandle('css', $preloadCss);
}
// Add window.consentApi stubs
\wp_add_inline_script($handle, '((a,b)=>{a[b]||(a[b]={unblockSync:()=>undefined},["consentSync"].forEach(c=>a[b][c]=()=>({cookie:null,consentGiven:!1,cookieOptIn:!0})),["consent","consentAll","unblock"].forEach(c=>a[b][c]=(...d)=>new Promise(e=>a.addEventListener(b,()=>{a[b][c](...d).then(e)},{once:!0}))))})(window,"consentApi");', 'before');
$this->handleBanner = $handle;
return $handle;
}
/**
* Webpack chunk names for `<link rel="preload">` hints. Omitted in banner-less mode when the cookie
* banner UI is not shown on the current page (avoids unused-preload console warnings).
*
* @return string[]
*/
private function getBannerJavaScriptChunkPreloadNames()
{
$defaultChunks = ['banner-ui', 'banner-lazy', 'banner-common-async', 'vendor-banner-common-async'];
$consent = Consent::getInstance();
if (!$consent->isBannerLessConsent() || \is_customize_preview()) {
return $defaultChunks;
}
$showOnPageIds = $consent->getBannerLessConsentShowOnPageIds();
if (\count($showOnPageIds) === 0) {
return [];
}
$pageId = \get_queried_object_id();
if ($pageId > 0 && \in_array($pageId, $showOnPageIds, \true)) {
return $defaultChunks;
}
return [];
}
/**
* Enqueue the blocker.
*
* @param string[] $scriptDeps
*/
public function enqueueBlocker($scriptDeps)
{
$useNonMinifiedSources = $this->useNonMinifiedSources();
$anonymousAssetsBuilder = \DevOwl\RealCookieBanner\Core::getInstance()->getAnonymousAssetBuilder();
$isTcf = TCF::getInstance()->isActive() && TcfVendorConfiguration::getInstance()->getAllCount() > 0;
$isAntiAdBlock = $this->isAntiAdBlockActive();
$handleName = $isTcf ? 'blocker_tcf' : 'blocker';
$handle = $this->enqueueScript($handleName, [[$isTcf, 'blocker_tcf.pro.js'], [$this->isPro(), 'blocker.pro.js'], 'blocker.lite.js'], $scriptDeps);
if ($isAntiAdBlock) {
$anonymousAssetsBuilder->ready('blocker', !$useNonMinifiedSources);
$anonymousAssetsBuilder->ready('vendorBlocker', !$useNonMinifiedSources);
}
if ($handle !== \false) {
$this->enableDeferredEnqueue($handle);
$this->enablePreloadEnqueue($handle, 'script');
$excludeAssets = \DevOwl\RealCookieBanner\Core::getInstance()->getExcludeAssets();
$excludeAssets->byHandle('js', [$handle]);
}
$this->handleBlocker = $handle;
return $handle;
}
/**
* Localize the WordPress backend and frontend. If you want to provide URLs to the
* frontend you have to consider that some JS libraries do not support umlauts
* in their URI builder. For this you can use utils Assets#getAsciiUrl.
*
* Also, if you want to use the options typed in your frontend you should
* adjust the following file too: src/public/ts/store/option.tsx
*
* @param string $context
* @return array
*/
public function overrideLocalizeScript($context)
{
global $wp_version;
$result = [];
$core = \DevOwl\RealCookieBanner\Core::getInstance();
$cookieConsentManagement = $core->getCookieConsentManagement();
$frontend = $cookieConsentManagement->getFrontend();
$banner = $core->getBanner();
$bannerCustomize = $banner->getCustomize();
$notices = $core->getNotices();
$licenseActivation = $core->getRpmInitiator()->getPluginUpdater()->getCurrentBlogLicense()->getActivation();
$showLicenseFormImmediate = !$licenseActivation->hasInteractedWithFormOnce();
$isLicensed = !empty($licenseActivation->getCode());
$isDevLicense = $licenseActivation->getInstallationType() === License::INSTALLATION_TYPE_DEVELOPMENT;
$frontendJson = $frontend->toJson();
$lazyLoadedData = $frontend->prepareLazyData($frontendJson, \true);
$anonymousAssetBuilder = $core->getAnonymousAssetBuilder();
$pageIds = $this->currentPostId;
if (\is_singular()) {
$pageId = \get_the_ID();
$pageIds[] = $pageId;
$postType = \get_post_type($pageId);
if (\is_string($postType)) {
$pageIdOriginal = $core->getCompLanguage()->getOriginalPostId($pageId, $postType);
if ($pageIdOriginal !== $pageId) {
$pageIds[] = $pageIdOriginal;
}
}
}
if ($context === Constants::ASSETS_TYPE_ADMIN) {
$colorScheme = \DevOwl\RealCookieBanner\Utils::get_admin_colors();
if (\count($colorScheme) < 4) {
// Backwards-compatibility: The "modern" color scheme has only three colors, but for all
// our graphs and charts we need at least 4
$colorScheme[] = $colorScheme[0];
}
$result = ['installationDateIso' => \mysql2date('c', \get_option(\DevOwl\RealCookieBanner\Activator::OPTION_NAME_INSTALLATION_DATE, \time())), 'showLicenseFormImmediate' => $showLicenseFormImmediate, 'showNoticeAnonymousScriptNotWritable' => $anonymousAssetBuilder->getContentDir() === \false, 'assetsUrl' => $core->getAdInitiator()->getAssetsUrl(), 'customizeValuesBanner' => $bannerCustomize->localizeValues()['customizeValuesBanner'], 'customizeBannerUrl' => $bannerCustomize->getUrl(), 'adminUrl' => \admin_url(), 'colorScheme' => $colorScheme, 'cachePlugins' => CacheInvalidator::getInstance()->getLabels(), 'modalHints' => $notices->getClickedModalHints(), 'isDemoEnv' => \DevOwl\RealCookieBanner\DemoEnvironment::getInstance()->isDemoEnv(), 'isConfigProNoticeVisible' => $notices->isConfigProNoticeVisible(), 'activePlugins' => UtilsUtils::getActivePluginsMap(), 'ageNoticeCountryAgeMap' => Consent::AGE_NOTICE_COUNTRY_AGE_MAP, 'predefinedCountryBypassLists' => CountryBypass::PREDEFINED_COUNTRY_LISTS, 'defaultCookieGroupTexts' => CookieGroup::getInstance()->getDefaultDescriptions(\true), 'useEncodedStringForScriptInputs' => \version_compare($wp_version, '5.4.0', '>='), 'resetUrl' => \add_query_arg(['_wpnonce' => \wp_create_nonce('rcb-reset-all'), 'rcb-reset-all' => 1], $core->getConfigPage()->getUrl()), 'resetTexts' => ['url' => \add_query_arg(['_wpnonce' => \wp_create_nonce('rcb-reset-texts'), 'rcb-reset-texts' => 1], $core->getConfigPage()->getUrl())], 'capabilities' => ['activate_plugins' => \current_user_can('activate_plugins')]];
} elseif (\is_customize_preview()) {
$result = \array_merge($bannerCustomize->localizeIds(), $bannerCustomize->localizeValues(), $bannerCustomize->localizeDefaultValues(), ['poweredByTexts' => $core->getCompLanguage()->translateArray(Texts::getPoweredByLinkTexts()), 'isPoweredByLinkDisabledByException' => $bannerCustomize->isPoweredByLinkDisabledByException()]);
$frontendJson['lazyLoadedDataForSecondView'] = $lazyLoadedData;
} elseif ($banner->shouldLoadAssets($context)) {
$result = $bannerCustomize->localizeValues();
$bannerCustomize->expandLocalizeValues($result);
// We do not need this in frontend as the cookie policy is server-side rendered
unset($result['customizeValuesBanner']['cookiePolicy']);
$animateCss = new AnimateCss($bannerCustomize);
if ($animateCss->hasConfiguredAnimations() && $animateCss->canInlineSubset()) {
$result['animateCss'] = $animateCss->buildInlineCss();
}
}
if (\in_array($context, [Constants::ASSETS_TYPE_ADMIN, Constants::ASSETS_TYPE_CUSTOMIZE], \true)) {
/**
* Create customized hints for specific actions in frontend. Currently supported:
* `deleteCookieGroup`, `deleteCookie`, `export`, `dashboardTile`, `proDialog`. For detailed
* structure for this parameters please check out TypeScript typings in `types/otherOptions.tsx`.
*
* @hook RCB/Hints
* @param {array} $hints
* @return {array}
* @ignore
*/
$result['hints'] = \apply_filters('RCB/Hints', ['deleteCookieGroup' => [], 'deleteCookie' => [], 'export' => [], 'dashboardTile' => [], 'proDialog' => null]);
}
$isPreventPreDecision = $frontend->isPreventPreDecision($pageIds);
if (!$isPreventPreDecision) {
/**
* Determine, if the predecision handler should be executed in the frontend.
* If you return `true`, the banner never gets shown.
*
* @hook RCB/IsPreventPreDecision
* @param {boolean} $isPreventPreDecision
* @return {boolean}
* @since 2.12.1
*/
$isPreventPreDecision = \apply_filters('RCB/IsPreventPreDecision', $isPreventPreDecision);
}
return \apply_filters('RCB/Localize', \array_merge($result, $this->localizeFreemiumScript(), ['frontend' => $frontendJson, 'anonymousContentUrl' => $anonymousAssetBuilder->generateFolderSrc(), 'anonymousHash' => $anonymousAssetBuilder->getContentDir() && !$this->useNonMinifiedSources() && $this->isAntiAdBlockActive() ? $anonymousAssetBuilder->getHash() : null, 'hasDynamicPreDecisions' => \has_filter('RCB/Consent/DynamicPreDecision'), 'isLicensed' => $isLicensed, 'isDevLicense' => $isDevLicense, 'multilingualSkipHTMLForTag' => $core->getCompLanguage()->getSkipHTMLForTag(), 'isCurrentlyInTranslationEditorPreview' => $core->getCompLanguage()->isCurrentlyInEditorPreview(), 'defaultLanguage' => $core->getCompLanguage()->getDefaultLanguage(), 'currentLanguage' => $core->getCompLanguage()->getCurrentLanguage(), 'activeLanguages' => $core->getCompLanguage()->getActiveLanguages(), 'context' => Revision::getInstance()->getContextVariablesString(), 'iso3166OneAlpha2' => Iso3166OneAlpha2::getSortedCodes(), 'visualParentSelectors' => Blocker::VISUAL_PARENT_SELECTORS, 'isPreventPreDecision' => $isPreventPreDecision, 'isInvalidateImplicitUserConsent' => $frontend->isInvalidateImplicitUserConsent($pageIds), 'dependantVisibilityContainers' => Blocker::DEPENDANT_VISIBILITY_CONTAINERS, 'disableDeduplicateExceptions' => Blocker::DISABLE_DEDUPLICATE_EXCEPTIONS, 'bannerDesignVersion' => Banner::DESIGN_VERSION, 'bannerI18n' => \array_merge($core->getCompLanguage()->translateArray([
'showMore' => \__('Show more', 'real-cookie-banner'),
'hideMore' => \__('Hide', 'real-cookie-banner'),
// translators:
'showLessRelevantDetails' => \_x('Show more details (%s)', 'legal-text', 'real-cookie-banner'),
// translators:
'hideLessRelevantDetails' => \_x('Hide more details (%s)', 'legal-text', 'real-cookie-banner'),
'other' => \_x('Other', 'legal-text', 'real-cookie-banner'),
'legalBasis' => ['label' => \_x('Use on legal basis of', 'legal-text', 'real-cookie-banner'), 'consentPersonalData' => \_x('Consent for processing personal data', 'legal-text', 'real-cookie-banner'), 'consentStorage' => \_x('Consent for storing or accessing information on the terminal equipment of the user', 'legal-text', 'real-cookie-banner'), 'legitimateInterestPersonalData' => \_x('Legitimate interest for the processing of personal data', 'legal-text', 'real-cookie-banner'), 'legitimateInterestStorage' => \_x('Provision of explicitly requested digital service for storing or accessing information on the terminal equipment of the user', 'legal-text', 'real-cookie-banner'), 'legalRequirementPersonalData' => \_x('Compliance with a legal obligation for processing of personal data', 'legal-text', 'real-cookie-banner')],
// See als `useTerritorialLegalBasisArticles.tsx`
'territorialLegalBasisArticles' => [General::TERRITORIAL_LEGAL_BASIS_GDPR => ['dataProcessingInUnsafeCountries' => \_x('Art. 49 (1) (a) GDPR', 'legal-text', 'real-cookie-banner')], General::TERRITORIAL_LEGAL_BASIS_DSG_SWITZERLAND => ['dataProcessingInUnsafeCountries' => \_x('Art. 17 (1) (a) DSG (Switzerland)', 'legal-text', 'real-cookie-banner')]],
'legitimateInterest' => \_x('Legitimate interest', 'legal-text', 'real-cookie-banner'),
'consent' => \_x('Consent', 'legal-text', 'real-cookie-banner'),
'crawlerLinkAlert' => \_x('We have recognized that you are a crawler/bot. Only natural persons must consent to cookies and processing of personal data. Therefore, the link has no function for you.', 'legal-text', 'real-cookie-banner'),
'technicalCookieDefinitions' => \_x('Technical cookie definitions', 'legal-text', 'real-cookie-banner'),
'technicalCookieName' => \_x('Technical cookie name', 'legal-text', 'real-cookie-banner'),
'usesCookies' => \_x('Uses cookies', 'legal-text', 'real-cookie-banner'),
'cookieRefresh' => \_x('Cookie refresh', 'legal-text', 'real-cookie-banner'),
'usesNonCookieAccess' => \_x('Uses cookie-like information (LocalStorage, SessionStorage, IndexDB, etc.)', 'legal-text', 'real-cookie-banner'),
'host' => \_x('Host', 'legal-text', 'real-cookie-banner'),
'duration' => \_x('Duration', 'legal-text', 'real-cookie-banner'),
'noExpiration' => \_x('No expiration', 'legal-text', 'real-cookie-banner'),
'type' => \_x('Type', 'legal-text', 'real-cookie-banner'),
'purpose' => \_x('Purpose', 'legal-text', 'real-cookie-banner'),
'purposes' => \_x('Purposes', 'legal-text', 'real-cookie-banner'),
'description' => \_x('Description', 'legal-text', 'real-cookie-banner'),
'optOut' => \_x('Opt-out', 'legal-text', 'real-cookie-banner'),
'optOutDesc' => \_x('Cookie can be set to store opt-out of the described behaviour.', 'legal-text', 'real-cookie-banner'),
'headerTitlePrivacyPolicyHistory' => \_x('History of your privacy settings', 'legal-text', 'real-cookie-banner'),
'skipToConsentChoices' => \_x('Skip to consent choices', 'legal-text', 'real-cookie-banner'),
'historyLabel' => \_x('Show consent from', 'legal-text', 'real-cookie-banner'),
'historyItemLoadError' => \_x('Reading the consent has failed. Please try again later!', 'legal-text', 'real-cookie-banner'),
'historySelectNone' => \_x('Not yet consented to', 'legal-text', 'real-cookie-banner'),
'provider' => \_x('Provider', 'legal-text', 'real-cookie-banner'),
'providerContactPhone' => \_x('Phone', 'legal-text', 'real-cookie-banner'),
'providerContactEmail' => \_x('Email', 'legal-text', 'real-cookie-banner'),
'providerContactLink' => \_x('Contact form', 'legal-text', 'real-cookie-banner'),
'providerPrivacyPolicyUrl' => \_x('Privacy Policy', 'legal-text', 'real-cookie-banner'),
'providerLegalNoticeUrl' => \_x('Legal notice', 'legal-text', 'real-cookie-banner'),
'nonStandard' => \_x('Non-standardized data processing', 'legal-text', 'real-cookie-banner'),
'nonStandardDesc' => \_x('Some services set cookies and/or process personal data without complying with consent communication standards. These services are divided into several groups. So-called "essential services" are used based on legitimate interest and cannot be opted out (an objection may have to be made by email or letter in accordance with the privacy policy), while all other services are used only after consent has been given.', 'legal-text', 'real-cookie-banner'),
// translators:
'dataProcessingInThirdCountries' => \_x('Data processing in third countries', 'legal-text', 'real-cookie-banner'),
'safetyMechanisms' => ['label' => \_x('Safety mechanisms for data transmission', 'legal-text', 'real-cookie-banner'), 'standardContractualClauses' => \_x('Standard contractual clauses', 'legal-text', 'real-cookie-banner'), 'adequacyDecision' => \_x('Adequacy decision', 'legal-text', 'real-cookie-banner'), 'eu' => \_x('EU', 'legal-text', 'real-cookie-banner'), 'switzerland' => \_x('Switzerland', 'legal-text', 'real-cookie-banner'), 'bindingCorporateRules' => \_x('Binding corporate rules', 'legal-text', 'real-cookie-banner'), 'contractualGuaranteeSccSubprocessors' => \_x('Contractual guarantee for standard contractual clauses with sub-processors', 'legal-text', 'real-cookie-banner')],
'durationUnit' => ['n1' => ['s' => \__('second', 'real-cookie-banner'), 'm' => \__('minute', 'real-cookie-banner'), 'h' => \__('hour', 'real-cookie-banner'), 'd' => \__('day', 'real-cookie-banner'), 'mo' => \__('month', 'real-cookie-banner'), 'y' => \__('year', 'real-cookie-banner')], 'nx' => ['s' => \__('seconds', 'real-cookie-banner'), 'm' => \__('minutes', 'real-cookie-banner'), 'h' => \__('hours', 'real-cookie-banner'), 'd' => \__('days', 'real-cookie-banner'), 'mo' => \__('months', 'real-cookie-banner'), 'y' => \__('years', 'real-cookie-banner')]],
'close' => \__('Close', 'real-cookie-banner'),
'closeWithoutSaving' => \__('Close without saving', 'real-cookie-banner'),
'yes' => \__('Yes', 'real-cookie-banner'),
'no' => \__('No', 'real-cookie-banner'),
'unknown' => \__('Unknown', 'real-cookie-banner'),
'none' => \__('None', 'real-cookie-banner'),
'noLicense' => \__('No license activated - not for production use!', 'real-cookie-banner'),
'devLicense' => \__('Product license not for production use!', 'real-cookie-banner'),
'devLicenseLearnMore' => \__('Learn more', 'real-cookie-banner'),
'devLicenseLink' => \__('https://devowl.io/knowledge-base/license-installation-type/', 'real-cookie-banner'),
// translators:
'andSeparator' => \__(' and ', 'real-cookie-banner'),
'deprecated' => [
// @deprecated Replaced by `safetyMechanisms`
'appropriateSafeguard' => \_x('Appropriate safeguard', 'legal-text', 'real-cookie-banner'),
// @deprecated Replaced by `dataProcessingInThirdCountries`
'dataProcessingInUnsafeCountries' => \_x('Data processing in unsafe third countries', 'legal-text', 'real-cookie-banner'),
// @deprecated Replaced by `legalRequirementPersonalData`
'legalRequirement' => \_x('Compliance with a legal obligation', 'legal-text', 'real-cookie-banner'),
],
], [], null, ['legal-text'])), 'pageRequestUuid4' => $core->getPageRequestUuid4(), 'pageByIdUrl' => \add_query_arg('page_id', '', \home_url()), 'pluginUrl' => $core->getPluginData('PluginURI')]), $context);
}
/**
* Provide predefined links for `RCB/Hints` `dashboardTile`'s configuration.
*
* @param array $hints
*/
public function hints_dashboard_tile_predefined_links($hints)
{
foreach ($hints['dashboardTile'] as &$tile) {
if (isset($tile['links'])) {
foreach ($tile['links'] as &$link) {
if ($link === 'learnAboutPro') {
$link = ['link' => \sprintf('%s&feature=partner-dashboard-tile', RCB_PRO_VERSION), 'linkText' => \__('Learn more', 'real-cookie-banner')];
}
}
}
}
return $hints;
}
/**
* Check if the current banner is configured to provide an anti ad block system.
*/
protected function isAntiAdBlockActive()
{
return \bool_from_yn(\DevOwl\RealCookieBanner\Core::getInstance()->getBanner()->getCustomize()->getSetting(CustomCss::SETTING_ANTI_AD_BLOCKER));
}
/*
* Enqueue our `rcb-scan` client-worker for `real-queue`.
*/
public function real_queue_enqueue_scripts($handle)
{
$handle = $this->enqueueScript('queue', [[$this->isPro(), 'queue.pro.js'], 'queue.lite.js'], [$handle]);
\wp_localize_script($handle, 'realCookieBannerQueue', ['originalHomeUrl' => \DevOwl\RealCookieBanner\Utils::getOriginalHomeUrl(), 'blogId' => \get_current_blog_id()]);
}
/**
* Enqueue assets for Fluent Community. With this hook, we are in the `<head` section.
*
* @see https://fluentcommunity.co/
*/
public function fluent_community_portal_head()
{
global $wp_scripts;
$this->enqueue_scripts_and_styles(Constants::ASSETS_TYPE_FRONTEND);
// The plugin does not automatically print the head, instead it uses `do_items` explicitly
$wp_scripts->do_items($this->handleBanner);
\add_action('fluent_community/portal_html', [\DevOwl\RealCookieBanner\Core::getInstance()->getBanner(), 'wp_body_open']);
\add_action('fluent_community/portal_footer', function () use($wp_scripts) {
// With this action, we are in the footer (end of `</body>`)
$wp_scripts->do_items($this->handleBlocker);
});
}
}