UI:
- Ein-/Ausklappen jetzt mit grossem +/- Icon statt kleinem Pfeil.
- "Entfernen" ist ein Papierkorb-Symbol (dashicon).
- Aktiver Tab klar gekennzeichnet (Akzent-Unterstrich + Farbe).
- 20px Abstand zwischen Tabs und Inhalt.
Funktionen:
- Scan erkennt Anbieter, fuer die es eine Vorlage gibt ("Vorlage verfuegbar"),
und "Vorlage uebernehmen" fuellt die komplette Vorlage statt nur Host/Pattern.
- Platzhalter: Checkbox "Diesen Dienst kuenftig immer laden" (Standard AN).
Abgewaehlt -> Inhalt wird nur einmal geladen, keine dauerhafte Einwilligung.
i18n:
- Sprachumschaltung: Deutsch fuer alle de_* Locales, Englisch fuer alle anderen
(plugin_locale-Filter). Vollstaendige englische Uebersetzung (126 Strings,
inkl. Vorlagentexte/Empfaenger) als gdpr-content-blocker-en_US.po/.mo.
- Helper-Skripte (extract/build) in hilfsdaten/.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
67 lines
2.4 KiB
PHP
67 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* Plugin Name: GDPR Content Blocker
|
|
* Plugin URI: https://lucas-orth.de
|
|
* Description: DSGVO-konformer Consent-Blocker für externe iframes. Lädt Drittinhalte erst nach aktiver Einwilligung.
|
|
* Version: 1.0.0
|
|
* Author: Lucas Orth
|
|
* Author URI: https://lucas-orth.de
|
|
* Text Domain: gdpr-content-blocker
|
|
* Domain Path: /languages
|
|
* Requires PHP: 8.1
|
|
* Requires at least: 6.0
|
|
* License: GPL-2.0-or-later
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
define( 'CB_VERSION', '1.0.0' );
|
|
define( 'CB_FILE', __FILE__ );
|
|
define( 'CB_DIR', plugin_dir_path( __FILE__ ) );
|
|
define( 'CB_URL', plugin_dir_url( __FILE__ ) );
|
|
define( 'CB_OPTION', 'cb_services' );
|
|
define( 'CB_STYLE_OPTION', 'cb_style' );
|
|
define( 'CB_LICENSE_OPTION', 'cb_license' );
|
|
|
|
// Product slug used by the license backend (extensible: one slug per plugin).
|
|
define( 'CB_PRODUCT_SLUG', 'gdpr-content-blocker' );
|
|
|
|
// License backend base URL. Override via the cb_license_api_url filter or by
|
|
// defining CB_LICENSE_API_URL in wp-config.php before this file loads.
|
|
if ( ! defined( 'CB_LICENSE_API_URL' ) ) {
|
|
define( 'CB_LICENSE_API_URL', 'https://hub.lucas-orth.de' );
|
|
}
|
|
|
|
require_once CB_DIR . 'includes/class-settings.php';
|
|
require_once CB_DIR . 'includes/class-renderer.php';
|
|
require_once CB_DIR . 'includes/class-autodetect.php';
|
|
require_once CB_DIR . 'includes/class-license.php';
|
|
require_once CB_DIR . 'includes/class-updater.php';
|
|
|
|
// Language policy: German source strings for any German locale (de_*), English
|
|
// for everything else. We map the plugin's locale accordingly and ship an
|
|
// en_US translation. Applies to admin and frontend (filter runs for both).
|
|
add_filter( 'plugin_locale', 'cb_plugin_locale', 10, 2 );
|
|
function cb_plugin_locale( $locale, $domain ) {
|
|
if ( $domain !== 'gdpr-content-blocker' ) {
|
|
return $locale;
|
|
}
|
|
return str_starts_with( (string) $locale, 'de' ) ? 'de_DE' : 'en_US';
|
|
}
|
|
|
|
add_action( 'plugins_loaded', 'cb_init' );
|
|
|
|
function cb_init(): void {
|
|
load_plugin_textdomain( 'gdpr-content-blocker', false, dirname( plugin_basename( CB_FILE ) ) . '/languages' );
|
|
|
|
CB_Settings::init();
|
|
CB_Renderer::init();
|
|
CB_Autodetect::init();
|
|
CB_License::init();
|
|
CB_Updater::init();
|
|
}
|
|
|
|
// Schedule / clear the daily license re-check.
|
|
register_activation_hook( __FILE__, [ 'CB_License', 'on_activation' ] );
|
|
register_deactivation_hook( __FILE__, [ 'CB_License', 'on_deactivation' ] );
|