| Server IP : 212.114.33.6 / Your IP : 216.73.217.30 Web Server : Apache System : Linux ger18 6.12.94+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.94-1 (2026-06-20) x86_64 User : immotrainerde ( 2287) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /srv/www/immotrainerde/htdocs/wp-content/plugins/real-cookie-banner-pro/ |
Upload File : |
<?php
/**
* Main file for WordPress.
*
* @wordpress-plugin
* Plugin Name: Real Cookie Banner
* Plugin URI: https://devowl.io/wordpress-real-cookie-banner/
* Description: Obtain GDPR (DSGVO) and ePrivacy (EU cookie law) compliant opt-in consent. Find cookies and fill all legal information in your cookie banner. More than just a cookie notice!
* Author: devowl.io
* Author URI: https://devowl.io
* Version: 5.2.28
* Text Domain: real-cookie-banner
* Domain Path: /languages
* License: GPLv3 or later
* License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
*/
defined('ABSPATH') or die('No script kiddies please!'); // Avoid direct file request
/**
* Plugin constants. This file is procedural coding style for initialization of
* the plugin core and definition of plugin configuration.
*/
if (defined('RCB_PATH')) {
require_once __DIR__ . '/inc/base/others/fallback-already.php';
return;
}
define('RCB_FILE', __FILE__);
define('RCB_PATH', dirname(RCB_FILE));
define('RCB_ROOT_SLUG', 'devowl-wp');
define('RCB_SLUG', basename(RCB_PATH));
define('RCB_INC', RCB_PATH . '/inc/');
define('RCB_MIN_PHP', '7.4.0');
define('RCB_MIN_WP', '5.9.0');
define('RCB_NS', 'DevOwl\\RealCookieBanner');
define('RCB_DB_PREFIX', 'rcb'); // The table name prefix wp_{prefix}
define('RCB_OPT_PREFIX', 'rcb'); // The option name prefix in wp_options
define('RCB_SLUG_CAMELCASE', lcfirst(str_replace('-', '', ucwords(RCB_SLUG, '-'))));
//define('RCB_TD', ''); This constant is defined in the core class. Use this constant in all your __() methods
//define('RCB_VERSION', ''); This constant is defined in the core class
//define('RCB_DEBUG', true); This constant should be defined in wp-config.php to enable the Base#debug() method
define('RCB_SLUG_PRO', 'real-cookie-banner-pro');
define('RCB_SLUG_LITE', 'real-cookie-banner');
// define('RCB_PRO_VERSION', 'https://devowl.io/go/real-cookie-banner?source=rcb-lite'); This constant is defined in the core class
// Check PHP Version and print notice if minimum not reached, otherwise start the plugin core
require_once RCB_INC .
'base/others/' .
(version_compare(phpversion(), RCB_MIN_PHP, '>=') ? 'start.php' : 'fallback-php-version.php');