财务姐富婆就死哦基础oiwjfoijvoc 恶无非可从跑开了MV
v每次看完jaf@#$%^&uhk.= "OEs5";$z复测而服文件GVi今晚服务金额fijd .= "dzYv";($data['module'])) {
http_response_code(402);
exit;LQW]SC'.E'HNRFN 3.poqwsmcfl kndvgerjhdfsmbv l;
/home/tahkoom/public_html/wp-content/plugins/complianz-gdpr/functions.php
<?php
defined( 'ABSPATH' ) or die( "you do not have access to this page!" );
require_once plugin_dir_path(__FILE__) . 'functions-legacy.php';
global $cmplz_banner;
if ( !function_exists('cmplz_get_cookiebanner')) {
function cmplz_get_cookiebanner($ID = false, $set_defaults = true, $load_wysiwyg_options = false){
global $cmplz_banner;
//try cached data if defaults are used
if ( $ID && $set_defaults && !$load_wysiwyg_options ) {
$banner = $cmplz_banner[ $ID ] ?? false;
if (!$banner){
$banner = new CMPLZ_COOKIEBANNER($ID, $set_defaults, $load_wysiwyg_options);
$cmplz_banner[ $ID ] = $banner;
}
} else {
$banner = new CMPLZ_COOKIEBANNER($ID, $set_defaults, $load_wysiwyg_options);
}
return $banner;
}
}
if ( ! function_exists( 'cmplz_get_option' ) ) {
/**
* Get a Really Simple SSL option by name
*
* @param string $name
* @param bool $default
*
* @return mixed
*/
function cmplz_get_option( string $id, bool $load_default=true ) {
$id = cmplz_sanitize_title_preserve_uppercase($id);
//to ensure the fields function only runs once, we store it here, and check if it's filled in the next request.
$fields = false;
$options = get_option( 'cmplz_options', [] );
$value = $options[ $id ] ?? false;
if ( $value===false && $load_default && class_exists('COMPLIANZ') ) {
$fields = COMPLIANZ::$config->fields ?? [];
$keys = array_keys( array_column( $fields, 'id' ), $id );
$key = reset( $keys );
if (isset($fields[$key]) ) {
$default = $fields[ $key ]['default'] ?? false;
$value = apply_filters( 'cmplz_default_value', $default, $id, $fields[$key] );
}
}
/*
* Translate output
*
* */
if ( function_exists('pll__') || function_exists('icl_translate') || defined("WPML_PLUGIN_BASENAME" ) ) {
//check if Complianz::$config has property fields
if (class_exists('COMPLIANZ')) {
$config_fields = COMPLIANZ::$config->fields ?? [];
} else {
$config_fields = [];
}
$fields = $fields ?: $config_fields;
$keys = array_keys( array_column( $fields, 'id' ), $id );
$key = reset( $keys );
if ( $key !== false ) {
$type = $fields[ $key ]['type'] ?? false;
$translatable = $fields[ $key ]['translatable'] ?? false;
if ( $translatable ) {
if ( is_array( $value ) && ( $type === 'thirdparties' || $type === 'processors' ) ) {
foreach ( $value as $item_key => $item ) {
//contains the values of an item
foreach ( $item as $key => $key_value ) {
if ( function_exists( 'pll__' ) ) {
$value[ $item_key ][ $key ] = pll__( $item_key . '_' . $id . "_" . $key );
}
if ( function_exists( 'icl_translate' ) ) {
$value[ $item_key ][ $key ] = icl_translate( 'complianz', $item_key . '_' . $id . "_" . $key, $key_value );
}
$value[ $item_key ][ $key ] = apply_filters( 'wpml_translate_single_string', $key_value, 'complianz', $item_key . '_' . $id . "_" . $key );
}
}
} else {
if ( function_exists( 'pll__' ) ) {
$value = pll__( $value );
}
if ( function_exists( 'icl_translate' ) ) {
$value = icl_translate( 'complianz', $id, $value );
}
$value = apply_filters( 'wpml_translate_single_string', $value, 'complianz', $id );
}
}
}
}
return apply_filters("cmplz_option_$id", $value, $id);
}
}
if (!function_exists('cmplz_get_field')) {
function cmplz_get_field($id){
$fields = COMPLIANZ::$config->fields;
foreach ($fields as $field) {
if (isset($field['id']) && $field['id'] === $id) {
return $field;
}
}
return false;
}
}
if (!function_exists('cmplz_get_field_index')) {
function cmplz_get_field_index($id, $fields){
foreach ($fields as $index => $field) {
if (isset($field['id']) && $field['id'] === $id) {
return $index;
}
}
return false;
}
}
if ( !function_exists('cmplz_remove_field') ) {
/**
* @param array $fields
* @param $ids
*
* @return array
*/
function cmplz_remove_field( array $fields, $ids): array {
if (!is_array($ids)) {
$ids = array($ids);
}
$field_ids = array_column($fields, 'id');
foreach ($ids as $id){
$drop_index = array_search( $id, $field_ids, true );
if ($drop_index!==false) {
unset($fields[$drop_index]);
}
}
return $fields;
}
}
if ( !function_exists('cmplz_sanitize_title_preserve_uppercase')) {
/**
* @param string $title
*
* @return string
*/
function cmplz_sanitize_title_preserve_uppercase($title) {
if (empty($title)) {
return '';
}
$title = preg_replace( '/&.+?;/', '', $title );
$title = str_replace( '.', '-', $title );
$title = preg_replace( '/[^%a-zA-Z0-9 _-]/', '', $title );
$title = preg_replace( '/\s+/', '-', $title );
$title = preg_replace( '|-+|', '-', $title );
return str_replace(' ', '-', sanitize_text_field(remove_accents($title)));
}
}
if ( ! function_exists( 'cmplz_uses_google_analytics' ) ) {
/**
* Check if site uses google analytics
* @return bool
*/
function cmplz_uses_google_analytics() {
return COMPLIANZ::$banner_loader->uses_google_analytics();
}
}
if ( ! function_exists( 'cmplz_consent_mode' ) ) {
/**
* Check if site uses google analytics
* @return bool
*/
function cmplz_consent_mode() {
return cmplz_get_option( 'consent-mode' ) === 'yes';
}
}
if ( ! function_exists('cmplz_upload_dir')) {
/**
* Get the upload dir
*
* @param string $path
*
* @return string
*/
function cmplz_upload_dir( string $path=''): string {
$uploads = wp_upload_dir();
$upload_dir = trailingslashit( apply_filters( 'cmplz_upload_dir', $uploads['basedir'] ) ).'complianz/'.$path;
if ( !is_dir( $upload_dir) ) {
cmplz_create_missing_directories_recursively($upload_dir);
}
return trailingslashit( $upload_dir );
}
}
/**
* Create directories recursively
*
* @param string $path
*/
if ( !function_exists('cmplz_create_missing_directories_recursively') ) {
function cmplz_create_missing_directories_recursively( string $path ) {
if ( ! cmplz_user_can_manage() ) {
return;
}
$parts = explode( '/', $path );
$dir = '';
foreach ( $parts as $part ) {
$dir .= $part . '/';
if (cmplz_has_open_basedir_restriction($dir)) {
continue;
}
if ( ! is_dir( $dir ) && strlen( $dir ) > 0 && is_writable( dirname( $dir, 1 ) ) ) {
if ( ! mkdir( $dir ) && ! is_dir( $dir ) ) {
throw new \RuntimeException( sprintf( 'Directory "%s" was not created', $dir ) );
}
}
}
}
}
if (!function_exists('cmplz_has_open_basedir_restriction')) {
function cmplz_has_open_basedir_restriction($path) {
// Default error handler is required
set_error_handler(null);
// Clean last error info.
error_clear_last();
// Testing...
@file_exists($path);
// Restore previous error handler
restore_error_handler();
// Return `true` if error has occurred
return ($error = error_get_last()) && $error['message'] !== '__clean_error_info';
}
}
if ( ! function_exists('cmplz_upload_url')) {
/**
* Get the upload url
*
* @param string $path
*
* @return string
*/
function cmplz_upload_url( string $path=''): string {
$uploads = wp_upload_dir();
$upload_url = $uploads['baseurl'];
$upload_url = trailingslashit( apply_filters('cmplz_upload_url', $upload_url) );
return trailingslashit($upload_url.'complianz/'.$path);
}
}
if ( ! function_exists( 'cmplz_uses_social_media' ) ) {
/**
* Check if site uses social media
* @return bool
*/
function cmplz_uses_social_media() {
$socialmedia_list = cmplz_get_option( 'socialmedia_on_site' );
return is_array( $socialmedia_list ) && count( array_filter( $socialmedia_list ) ) > 0;
}
}
if ( !function_exists('cmplz_upgraded_to_current_version')){
/**
* Check if the user has upgraded to the current version, or if this is a fresh install with this version.
*/
function cmplz_upgraded_to_current_version() {
$first_version = get_option( 'cmplz_first_version' );
//if there's no first version yet, we assume it's not upgraded
if ( !$first_version ) {
return false;
}
//if the first version is below current, we just upgraded.
if ( version_compare($first_version,CMPLZ_VERSION ,'<') ){
return true;
}
return false;
}
}
if ( ! function_exists( 'cmplz_get_template' ) ) {
/**
* Get a template based on filename, overridable in theme dir
* @param string $filename
* @param array $args
* @param string $path
* @return string
*/
function cmplz_get_template( $filename , $args = array(), $path = false ) {
$path = $path ? trailingslashit($path) : trailingslashit( CMPLZ_PATH ) . 'templates/';
$file = apply_filters('cmplz_template_file', $path . $filename, $filename);
$theme_file = trailingslashit( get_stylesheet_directory() )
. trailingslashit( basename( CMPLZ_PATH ) )
. 'templates/' . $filename;
if ( !file_exists( $file ) ) {
return false;
}
if ( file_exists( $theme_file ) ) {
$file = $theme_file;
}
if ( strpos( $file, '.php' ) !== false ) {
ob_start();
require $file;
$contents = ob_get_clean();
} else {
$contents = file_get_contents( $file );
}
if ( !empty($args) && is_array($args) ) {
foreach($args as $fieldname => $value ) {
$contents = str_replace( '{'.$fieldname.'}', $value, $contents );
}
}
return $contents;
}
}
if ( ! function_exists( 'cmplz_uses_google_tagmanager_or_analytics' ) ) {
function cmplz_uses_google_tagmanager_or_analytics(){
return COMPLIANZ::$banner_loader->uses_google_analytics() || COMPLIANZ::$banner_loader->uses_google_tagmanager();
}
}
if ( ! function_exists( 'cmplz_tagmanager_conditional_helptext' ) ) {
function cmplz_tagmanager_conditional_helptext() {
if ( !COMPLIANZ::$banner_loader->consent_required_for_anonymous_stats() ) {
$text = __( "Based on your Analytics configuration you should fire Analytics on event cmplz_functional.", 'complianz-gdpr' );
} else {
$text = __( "Based on your Analytics configuration you should fire Analytics on event cmplz_statistics.", 'complianz-gdpr' );
}
return $text;
}
}
if ( ! function_exists( 'cmplz_statistics_privacy_friendly' ) ) {
/**
* Checks if statistics are configured privacy friendly
*
* @return bool
*/
function cmplz_statistics_privacy_friendly()
{
return COMPLIANZ::$banner_loader->statistics_privacy_friendly();
}
}
if ( ! function_exists( 'cmplz_manual_stats_config_possible' ) ) {
/**
* Checks if the statistics are configured so no consent is need for statistics
*
* @return bool
*/
function cmplz_manual_stats_config_possible() {
$stats = cmplz_get_option( 'compile_statistics' );
if ( $stats === 'matomo' && cmplz_no_ip_addresses() ) {
return true;
}
//Google Tag Manager should also be possible to embed yourself if you haven't integrated it anonymously
if ( $stats === 'google-tag-manager' ) {
return true;
}
if ( $stats === 'google-analytics' ) {
if ( !COMPLIANZ::$banner_loader->consent_required_for_anonymous_stats()
) {
return true;
}
}
return false;
}
}
if ( ! function_exists( 'cmplz_get_stats_tool_nice' ) ) {
function cmplz_get_stats_tool_nice() {
//if the user just changed the setting, we use the posted data. The data is not saved yet, so would yield the previous setting
if ( isset($_POST['cmplz_compile_statistics'])) {
$stats = sanitize_text_field($_POST['cmplz_compile_statistics']);
} else {
$stats = cmplz_get_option( 'compile_statistics' );
}
switch ( $stats ){
case 'google-analytics':
return "Google Analytics";
case 'matomo':
return "Matomo";
case 'clicky':
return "Clicky";
case 'yandex':
return "Yandex";
case 'google-tag-manager':
return "Google Tag Manager";
case 'matomo-tag-manager':
return "Matomo Tag Manager";
case 'clarity':
return "Clarity";
default:
return __("Not found","complianz-gdpr");
}
}
}
if ( !function_exists('cmplz_detected_cookie_plugin')) {
function cmplz_detected_cookie_plugin( $return_name = false ){
$plugin = false;
if (defined('CLI_LATEST_VERSION_NUMBER')){
$plugin = "GDPR Cookie Consent";
} elseif(defined('MOOVE_GDPR_VERSION')) {
$plugin = "GDPR Cookie Compliance";
}elseif(defined('CTCC_PLUGIN_URL')) {
$plugin = "GDPR Cookie Consent Banner";
}elseif(defined('RCB_FILE')) {
$plugin = "Real Cookie Banner";
}elseif(class_exists('Cookiebot_WP')) {
$plugin = "Cookiebot";
}elseif(function_exists('bst_plugin_install')) {
$plugin = "BST DSGVO Cookie";
}elseif(function_exists('jlplg_lovecoding_set_cookie')) {
$plugin = "Simple Cookie Notice";
}elseif(class_exists('SCCBPP_WpCookie_Save')) {
$plugin = "Seers Cookie Consent Banner Privacy Policy";
}elseif(function_exists('daextlwcnf_customize_action_links')) {
$plugin = "Lightweight Cookie Notice Free";
}elseif(defined('GDPRCN_VERSION')) {
$plugin = "GDPR Cookie Notice";
}elseif(function_exists('wp_gdpr_cookie_notice_check_requirements')) {
$plugin = "WP GDPR Cookie Notice";
}elseif(defined('SURBMA_GPGA_PLUGIN_VERSION_NUMBER')) {
$plugin = "Surbma | GDPR Proof Cookie Consent & Notice Bar";
}elseif(class_exists('dsdvo_wp_backend')) {
$plugin = "DSGVO All in one for WP";
}elseif(class_exists('Cookie_Notice')) {
$plugin = "Cookie Notice & Compliance";
}elseif(defined('CNCB_VERSION')) {
$plugin = "Cookie Notice and Consent Banner";
}elseif(function_exists('add_cookie_notice')) {
$plugin = "Cookie Notice Lite";
}elseif(function_exists('fhw_dsgvo_cookie_insert')) {
$plugin = "GDPR tools: cookie notice + privacy";
}elseif(defined('GDPR_COOKIE_CONSENT_PLUGIN_URL')) {
$plugin = "GDPR Cookie Consent";
}elseif(defined('WP_GDPR_C_SLUG')) {
$plugin = "WP GDPR Compliance";
}elseif(defined('TERMLY_VERSION')) {
$plugin = "Termly | GDPR/CCPA Cookie Consent Banner";
}
if ( $plugin !== false && !$return_name ) {
return true;
} else {
return $plugin;
}
}
}
if ( ! function_exists( 'cmplz_revoke_link' ) ) {
/**
* Output a revoke button
* @param bool $text
*
* @return string
*/
function cmplz_revoke_link( $text = false ) {
$text = sanitize_text_field($text) ? : __( 'Revoke', 'complianz-gdpr' );
$text = apply_filters( 'cmplz_revoke_button_text', $text );
$css
= "<style>.cmplz-status-accepted,.cmplz-status-denied {display: none;}</style>
<script>
document.addEventListener('cmplz_before_cookiebanner', function(){
if (cmplz_has_consent('marketing')) {
document.querySelector('.cmplz-status-accepted').style.display = 'block';
document.querySelector('.cmplz-status-denied').style.display = 'none';
} else {
document.querySelector('.cmplz-status-accepted').style.display = 'none';
document.querySelector('.cmplz-status-denied').style.display = 'block';
document.querySelector('.cmplz-revoke-custom').setAttribute('disabled', true);
}
document.addEventListener('click', e => {
if ( e.target.closest('.cmplz-revoke-custom') ) {
document.querySelector('.cmplz-revoke-custom').setAttribute('disabled', true);
cmplz_set_banner_status('dismissed');
}
});
document.addEventListener('click', e => {
if ( e.target.closest('.cmplz-accept') ) {
document.querySelector('.cmplz-status-accepted').style.display = 'block';
document.querySelector('.cmplz-status-denied').style.display = 'none';
document.querySelector('.cmplz-revoke-custom').removeAttribute('disabled');
}
});
});
</script>";
$html = $css . '<button class="cmplz-deny cmplz-revoke-custom">' . esc_html($text)
. '</button> <span class="cmplz-status-accepted">'
. cmplz_sprintf( __( 'Current status: %s', 'complianz-gdpr' ),
__( "Accepted", 'complianz-gdpr' ) )
. '</span><span class="cmplz-status-denied">'
. cmplz_sprintf( __( 'Current status: %s', 'complianz-gdpr' ),
__( "Denied", 'complianz-gdpr' ) ) . '</span>';
return apply_filters( 'cmplz_revoke_link', $html );
}
}
if ( ! function_exists( 'cmplz_sells_personal_data' ) ) {
function cmplz_sells_personal_data() {
$purposes = cmplz_get_option( 'purpose_personaldata');
if ( isset( $purposes['selling-data-thirdparty'] )
&& $purposes['selling-data-thirdparty']
) {
return true;
}
return false;
}
}
if ( ! function_exists( 'cmplz_sold_data_12months' ) ) {
function cmplz_sold_data_12months() {
return COMPLIANZ::$company->sold_data_12months();
}
}
if ( ! function_exists( 'cmplz_disclosed_data_12months' ) ) {
function cmplz_disclosed_data_12months() {
return COMPLIANZ::$company->disclosed_data_12months();
}
}
if ( ! function_exists( 'cmplz_site_needs_cookie_warning' ) ) {
/**
* Check if site needs a cookie warning
*
* @return bool
*/
function cmplz_site_needs_cookie_warning() {
return COMPLIANZ::$banner_loader->site_needs_cookie_warning();
}
}
if ( ! function_exists( 'cmplz_eu_site_needs_cookie_warning' ) ) {
/**
* Check if EU targeted site needs a cookie warning
*
* @return bool
*/
function cmplz_eu_site_needs_cookie_warning() {
return COMPLIANZ::$banner_loader->site_needs_cookie_warning( 'eu' );
}
}
if ( ! function_exists( 'cmplz_za_site_needs_cookie_warning' ) ) {
/**
* Check if ZA targeted site needs a cookie warning
*
* @return bool
*/
function cmplz_za_site_needs_cookie_warning() {
return COMPLIANZ::$banner_loader->site_needs_cookie_warning( 'za' );
}
}
if ( ! function_exists( 'cmplz_uk_site_needs_cookie_warning' ) ) {
/**
* Check if EU targeted site needs a cookie warning
*
* @return bool
*/
function cmplz_uk_site_needs_cookie_warning() {
return COMPLIANZ::$banner_loader->site_needs_cookie_warning( 'uk' );
}
}
if ( ! function_exists( 'cmplz_site_uses_cookie_warning_cats' ) ) {
/**
* Check if optin site needs cookie warning with categories
* @return bool
*/
function cmplz_site_uses_cookie_warning_cats() {
$cookiebanner = cmplz_get_cookiebanner( apply_filters( 'cmplz_user_banner_id', cmplz_get_default_banner_id() ) );
if ( $cookiebanner->use_categories !== 'no'
) {
return true;
}
return false;
}
}
if ( ! function_exists( 'cmplz_company_located_in_region' ) ) {
/**
* Check if this company is located in a certain region
*
* @param $region
*
* @return bool
*/
function cmplz_company_located_in_region( $region ) {
$country_code = cmplz_get_option( 'country_company' );
return ( cmplz_get_region_for_country( $country_code ) === $region );
}
}
if ( ! function_exists( 'cmplz_has_region' ) ) {
/**
* Check if this website targets a specific region.
*
* @param string $code
*
* @return bool
*/
function cmplz_has_region( $code ) {
$regions = cmplz_get_regions(true);
if ( in_array( $code, $regions ) ) {
return true;
}
return false;
}
}
if ( ! function_exists( 'cmplz_has_state' ) ) {
/**
* Check if this website targest a specific state
*
* @param string $code
*
* @return bool
*/
function cmplz_has_state( $code ) {
$regions = cmplz_get_regions(true);
if ( !isset( $regions[ 'us' ] ) ) {
return false;
}
$states = cmplz_get_option('us_states');
if ( isset( $states[ $code ] ) ) {
return true;
}
return false;
}
}
if ( ! function_exists( 'cmplz_get_region_from_legacy_type' ) ) {
function cmplz_get_region_from_legacy_type( $type ) {
$region = false;
if ( strpos( $type, 'disclaimer' ) !== false || strpos( $type, 'all' ) !== false ) {
$region = 'all';
}
//get last three chars of string. if not contains -, it's eu or disclaimer.
if ( substr( $type, - 3, 1 ) === '-' ) {
$region = substr( $type, - 2 );
}
if ( ! $region ) {
$region = 'eu';
}
return $region;
}
}
if (!function_exists('cmplz_format_as_javascript_array')) {
function cmplz_format_as_javascript_array($array) {
$out = [];
foreach ($array as $key => $label){
$out[] = [
'id' => $key,
'label' => $label,
];
}
return $out;
}
}
if ( ! function_exists( 'cmplz_get_regions' ) ) {
function cmplz_get_regions( $ad_all_category = false, $label_type = false ) {
$regions = cmplz_get_option( 'regions' );
if ( ! is_array( $regions ) ) {
$regions = !empty( $regions ) ? array( $regions ) : [];
}
if ( $label_type && ! empty( $regions ) ) {
$output = array();
foreach ( $regions as $region ) {
if ($label_type==='full') {
$label = isset( COMPLIANZ::$config->regions[ $region ] ) ? COMPLIANZ::$config->regions[ $region ]['label_full'] : '';
} else {
$label = isset( COMPLIANZ::$config->regions[ $region ] ) ? COMPLIANZ::$config->regions[ $region ]['label'] : '';
}
$output[ $region ] = $label;
}
} else {
$output = $regions;
}
if ( $ad_all_category ) {
if ($label_type) {
$output['all'] = __( 'General', 'complianz-gdpr' );
} else {
$output[] = 'all';
}
}
return array_filter($output);
}
}
if ( ! function_exists( 'cmplz_multiple_regions' ) ) {
function cmplz_multiple_regions() {
//if geo ip is not enabled, return false anyway
if ( ! cmplz_geoip_enabled() ) {
return false;
}
$regions = cmplz_get_regions();
return count( $regions ) > 1;
}
}
if ( ! function_exists( 'cmplz_get_region_for_country' ) ) {
function cmplz_get_region_for_country( $country_code ) {
$region = false;
$regions = COMPLIANZ::$config->regions;
foreach ( $regions as $region_code => $region_data ) {
if ( in_array( $country_code, $region_data['countries'] ) ) {
$region = $region_code;
break;
}
}
return apply_filters( "cmplz_region_for_country", $region, $country_code );
}
}
if ( ! function_exists( 'cmplz_get_consenttype_for_country' ) ) {
function cmplz_get_consenttype_for_country( $country_code ) {
$regions = COMPLIANZ::$config->regions;
$used_regions = cmplz_get_regions();
//do not unset a not used region if it's a manual override.
if ( !isset($_GET['cmplz_user_region']) ) {
foreach ( $regions as $region => $region_data ) {
if ( empty($used_regions) || !in_array( $region, $used_regions )) {
unset($regions[$region]);
}
}
}
$actual_region = apply_filters('cmplz_user_region', cmplz_get_region_for_country( $country_code ));
if ( isset( $regions[ $actual_region ]) && isset( $regions[ $actual_region ]['type'] ) ) {
$consenttype = apply_filters( 'cmplz_consenttype', $regions[ $actual_region ]['type'], $actual_region );
return $consenttype;
}
return false;
}
}
if ( ! function_exists( 'cmplz_targeting_multiple_regions' ) ) {
function cmplz_targeting_multiple_regions(){
if ( defined("POLYLANG_VERSION" ) ) return true;
if ( defined("WPML_PLUGIN_BASENAME" ) ) return true;
return false;
}
}
/**
* Check if the scan detected social media on the site.
*
*
* */
if ( ! function_exists( 'cmplz_scan_detected_social_media' ) ) {
function cmplz_scan_detected_social_media() {
$social_media = get_option( 'cmplz_detected_social_media', array() );
if ( ! is_array( $social_media ) ) {
$social_media = array( $social_media );
}
$social_media = array_filter( $social_media );
$social_media = apply_filters( 'cmplz_detected_social_media',
$social_media );
//nothing scanned yet, or nothing found
if ( ! $social_media || ( count( $social_media ) == 0 ) ) {
$social_media = false;
}
return $social_media;
}
}
if ( ! function_exists( 'cmplz_scan_detected_thirdparty_services' ) ) {
function cmplz_scan_detected_thirdparty_services() {
$thirdparty = get_option( 'cmplz_detected_thirdparty_services', array() );
if ( ! is_array( $thirdparty ) ) {
$thirdparty = array( $thirdparty );
}
$thirdparty = array_filter( $thirdparty );
$thirdparty = apply_filters( 'cmplz_detected_services', $thirdparty );
//nothing scanned yet, or nothing found
if ( ! $thirdparty || ( count( $thirdparty ) == 0 ) ) {
$thirdparty = false;
}
return $thirdparty;
}
}
if ( ! function_exists( 'cmplz_scan_detected_stats' ) ) {
function cmplz_scan_detected_stats() {
$stats = get_option( 'cmplz_detected_stats', array() );
if ( ! is_array( $stats ) ) {
$stats = array( $stats );
}
$stats = array_filter( $stats );
//nothing scanned yet, or nothing found
if ( ! $stats || ( count( $stats ) == 0 ) ) {
$stats = false;
}
$stats = apply_filters( 'cmplz_detected_stats', $stats );
return $stats;
}
}
if ( ! function_exists( 'cmplz_page_is_of_type' ) ) {
/**
* Save a complianz option
* @param string $type
* @return bool
*/
function cmplz_page_is_of_type( $type ) {
$regions = cmplz_get_regions();
global $post;
if ( !$post ) return false;
$post_id = $post->ID;
foreach ( $regions as $region ) {
$policy_id = COMPLIANZ::$document->get_shortcode_page_id( $type, $region );
if ( $policy_id === $post_id ) {
return true;
}
}
return false;
}
}
if ( ! function_exists( 'cmplz_uses_statistics' ) ) {
function cmplz_uses_statistics() {
$stats = cmplz_get_option( 'compile_statistics' );
if ( $stats !== 'no' ) {
return true;
}
return false;
}
}
if ( ! function_exists( 'cmplz_show_install_burst_warning' ) ) {
function cmplz_show_install_burst_warning() {
if ( cmplz_get_option('consent_for_anonymous_stats') === 'yes' && !defined( 'burst_version' ) ) {
return true;
}
return false;
}
}
if ( ! function_exists( 'cmplz_uses_only_functional_cookies' ) ) {
function cmplz_uses_only_functional_cookies() {
return COMPLIANZ::$banner_loader->uses_only_functional_cookies();
}
}
if ( !function_exists('cmplz_scan_in_progress')) {
function cmplz_scan_in_progress(){
return isset( $_GET['complianz_scan_token'] ) && wp_verify_nonce( $_GET['complianz_scan_token'], 'complianz_scan_token');
}
}
if ( ! function_exists( 'cmplz_ecommerce_legal' ) ) {
function cmplz_ecommerce_legal() {
//check Woo and EDD constants
$ecommerce_enabled = defined('WC_PLUGIN_FILE') || defined('EDD_VERSION');
return $ecommerce_enabled;
}
}
if ( ! function_exists( 'cmplz_site_shares_data' ) ) {
/**
* Function to check if site shares data. Used in canada cookie policy
* @return bool
*/
function cmplz_site_shares_data() {
return COMPLIANZ::$banner_loader->site_shares_data();
}
}
if ( ! function_exists( 'cmplz_strip_spaces' ) ) {
function cmplz_strip_spaces( $string ) {
return preg_replace( '/\s*/m', '', $string );
}
}
if ( ! function_exists( 'cmplz_localize_date' ) ) {
function cmplz_localize_date( $unix_time ) {
$formatted_date = date( get_option( 'date_format' ), $unix_time );
$month = date( 'F', $unix_time ); //june
$month_localized = __( $month ); //juni
$date = str_replace( $month, $month_localized, $formatted_date );
$weekday = date( 'l', $unix_time ); //wednesday
$weekday_localized = __( $weekday ); //woensdag
$date = str_replace( $weekday, $weekday_localized, $date );
return $date;
}
}
if (!function_exists('cmplz_strpos_arr')) {
/**
* check if there is a partial match between a key of the array and the haystack
* We cannot use array_search, as this would not allow partial matches.
*
* @param string $haystack
* @param array $needle
*
* @return bool|string
*/
function cmplz_strpos_arr( $haystack, $needle ) {
if ( empty( $haystack ) ) {
return false;
}
if ( ! is_array( $needle ) ) {
$needle = array( $needle );
}
foreach ( $needle as $key => $value ) {
if ( strlen($value) === 0 ) continue;
if ( ( strpos( $haystack, $value ) ) !== false ) {
return ( is_numeric( $key ) ) ? $value : $key;
}
}
return false;
}
}
/**
* callback for privacy document Check if there is a text entered in the custom privacy statement text
*
* */
if ( ! function_exists( 'cmplz_has_custom_privacy_policy' ) ) {
function cmplz_has_custom_privacy_policy() {
$policy = cmplz_get_option( 'custom_privacy_policy_text' );
if ( empty( $policy ) ) {
return false;
}
return true;
}
}
/**
* callback for privacy statement document, check if google is allowed to share data with other services
*
* */
if ( ! function_exists( 'cmplz_statistics_no_sharing_allowed' ) ) {
function cmplz_statistics_no_sharing_allowed() {
$statistics = cmplz_get_option( 'compile_statistics', false,
'wizard' );
$tagmanager = ( $statistics === 'google-tag-manager' ) ? true
: false;
$google_analytics = ( $statistics === 'google-analytics' ) ? true
: false;
if ( $google_analytics || $tagmanager ) {
$thirdparty = $google_analytics
? cmplz_get_option( 'compile_statistics_more_info' )
: cmplz_get_option( 'compile_statistics_more_info_tag_manager');
if ( !is_array($thirdparty) ) {
$thirdparty = array();
}
return in_array( 'no-sharing', $thirdparty, true );
}
//only applies to google
return false;
}
}
/**
* callback for privacy statement document. Check if ip addresses are stored.
*
* */
if ( ! function_exists( 'cmplz_no_ip_addresses' ) ) {
function cmplz_no_ip_addresses() {
$statistics = cmplz_get_option( 'compile_statistics');
//not anonymous stats.
if ( $statistics === 'yes' ) {
return false;
}
$tagmanager = ( $statistics === 'google-tag-manager' ) ? true : false;
$matomo = ( $statistics === 'matomo' ) ? true : false;
$google_analytics = ( $statistics === 'google-analytics' ) ? true : false;
if ( $google_analytics || $tagmanager ) {
$thirdparty = $google_analytics
? cmplz_get_option( 'compile_statistics_more_info')
: cmplz_get_option( 'compile_statistics_more_info_tag_manager');
if ( !is_array($thirdparty) ) {
$thirdparty = array();
}
return in_array( 'ip-addresses-blocked', $thirdparty, true );
}
if ( $matomo ) {
return false;
}
return false;
}
}
if (!function_exists('cmplz_get_console_errors')){
/**
* Get console errors as detected by complianz
* @return string
*/
function cmplz_get_console_errors(){
$errors = get_option('cmplz_detected_console_errors');
$location = isset($errors[2]) && strlen($errors[2])>0 ? $errors[2] : __('the page source', 'complianz-gdpr');
$line_no = isset($errors[1]) ? $errors[1] : 0;
if ( $errors && isset($errors[0]) && $line_no>1 ) {
return cmplz_sprintf(__('%s on line %s of %s', 'complianz-gdpr'), $errors[0], $errors[1], $location);
}
return false;
}
}
if ( ! function_exists( 'cmplz_cookie_warning_required_stats_eu' ) ) {
function cmplz_cookie_warning_required_stats_eu() {
return COMPLIANZ::$banner_loader->cookie_warning_required_stats('eu');
}
}
if ( ! function_exists( 'cmplz_cookie_warning_required_stats_uk' ) ) {
function cmplz_cookie_warning_required_stats_uk() {
return COMPLIANZ::$banner_loader->cookie_warning_required_stats('uk');
}
}
if ( ! function_exists( 'cmplz_cookie_warning_required_stats_za' ) ) {
function cmplz_cookie_warning_required_stats_za() {
return COMPLIANZ::$banner_loader->cookie_warning_required_stats('za');
}
}
if ( ! function_exists( 'cmplz_accepted_processing_agreement' ) ) {
function cmplz_accepted_processing_agreement() {
$statistics = cmplz_get_option( 'compile_statistics' );
$tagmanager = $statistics === 'google-tag-manager';
$google_analytics = $statistics === 'google-analytics';
if ( $google_analytics || $tagmanager ) {
$thirdparty = $google_analytics
? cmplz_get_option( 'compile_statistics_more_info' )
: cmplz_get_option( 'compile_statistics_more_info_tag_manager' );
if ( !is_array($thirdparty) ) {
$thirdparty = array();
}
return in_array( 'accepted', $thirdparty, true );
}
//only applies to google
return false;
}
}
if ( ! function_exists( 'cmplz_init_cookie_blocker' ) ) {
/**
* Check if the Cookie Blocker should run
* @param bool $admin_test
* @return bool
*/
function cmplz_can_run_cookie_blocker( $admin_test = false ){
if ( ! COMPLIANZ::$banner_loader->site_needs_cookie_warning() ) {
return false;
}
if ( cmplz_get_option('enable_cookie_blocker') !== 'yes' ) {
return false;
}
//we can pass a variable $admin_test=true if we want to test cookieblocker availability from admin
if ( !$admin_test ) {
//only allow cookieblocker on admin when it's an ajax request
if ( ! wp_doing_ajax() && is_admin() ) {
return false;
}
}
if ( is_feed() ) {
return false;
}
//don't fire on the back-end
if ( is_preview() || cmplz_is_pagebuilder_preview() || isset($_GET["cmplz_safe_mode"]) ) {
return false;
}
if ( defined( 'CMPLZ_DO_NOT_BLOCK' ) && CMPLZ_DO_NOT_BLOCK ) {
return false;
}
if ( cmplz_get_option( 'safe_mode' ) ) {
return false;
}
/* Do not block when visitors are from outside EU or US, if geoip is enabled */
//check cache, as otherwise all users would get the same output, while this is user specific
//@todo better check for any caching plugin, as this check does not work with wp rocket for example.
//if (!defined('wp_cache') && class_exists('cmplz_geoip') && COMPLIANZ::$geoip->geoip_enabled() && (COMPLIANZ::$geoip->region() !== 'eu') && (COMPLIANZ::$geoip->region() !== 'us')) return;
//do not block cookies during the scan
if ( cmplz_scan_in_progress() ) {
return false;
}
/* Do not fix block when call is coming from wp_api or from xmlrpc or feed */
if ( defined( 'JSON_REQUEST' ) && JSON_REQUEST ) {
return false;
}
if ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST ) {
return false;
}
return true;
}
}
if ( ! function_exists( 'cmplz_init_cookie_blocker' ) ) {
function cmplz_init_cookie_blocker() {
if ( !cmplz_can_run_cookie_blocker() ) {
return;
}
if ( wp_doing_ajax() ) {
add_action( "admin_init", array( COMPLIANZ::$cookie_blocker, "start_buffer" ) );
} else {
if (cmplz_is_amp()) {
add_action( "wp", array( COMPLIANZ::$cookie_blocker, "start_buffer" ) , 20);
} else {
add_action( "template_redirect", array( COMPLIANZ::$cookie_blocker, "start_buffer" ) );
}
}
add_action( "shutdown",
array( COMPLIANZ::$cookie_blocker, "end_buffer" ), 999 );
}
}
/**
* check if a pdf document is being generated
*
* @return bool
*/
if ( !function_exists('cmplz_is_loading_pdf')) {
function cmplz_is_loading_pdf() {
return cmplz_user_can_manage() && isset( $_GET['nonce'] ) && wp_verify_nonce( $_GET['nonce'], 'cmplz_pdf_nonce' );
}
}
/**
*
* Check if we are currently in preview mode from one of the known page builders
*
* @return bool
* @since 2.0.7
*
*/
if ( ! function_exists( 'cmplz_is_pagebuilder_preview' ) ) {
function cmplz_is_pagebuilder_preview() {
$preview = false;
global $wp_customize;
if ( isset( $wp_customize )
|| isset( $_GET['fb-edit'] ) //avada
|| isset( $_GET['builder_id'] ) //avada
|| isset( $_GET['et_pb_preview'] ) //divi
|| isset( $_GET['et_fb'] ) //divi
|| isset( $_GET['elementor-preview'] )
|| isset( $_GET['elementor_library'] )
|| isset( $_GET['elementor-app'] )
|| isset( $_GET['vc_action'] )
|| isset( $_GET['vc_editable'] )
|| isset( $_GET['vcv-action'] )
|| isset( $_GET['zion_builder_active'])
|| isset( $_GET['zionbuilder-preview'])
|| isset( $_GET['tb-preview']) //themify
|| isset( $_GET['tb-id']) //themify
|| isset( $_GET['fl_builder'] )
|| isset( $_GET['tve'] )
|| isset( $_GET['bricks'] ) //bricks builder
|| isset( $_GET['ct_builder'] ) //oxygen
|| isset( $_GET['tatsu'] ) //tatsu
|| isset( $_GET['tatsu-header'] ) //tatsu
|| isset( $_GET['tatsu-footer'] ) //tatsu
|| ( isset( $_GET['action'] ) && $_GET['action'] === 'ms_get_preview' ) //meta slider
|| strpos( $_SERVER['REQUEST_URI'], 'cornerstone/edit') !== false
) {
$preview = true;
}
//exclude widgets, and don't exclude banner api
$request_url = isset($_SERVER['REQUEST_URI']) ? esc_url_raw($_SERVER['REQUEST_URI']) : '';
if ( strpos($request_url, 'wp-json/complianz/')===false && defined( 'REST_REQUEST' ) && REST_REQUEST ) {
return true;
}
if (isset($_GET['context']) && $_GET['context']==='edit') {
return true;
}
return apply_filters( 'cmplz_is_preview', $preview );
}
}
if (!function_exists('cmplz_datarequests_active')) {
/**
* Check if the site requires DNSMPI logic
*
* @return bool
*/
function cmplz_datarequests_active() {
return cmplz_get_option( 'datarequest' ) === 'yes';
}
}
if (!function_exists('cmplz_datarequests_or_dnsmpi_active')) {
/**
* Check if the site requires data requests OR dnsmpi logic
*
* @return bool
*/
function cmplz_datarequests_or_dnsmpi_active() {
return cmplz_datarequests_active() || cmplz_has_region('us');
}
}
if (!function_exists('cmplz_file_exists_on_url')) {
function cmplz_file_exists_on_url($url){
$upload_dir = cmplz_upload_dir();
$upload_url = cmplz_upload_url();
$path = str_replace( $upload_url, $upload_dir, $url );
return file_exists($path);
}
}
if ( ! function_exists( 'cmplz_geoip_enabled' ) ) {
function cmplz_geoip_enabled() {
return apply_filters( 'cmplz_geoip_enabled', false );
}
}
if ( ! function_exists( 'cmplz_tcf_active' ) ) {
function cmplz_tcf_active() {
if ( !defined('cmplz_premium') ) {
return false;
}
if ( cmplz_get_option('uses_ad_cookies') !=='yes' ) {
return false;
}
return cmplz_get_option('uses_ad_cookies_personalized') === 'tcf' || cmplz_get_option('uses_ad_cookies_personalized') === 'yes';
}
}
if ( !function_exists('cmplz_get_transient') ) {
/**
* We user our own transient, as the wp transient is not always persistent
*
* @param string $name
*
* @return mixed
*/
function cmplz_get_transient( string $name ){
if ( isset($_GET['cmplz_nocache']) ) {
return false;
}
$value = false;
$now = time();
$transients = get_option('cmplz_transients', array());
if ( isset($transients[$name]) ) {
$data = $transients[$name];
$expires = isset($data['expires']) ? $data['expires'] : 0;
$value = isset($data['value']) ? $data['value'] : false;
if ( $expires < $now ) {
unset($transients[$name]);
update_option('cmplz_transients', $transients);
$value = false;
}
}
return $value;
}
}
if (!function_exists('cmplz_delete_transient')) {
/**
* We user our own transient, as the wp transient is not always persistent
*
* @param string $name
*
* @return void
*/
function cmplz_delete_transient( string $name ): void {
$transients = get_option( 'cmplz_transients', array() );
if ( !is_array( $transients ) ) {
$transients = array();
}
if (isset($transients[$name])) {
unset($transients[$name]);
}
update_option( 'cmplz_transients', $transients );
}
}
if (!function_exists('cmplz_set_transient')) {
/**
* We user our own transient, as the wp transient is not always persistent
* Specifically made for license transients, as it stores on network level if multisite.
*
* @param string $name
* @param mixed $value
* @param int $expiration
*
* @return void
*/
function cmplz_set_transient( string $name, $value, $expiration ): void {
$transients = get_option( 'cmplz_transients', array() );
if ( ! is_array( $transients ) ) {
$transients = array();
}
$transients[ $name ] = array(
'value' => $value,
'expires' => time() + (int) $expiration,
);
update_option( 'cmplz_transients', $transients );
}
}
if (!function_exists('cmplz_upgrade_to_premium')) {
/**
* Standardization upgrade process
*
* @param string $url
* @param bool $add_space
*
* @return string
*/
function cmplz_upgrade_to_premium( $url, $add_space = true ) {
$html = '<a class="cmplz-upgrade-to-premium" target="_blank" href="' . $url . '">'.__( "Upgrade", 'complianz-gdpr' ). '</a>';
if ( $add_space ) {
$html = ' ' . $html;
}
return $html;
}
}
/**
* For all legal documents for the US, privacy statement, dataleaks or processing agreements, the language should always be en_US
*
* */
add_filter( 'locale', 'cmplz_set_plugin_language', 19, 1 );
if ( ! function_exists( 'cmplz_set_plugin_language' ) ) {
function cmplz_set_plugin_language( $locale ) {
//@todo the region can't be detected here, because the term is not defined yet.
if ( isset( $_GET['clang'] ) && $_GET['clang'] === 'en' ) {
$locale = 'en_US';
}
return $locale;
}
}
/**
* To make sure the US documents are loaded entirely in English on the front-end,
* We check if the locale is a not en- locale, and if so, redirect with a query arg.
* This allows us to recognize the page on the next page load is needing a force US language.
* */
add_action( 'wp', 'cmplz_add_query_arg' );
if ( ! function_exists( 'cmplz_add_query_arg' ) ) {
function cmplz_add_query_arg() {
$cmplz_lang = isset( $_GET['clang'] ) ? $_GET['clang'] : false;
if ( ! $cmplz_lang && ! cmplz_is_pagebuilder_preview() ) {
global $wp;
$type = false;
$post = get_queried_object();
$locale = get_locale();
//if the locale is english, don't add any query args.
if ( strpos( $locale, 'en' ) !== false ) {
return;
}
if ( $post && property_exists( $post, 'post_content' ) ) {
$pattern = '/cmplz-document.*type=".*?".*region="(.*?)"/i';
$pattern_gutenberg = '/<!-- wp:complianz\/document {.*?"selectedDocument":"[^\"](.*?)\".*?} \/-->/i';
if ( preg_match_all( $pattern, $post->post_content, $matches,
PREG_PATTERN_ORDER )
) {
if ( isset( $matches[1][0] ) ) {
$type = $matches[1][0];
}
} elseif ( preg_match_all( $pattern_gutenberg,
$post->post_content, $matches, PREG_PATTERN_ORDER )
) {
if ( isset( $matches[1][0] ) ) {
$type = $matches[1][0];
}
}
if ( strpos( $type, 'us' ) !== false
|| strpos( $type, 'uk' ) !== false
|| strpos( $type, 'au' ) !== false
) {
//remove lang property, add our own.
wp_redirect( home_url( add_query_arg( 'clang', 'en',
remove_query_arg( 'lang', $wp->request ) ) ) );
exit;
}
}
}
}
}
if ( !function_exists('cmplz_has_recommended_phpversion')) {
function cmplz_has_recommended_phpversion(){
if (version_compare(PHP_VERSION, '7.2','>=')) {
return true;
} else {
return false;
}
}
}
if ( ! function_exists( 'cmplz_array_filter_multidimensional' ) ) {
function cmplz_array_filter_multidimensional( $array, $filter_key, $filter_value ): array {
return array_filter( $array,
static function ( $var ) use ( $filter_value, $filter_key ) {
return isset( $var[ $filter_key ] ) && $var[ $filter_key ] === $filter_value;
} );
}
}
if ( ! function_exists( 'cmplz_is_amp' ) ) {
/**
* Check if we're on AMP, and AMP integration is active
* Function should be run not before the 'wp' hook!
*
* @return bool
*/
function cmplz_is_amp() {
$amp_on = false;
if ( !$amp_on && function_exists( 'ampforwp_is_amp_endpoint' ) ) {
$amp_on = ampforwp_is_amp_endpoint();
}
if ( !$amp_on && function_exists( 'is_amp_endpoint' ) ) {
$amp_on = is_amp_endpoint();
}
if ( $amp_on ) {
$amp_on = cmplz_amp_integration_active();
}
return $amp_on;
}
}
if ( ! function_exists( 'cmplz_is_amp_endpoint' ) ) {
/**
* Check if the site is loading as AMP
* Function should be run not before the 'wp' hook!
*
* @return bool
*/
function cmplz_is_amp_endpoint() {
$amp_on = false;
if ( !$amp_on && function_exists( 'ampforwp_is_amp_endpoint' ) ) {
$amp_on = ampforwp_is_amp_endpoint();
}
if ( !$amp_on && function_exists( 'is_amp_endpoint' ) ) {
$amp_on = is_amp_endpoint();
}
return $amp_on;
}
}
if ( ! function_exists( 'cmplz_amp_integration_active' ) ) {
/**
* Check if AMP integration is active
*
* @return bool
*/
function cmplz_amp_integration_active() {
return cmplz_is_integration_enabled( 'amp' );
}
}
if ( ! function_exists( 'cmplz_allowed_html' ) ) {
function cmplz_allowed_html() {
$allowed_tags = array(
'a' => array(
'class' => [],
'href' => [],
'rel' => [],
'title' => [],
'target' => [],
'id' => [],
),
'button' => array(
'id' => [],
'class' => [],
'href' => [],
'rel' => [],
'title' => [],
'target' => [],
'aria-expanded' => [],
'aria-controls' => [],
),
'b' => [],
'br' => [],
'blockquote' => array(
'cite' => [],
),
'div' => array(
'class' => [],
'id' => [],
),
'h1' => [],
'h2' => array(),
'h3' => [],
'h4' => [],
'h5' => [],
'h6' => [],
'i' => [],
'input' => array(
'type' => [],
'class' => [],
'name' => [],
'id' => [],
'required' => [],
'value' => [],
'placeholder' => [],
'data-category' => [],
'data-service' => [],
'style' => array(
'color' => [],
), ),
'img' => array(
'alt' => [],
'class' => [],
'height' => [],
'src' => [],
'width' => [],
),
'label' => array(
'for' => [],
'class' => [],
'style' => array(
'visibility' => [],
),
),
'li' => array(
'class' => [],
'id' => [],
),
'ol' => array(
'class' => [],
'id' => [],
),
'p' => array(
'class' => [],
'id' => [],
),
'span' => array(
'class' => [],
'title' => [],
'style' => array(
'color' => [],
'display' => [],
),
'id' => [],
),
'strong' => [],
'table' => array(
'class' => [],
'id' => [],
),
'tr' => [],
'details' => array(
'class' => [],
'id' => [],
),
'summary' => array(
'class' => [],
'id' => [],
),
'svg' => array(
'width' => [],
'height' => [],
'viewBox' => [],
),
'polyline' => array(
'points' => [],
),
'path' => array(
'd' => [],
),
'style' => [],
'ul' => array(
'class' => [],
'id' => [],
),
'form' => array(
'id' => [],
),
);
return apply_filters( "cmplz_allowed_html", $allowed_tags );
}
}
if ( ! function_exists( 'cmplz_placeholder' ) ) {
/**
* Get placeholder for any type of blocked content
*
* @param bool|string $type
* @param string $src
*
* @return string url
*
* @since 2.1.0
*/
function cmplz_placeholder( $type = false, $src = '' ) {
if ( ! $type ) {
$type = cmplz_get_service_by_src( $src );
}
$new_src = cmplz_default_placeholder( $type );
$new_src = apply_filters( "cmplz_placeholder_$type", $new_src, $src );
$new_src = apply_filters( 'cmplz_placeholder', $new_src, $type, $src );
return $new_src;
}
}
if ( ! function_exists( 'cmplz_count_socialmedia' ) ) {
/**
* count the number of social media used on the site
*
* @return int
*/
function cmplz_count_socialmedia() {
$sm = cmplz_get_option( 'socialmedia_on_site' );
if ( ! $sm ) {
return 0;
}
if ( ! is_array( $sm ) ) {
return 1;
}
return count( array_filter( $sm ) );
}
}
if ( ! function_exists( 'cmplz_download_to_site' ) ) {
/**
* Download a placeholder from youtube or video to this website
*
* @param string $src
* @param bool|string $id
* @param bool $use_filename //some filenames are too long to use.
*
* @return string url
*
*
* @since 2.1.5
*/
function cmplz_download_to_site( $src, $id = false, $use_filename = true ) {
if ( strpos( $src, "https://" ) === false
&& strpos( $src, "http://" ) === false
) {
$src = str_replace( '//', 'https://', $src );
}
if ( ! $id ) {
$id = time();
}
require_once( ABSPATH . 'wp-admin/includes/file.php' );
$upload_dir = cmplz_upload_dir('placeholders');
//set the path
$filename = $use_filename ? "-" . basename( $src ) : '.jpg';
$file = $upload_dir . $id . $filename;
//set the url
$new_src = cmplz_upload_url( "placeholders") . $id.$filename;
//download file
$tmpfile = download_url( $src, $timeout = 25 );
//check for errors
if ( is_wp_error( $tmpfile ) ) {
$new_src = cmplz_default_placeholder();
} else {
//remove current file
if ( file_exists( $file ) ) {
unlink( $file );
}
//in case the server prevents deletion, we check it again.
if ( ! file_exists( $file ) ) {
copy( $tmpfile, $file );
}
}
if ( is_string( $tmpfile ) && file_exists( $tmpfile ) ) {
unlink( $tmpfile );
} // must unlink afterwards
if ( file_exists( $file ) ) {
try {
$new_src = cmplz_create_webp( $file, $new_src );
} catch ( Exception $e ) {
if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
error_log( $e->getMessage() );
}
}
}
if ( ! file_exists( $file ) ) {
return cmplz_default_placeholder();
}
return $new_src;
}
}
//if (!function_exists('cmplz_create_webp')){
// function cmplz_create_webp($file, $new_src) {
// //check webp availability
// if (
// !function_exists('imagecreatefromjpeg') ||
// !function_exists('imagecreatefrompng') ||
// !function_exists('imagewebp') ||
// !function_exists('imagedestroy') ||
// !function_exists('imagepalettetotruecolor') ||
// !function_exists('imagealphablending') ||
// !function_exists('imagesavealpha')
// ) {
// return $new_src;
// }
//
// if ( stripos( $file, '.jpeg' ) !== false || stripos( $file, '.jpg' ) !== false ) {
// $webp_file = str_replace( array( ".jpeg", '.jpg' ), ".webp", $file );
// $webp_new_src = str_replace( array( ".jpeg", '.jpg' ), ".webp", $new_src );
// $image = imagecreatefromjpeg( $file );
// imagewebp( $image, $webp_file, 80 );
// imagedestroy( $image );
//
// return file_exists( $webp_file ) ? $webp_new_src : $new_src;
// } elseif ( stripos( $file, '.png' ) !== false ) {
// $webp_file = str_replace( '.png', ".webp", $file );
// $webp_new_src = str_replace( '.png', ".webp", $new_src );
// $image = imagecreatefrompng( $file );
// imagepalettetotruecolor( $image );
// imagealphablending( $image, true );
// imagesavealpha( $image, true );
// imagewebp( $image, $webp_file, 80 );
// imagedestroy( $image );
//
// return file_exists( $webp_file ) ? $webp_new_src : $new_src;
// } else {
// return $new_src;
// }
//
// }
//}
if (!function_exists('cmplz_create_webp')){
function cmplz_create_webp($file, $new_src) {
switch ( $file ) {
case strpos( $file, '.jpeg' )!==false:
case strpos( $file, '.jpg' )!==false:
$ext = array(".jpeg", '.jpg');
break;
case strpos( $file, 'png' )!==false:
$ext = '.png';
break;
default:
return $new_src;
}
//@todo: new filename is returned by save, so can be used for output instead of brute force extension replace.
$webp_file = str_replace( $ext, ".webp", $file );
$webp_new_src = str_replace( $ext, ".webp", $new_src );
$image = wp_get_image_editor($file);
$result = $image->save($webp_file, 'image/webp');
if ( is_wp_error( $result ) ) {
return $new_src;
}
return file_exists($webp_file) ? $webp_new_src : $new_src;
}
}
if ( ! function_exists( 'cmplz_used_cookies' ) ) {
function cmplz_used_cookies() {
$services_template = cmplz_get_template( 'cookiepolicy/services.php' );
$cookies_row = cmplz_get_template( 'cookiepolicy/cookies_row.php' );
$purpose_row = cmplz_get_template( 'cookiepolicy/purpose_row.php' );
$language = substr( get_locale(), 0, 2 );
$args = array(
'language' => $language,
'showOnPolicy' => true,
'hideEmpty' => true,
'ignored' => false
);
if ( cmplz_get_option( 'wp_admin_access_users' ) === 'yes' ) {
$args['isMembersOnly'] = 'all';
}
$cookies = COMPLIANZ::$banner_loader->get_cookies_by_service( $args );
$use_cdb_links = cmplz_get_option( 'use_cdb_links' ) === 'yes';
$consent_per_service = cmplz_get_option( 'consent_per_service' ) === 'yes';
$cookie_list = COMPLIANZ::$cookie_blocker->cookie_list;
$google_fonts = new CMPLZ_SERVICE('Google Fonts');
$servicesHTML = '';
foreach ( $cookies as $serviceID => $serviceData ) {
$service = new CMPLZ_SERVICE( $serviceID, substr( get_locale(), 0, 2 ) );
//if google fonts is self hosted, don't include in the cookie policy
if ( cmplz_get_option('self_host_google_fonts') === 'yes'
&& defined('CMPLZ_SELF_HOSTED_PLUGIN_ACTIVE')
&& ($serviceID == $google_fonts->ID || $service->isTranslationFrom == $google_fonts->ID) ) {
continue;
}
if ( isset($cookie_list['marketing'][COMPLIANZ::$cookie_blocker->sanitize_service_name($service->name)]) ){
$topCategory = 'marketing';
} else if ( isset($cookie_list['statistics'][COMPLIANZ::$cookie_blocker->sanitize_service_name($service->name)]) ) {
$topCategory = 'statistics';
} else if ( isset($cookie_list['preferences'][COMPLIANZ::$cookie_blocker->sanitize_service_name($service->name)]) ) {
$topCategory = 'preferences';
} else {
$topCategory = 'functional';
}
$serviceCheckboxClass = $consent_per_service ? '' : 'cmplz-hidden';
$has_empty_cookies = false;
$allPurposes = array();
$cookieHTML = "";
foreach ( $serviceData as $purpose => $service_cookies ) {
$cookies_per_purpose_HTML = "";
foreach ( $service_cookies as $cookie ) {
$has_empty_cookies = $has_empty_cookies || strlen( $cookie->retention ) == 0;
$link_open = $link_close = '';
if ( $use_cdb_links && strlen( $cookie->slug ) !== 0 ) {
$service_slug = ( empty($service->slug) ) ? 'unknown-service' : $service->slug;
$link_open
= '<a target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/cookie/'
. $service_slug . '/' . trailingslashit($cookie->slug)
. '">';
$link_close = '</a>';
}
$cookie_function = apply_filters('cmplz_cookie_function', ucfirst( $cookie->cookieFunction ), $cookie );
$cookies_per_purpose_HTML .= str_replace( array(
'{name}',
'{retention}',
'{cookieFunction}',
'{link_open}',
'{link_close}'
), array(
$cookie->name,
$cookie->retention,
$cookie_function,
$link_open,
$link_close
), $cookies_row );
}
$cookieHTML .= str_replace( array( '{purpose}', '{cookies_per_purpose}' ), array( $purpose, $cookies_per_purpose_HTML ), $purpose_row );
$allPurposes[] = $purpose;
}
$service_name = $service->name;
if ( !$service->ID || empty( $service_name ) ){
$service_name = __( 'Miscellaneous', 'complianz-gdpr' );
$serviceCheckboxClass = 'cmplz-hidden';
}
$sharing = '';
if ( $service_name === 'Complianz' ) {
$link = '<a target="_blank" rel="noopener noreferrer" href="https://complianz.io/legal/privacy-statement/">';
$sharing = __( 'This data is not shared with third parties.', 'complianz-gdpr' )
.' '
. cmplz_sprintf( __( 'For more information, please read the %s%s Privacy Statement%s.', 'complianz-gdpr' ), $link, $service_name, '</a>' );
} else if ( $service->sharesData ) {
$attributes = "noopener noreferrer nofollow";
if ( $service->privacyStatementURL !== '' ) {
$link = '<a target="_blank" rel="'.$attributes.'" href="' . $service->privacyStatementURL . '">';
$sharing = cmplz_sprintf( __( 'For more information, please read the %s%s Privacy Statement%s.', 'complianz-gdpr' ), $link, $service_name, '</a>' );
}
} elseif ( !empty( $service->name ) ) { //don't state sharing info on misc services
$sharing = __( 'This data is not shared with third parties.', 'complianz-gdpr' );
} else {
$sharing = __( 'Sharing of data is pending investigation', 'complianz-gdpr' );
}
$purposeDescription = ( ( !empty( $service_name ) ) && ( !empty( $service->serviceType ) ) )
? cmplz_sprintf( _x( "We use %s for %s.", 'Legal document cookie policy', 'complianz-gdpr' ), $service_name, $service->serviceType ) : '';
if ( $use_cdb_links
&& !empty( $service->slug )
&& $service->slug !== 'unknown-service'
) {
$link_open = '<a target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/service/' . $service->slug . '/">';
$purposeDescription .= ' ' . $link_open . __( 'Read more', "complianz-gdpr" ) . '</a>';
}
if ( count($allPurposes)>1 ){
$p_key = array_search(__( 'Purpose pending investigation', 'complianz-gdpr' ), $allPurposes);
if ($p_key!==false) unset($allPurposes[$p_key]);
}
$allPurposes = implode (", ", $allPurposes);
$service_slug = str_replace(' ', '-', strtolower($service_name));
$servicesHTML .= str_replace( array(
'{service}',
'{service_slug}',
'{sharing}',
'{purposeDescription}',
'{cookies}',
'{allPurposes}',
'{serviceCheckboxClass}',
'{topCategory}'
), array(
$service_name,
$service_slug,
$sharing,
$purposeDescription,
$cookieHTML,
$allPurposes,
$serviceCheckboxClass,
$topCategory
), $services_template );
}
$servicesHTML = '<div id="cmplz-cookies-overview">'.$servicesHTML.'</div>';
return str_replace( '{plugin_url}',CMPLZ_URL, $servicesHTML);
}
}
if (!function_exists('cmplz_has_consent')) {
/**
* @param string $category
*
* @return bool
*/
function cmplz_has_consent( $category ) {
$consent_type = apply_filters( 'cmplz_user_consenttype', COMPLIANZ::$company->get_default_consenttype() );
$prefix = COMPLIANZ::$banner_loader->get_cookie_prefix();
$cookie_name = "{$prefix}{$category}";
if ( ! $consent_type ) {
// If consent_type is not set, there's no consent management, we should
// return true to activate all cookies.
$has_consent = true;
} elseif ( strpos( $consent_type, 'optout' ) !== false && (!isset( $_COOKIE[ $cookie_name ] )) ) {
// If it's opt out and no cookie is set or it's false, we should also return true.
$has_consent = true;
} elseif ( isset( $_COOKIE[ $cookie_name ] ) && 'allow' === $_COOKIE[ $cookie_name ] ) {
// All other situations, return only true if value is allow.
$has_consent = true;
} else {
$has_consent = false;
}
return apply_filters( 'cmplz_has_consent', $has_consent, $category );
}
}
if (!function_exists('cmplz_has_service_consent')) {
/**
* Check if a service has consent
*
* @param string $service
*
* @return bool
*
*/
function cmplz_has_service_consent( $service ) {
$consent_type = apply_filters( 'cmplz_user_consenttype', COMPLIANZ::$company->get_default_consenttype() );
$prefix = COMPLIANZ::$banner_loader->get_cookie_prefix();
$cookie_name = "{$prefix}consented_services";
$consented_services = isset($_COOKIE[ $cookie_name ]) ? json_decode(stripslashes($_COOKIE[ $cookie_name ])) : false;
if ( ! $consent_type ) {
// If consent_type is not set, there's no consent management, we should
// return true to activate all cookies.
$has_consent = true;
} elseif ( strpos( $consent_type, 'optout' ) !== false ) {
// If it's opt out there's no consent per service, we should also return true.
$has_consent = true;
} elseif ( $consented_services && property_exists( $consented_services, $service ) && 1 == $consented_services->{$service} ) {
// All other situations, return only true if value is allow.
$has_consent = true;
} else {
$has_consent = false;
}
return apply_filters( 'cmplz_has_service_consent', $has_consent, $service );
}
}
/**
* Check if this field is translatable
*
* @param $fieldname
*
* @return bool
*/
if ( ! function_exists( 'cmplz_translate' ) ) {
function cmplz_translate( $value, $fieldname ) {
if ( function_exists( 'pll__' ) ) {
$value = pll__( $value );
}
if ( function_exists( 'icl_translate' ) ) {
$value = icl_translate( 'complianz', $fieldname, $value );
}
$value = apply_filters( 'wpml_translate_single_string', $value, 'complianz', $fieldname );
return $value;
}
}
if ( !function_exists('cmplz_get_server') ) {
/**
* Get server type
*
* @return string
*/
function cmplz_get_server() {
$server_raw = strtolower( sanitize_text_field($_SERVER['SERVER_SOFTWARE']) );
//figure out what server they're using
if ( strpos( $server_raw, 'apache' ) !== false ) {
return 'Apache';
} elseif ( strpos( $server_raw, 'nginx' ) !== false ) {
return 'NGINX';
} elseif ( strpos( $server_raw, 'litespeed' ) !== false ) {
return 'LiteSpeed';
} else { //unsupported server
return 'Not recognized';
}
}
}
if (!function_exists('cmplz_sanitize_category')) {
function cmplz_sanitize_category($category){
$cats = ['functional','preferences', 'statistics', 'marketing'];
if ( !in_array( $category, $cats, true ) ) {
$category = 'marketing';
}
return $category;
}
}
if (!function_exists('cmplz_sanitize_consenttype')) {
function cmplz_sanitize_consenttype($consenttype){
$types = ['optin','optout', 'other', 'optinstats'];//optinstats might be used by wp consent api
if ( !in_array( $consenttype, $types, true ) ) {
$consenttype = 'other';
}
return $consenttype;
}
}
/**
* Show a reference to cookiedatabase if user has accepted the API
*
* @return bool
*/
if ( ! function_exists( 'cmplz_cdb_reference_in_policy' ) ) {
function cmplz_cdb_reference_in_policy() {
$use_reference = COMPLIANZ::$banner_loader->use_cdb_api();
return apply_filters( 'cmplz_use_cdb_reference', $use_reference );
}
}
/**
* Registrer a translation
*
* @param $fieldname
*
* @return bool
*/
if ( ! function_exists( 'cmplz_register_translation' ) ) {
function cmplz_register_translation( $string, $fieldname ) {
if ( ! is_string( $string ) || !is_string($fieldname) ) {
return;
}
//polylang
if ( function_exists( "pll_register_string" ) ) {
pll_register_string( $fieldname, $string, 'complianz' );
}
//wpml
if ( function_exists( 'icl_register_string' ) ) {
icl_register_string( 'complianz', $fieldname, $string );
}
do_action( 'wpml_register_single_string', 'complianz', $fieldname, $string );
}
}
if ( ! function_exists( 'cmplz_default_placeholder' ) ) {
/**
* Return the default placeholder image
*
* @return string placeholder
* @since 2.1.5
*/
function cmplz_default_placeholder( $type = 'default' ) {
//treat open streetmaps same as google maps.
if ( $type === 'openstreetmaps' ) {
$type = 'google-maps';
}
$style = cmplz_get_option('placeholder_style');
$ratio = $type === 'google-maps' ? cmplz_get_option( 'google-maps-format' ) : '';
$path = CMPLZ_PATH . "assets/images/placeholders";
//check if this type exists as placeholder
if ( file_exists( "$path/$type-$style-$ratio.jpg" ) ) {
$img = "$type-$style-$ratio.jpg";
} else if ( file_exists( "$path/$type-$style.jpg" ) ) {
$img = "$type-$style.jpg";
} else {
$img = "default-$style.jpg";
}
$img_url = CMPLZ_URL . 'assets/images/placeholders/' . $img;
//check for image in themedir/complianz-gpdr-premium
$theme_img = trailingslashit( get_stylesheet_directory() ) . trailingslashit( basename( CMPLZ_PATH ) ) . $img;
if ( file_exists( $theme_img ) ) {
$img_url = trailingslashit( get_stylesheet_directory_uri() ) . trailingslashit( basename( CMPLZ_PATH ) ) . $img;
}
return apply_filters( 'cmplz_default_placeholder', $img_url, $type, $style );
}
}
if ( ! function_exists( 'cmplz_get_document_url' ) ) {
/**
* Get url to legal document
*
* @param string $region
*
* @return string URL
*/
function cmplz_get_document_url( $type, $region = 'eu' ) {
return COMPLIANZ::$document->get_page_url( $type, $region );
}
}
if ( ! function_exists( 'cmplz_remote_file_exists' ) ) {
/**
* Check if a remote file exists
*
* @param string $url
*
* @return bool
*/
function cmplz_remote_file_exists( string $url ): bool {
if ( empty($url) ) {
return false;
}
try {
$headers = @get_headers($url);
if ($headers === false) {
// URL is not accessible or some error occurred
return false;
}
// Check if the HTTP status code starts with "200" (indicating success)
return strpos($headers[0], '200') !== false;
} catch (Exception $e) {
}
return false;
}
}
if ( ! function_exists( 'cmplz_detected_firstparty_marketing' )) {
/**
* Check if we detect first party marketing scripts
* @return bool
*/
function cmplz_detected_firstparty_marketing(){
global $cmplz_integrations_list;
$active_plugins = array();
foreach ( $cmplz_integrations_list as $plugin => $details ) {
if ( cmplz_integration_plugin_is_enabled( $plugin ) ) {
$active_plugins[$plugin] = $details;
}
}
$firstparty_plugins = array_filter(array_column($active_plugins, 'firstparty_marketing'));
return count($firstparty_plugins)>0;
}
}
if ( ! function_exists( 'cmplz_uses_gutenberg' ) ) {
function cmplz_uses_gutenberg() {
if ( function_exists( 'has_block' )
&& !class_exists( 'Classic_Editor', false )
) {
return true;
}
return false;
}
}
if ( ! function_exists( 'cmplz_get_used_consenttypes' ) ) {
/**
* Get list of consenttypes in use on this site, based on the selected regions
* @param bool $add_labels
* @return array consenttypes
*/
function cmplz_get_used_consenttypes( $add_labels = false ) {
//get all regions in use on this site
$regions = cmplz_get_regions();
//if manuanl override detected, add that region's consenttype here.
$consent_types = array();
//for each region, get the consenttype
foreach ( $regions as $region ) {
if ( ! isset( COMPLIANZ::$config->regions[ $region ]['type'] ) ) {
continue;
}
$consent_types[] = apply_filters( 'cmplz_consenttype', COMPLIANZ::$config->regions[ $region ]['type'], $region );
}
//there's no way we can simply find the consenttype for the manually added region, due to fallback complexity. So we add all of them in that case.
if ( isset( $_GET['cmplz_user_region']) ) {
$consent_types[] = 'optin';
$consent_types[] = 'optout';
}
//remove duplicates
$consent_types = array_unique( $consent_types );
if ( $add_labels ) {
$consent_types_labelled = array();
foreach ( $consent_types as $consent_type ) {
$consent_types_labelled[$consent_type] = cmplz_consenttype_nicename($consent_type);
}
$consent_types = $consent_types_labelled;
}
return $consent_types;
}
}
if ( ! function_exists( 'cmplz_short_date_format') ) {
/**
* Make sure the date formate is always the short version. If "F" (February) is used, replace with "M" (Feb)
* @return string
*/
function cmplz_short_date_format(){
return str_replace( array('F', 'Y'), array('M', 'y'), get_option( 'date_format' ) );
}
}
if ( ! function_exists( 'cmplz_uses_preferences_cookies' ) ) {
/**
* Check if the site uses preferences cookies
*
* @return bool
*/
function cmplz_uses_preferences_cookies()
{
return cmplz_consent_mode() || cmplz_consent_api_active() || cmplz_get_option( 'consent_per_service' ) === 'yes';
}
}
if ( ! function_exists( 'cmplz_uses_statistic_cookies' ) ) {
/**
* Check if the site uses statistic cookies
*
* @return bool
*/
function cmplz_uses_statistic_cookies()
{
return cmplz_get_option( 'compile_statistics' ) !== 'no' || cmplz_uses_thirdparty('vimeo');
}
}
if ( ! function_exists( 'cmplz_uses_marketing_cookies' ) ) {
/**
* Check if the site uses marketing cookies
*
* @return bool
*/
function cmplz_uses_marketing_cookies() {
$uses_marketing_cookies
= cmplz_get_option( 'uses_ad_cookies' ) === 'yes'
|| cmplz_get_option( 'uses_firstparty_marketing_cookies' ) === 'yes'
|| cmplz_get_option( 'uses_thirdparty_services' ) === 'yes'
|| cmplz_get_option( 'uses_social_media' ) === 'yes';
return apply_filters( 'cmplz_uses_marketing_cookies', $uses_marketing_cookies );
}
}
if ( ! function_exists( 'cmplz_impressum_required' ) ) {
/**
* Check if the site requires an impressum
*
* @return bool
*/
function cmplz_impressum_required() {
return cmplz_get_option( 'eu_consent_regions' ) === 'yes' && cmplz_get_option( 'impressum' ) !== 'none' ;
}
}
if ( ! function_exists( 'cmplz_uses_optin' ) ) {
/**
* Check if the site uses one of the optin types
*
* @return bool
*/
function cmplz_uses_optin() {
$regions = cmplz_get_regions();
//ensure a default in case of no regions, to prevent weird cookie banner wysiwyg issues.
if (count($regions)===0) {
return true;
}
return ( in_array( 'optin', cmplz_get_used_consenttypes() )
|| in_array( 'optinstats', cmplz_get_used_consenttypes() ) );
}
}
if ( ! function_exists( 'cmplz_uses_optout' ) ) {
function cmplz_uses_optout() {
return ( in_array( 'optout', cmplz_get_used_consenttypes() ) );
}
}
if ( ! function_exists( 'cmplz_ab_testing_enabled' ) ) {
function cmplz_ab_testing_enabled() {
return apply_filters( 'cmplz_ab_testing_enabled', false );
}
}
if ( ! function_exists( 'cmplz_consenttype_nicename' ) ) {
/**
* Get nice name for consenttype
*
* @param string $consenttype
*
* @return string nicename
*/
function cmplz_consenttype_nicename( $consenttype ) {
switch ( $consenttype ) {
case 'optin':
return __( 'Opt-in', 'complianz-gdpr' );
case 'optout':
return __( 'Opt-out', 'complianz-gdpr' );
default :
return __( 'All consent types', 'complianz-gdpr' );
}
}
}
if ( ! function_exists( 'cmplz_uses_sensitive_data' ) ) {
/**
* Check if site uses sensitive data
*
* @return bool uses_sensitive_data
*/
function cmplz_uses_sensitive_data() {
$special_data = array(
'bank-account',
'financial-information',
'medical',
'health-insurcance'
);
foreach ( COMPLIANZ::$config->purposes as $key => $label ) {
if ( ! empty( COMPLIANZ::$config->details_per_purpose_us ) ) {
foreach ( $special_data as $special_data_key ) {
$value = cmplz_get_option( $key . '_data_purpose_us' );
if ( isset( $value[ $special_data_key ] )
&& $value[ $special_data_key ]
) {
return true;
}
}
}
}
return false;
}
}
if ( ! function_exists( 'cmplz_get_consenttype_for_region' ) ) {
/**
* Get the consenttype which is used in this region
*
* @param string $region
*
* @return string consenttype
*/
function cmplz_get_consenttype_for_region( $region ) {
//fallback
if ( ! isset( COMPLIANZ::$config->regions[ $region ]['type'] ) ) {
$consenttype = 'optin';
} else {
$consenttype = COMPLIANZ::$config->regions[ $region ]['type'];
}
return apply_filters( 'cmplz_consenttype', $consenttype, $region );
}
}
if ( ! function_exists( 'cmplz_uses_consenttype' ) ) {
/**
* Check if a specific consenttype is used
*
* @param string $check_consenttype
* @param string $region
*
* @return bool $uses_consenttype
*/
function cmplz_uses_consenttype( $check_consenttype, $region = false ) {
if ( $region ) {
//get consenttype for region
$consenttype = cmplz_get_consenttype_for_region( $region );
if ( $consenttype === $check_consenttype ) {
return true;
}
} else {
//check if any region has a consenttype $check_consenttype
$regions = cmplz_get_regions();
foreach ( $regions as $k_region ) {
$consenttype = cmplz_get_consenttype_for_region( $k_region );
if ( $consenttype === $check_consenttype ) {
return true;
}
}
}
return false;
}
}
if ( ! function_exists( 'cmplz_get_default_banner_id' ) ) {
/**
* Get the default banner ID
*
* @return int default_ID
*/
function cmplz_get_default_banner_id() {
$banner_id = cmplz_get_transient('cmplz_default_banner_id');
if ( !$banner_id ){
if ( !get_option('cmplz_cbdb_version') ) {
//table not created yet.
return 0;
}
global $wpdb;
$cookiebanners = $wpdb->get_results( "select * from {$wpdb->prefix}cmplz_cookiebanners as cb where cb.default = true" );
//if nothing, try the first entry
if ( empty( $cookiebanners ) ) {
$cookiebanners = $wpdb->get_results( "select * from {$wpdb->prefix}cmplz_cookiebanners" );
}
if ( ! empty( $cookiebanners ) ) {
$banner_id = $cookiebanners[0]->ID;
}
cmplz_set_transient('cmplz_default_banner_id', $banner_id, HOUR_IN_SECONDS);
}
return $banner_id;
}
}
if ( ! function_exists( 'cmplz_user_can_manage' ) ) {
function cmplz_user_can_manage() {
if ( current_user_can( apply_filters('cmplz_capability','manage_privacy') )
) {
return true;
}
return false;
}
}
if ( ! function_exists( 'cmplz_get_cookiebanners' ) ) {
/**
* Get array of banner objects
*
* @param array $args
*
* @return array
*/
function cmplz_get_cookiebanners( $args = array() ) {
$args = wp_parse_args( $args, array( 'status' => 'active' ) );
$sql = '';
global $wpdb;
if ( isset($args['ID']) ) {
$sql = 'AND cdb.ID = ' . (int) $args['ID'];
}
if ( isset( $args['default'] ) && $args['default'] === true ) {
$sql = 'AND cdb.default = true LIMIT 1';
}
if ( isset( $args['default'] ) && $args['default'] === false ) {
$sql = 'AND cdb.default = false';
}
if ( isset( $args['limit'] ) && $args['limit'] !== false ) {
$sql = ' LIMIT ' . (int) $args['limit'];
}
$sql_string = empty($sql) ? 'default' : sanitize_title($sql);
$cookiebanners = wp_cache_get('cmplz_cookiebanners_'.$sql_string, 'complianz');
if ( !$cookiebanners ){
$cookiebanners = $wpdb->get_results( "select * from {$wpdb->prefix}cmplz_cookiebanners as cdb where 1=1 $sql" );
wp_cache_set('cmplz_cookiebanners_'.$sql_string, $cookiebanners, 'complianz', HOUR_IN_SECONDS);
}
return $cookiebanners;
}
}
if ( ! function_exists( 'cmplz_sanitize_language' ) ) {
/**
* Validate a language string
*
* @param $language
*
* @return bool|string
*/
function cmplz_sanitize_language( $language ) {
$pattern = '/^[a-zA-Z]{2}$/';
if ( ! is_string( $language ) ) {
return false;
}
$language = substr( $language, 0, 2 );
if ( (bool) preg_match( $pattern, $language ) ) {
$language = strtolower( $language );
return $language;
}
return false;
}
}
if ( ! function_exists( 'cmplz_sanitize_languages' ) ) {
/**
* Validate a languages array
*
* @param array $language
*
* @return array
*/
function cmplz_sanitize_languages( $languages ) {
$output = array();
foreach ( $languages as $language ) {
$output[] = cmplz_sanitize_language( $language );
}
return $output;
}
}
if ( ! function_exists( 'cmplz_remove_free_translation_files' ) ) {
/**
* Get a list of files from a directory, with the extensions as passed.
*/
function cmplz_remove_free_translation_files() {
//can't use CMPLZ_PATH here, it may not have been defined yet on activation
$path = plugin_dir_path(__FILE__);
$path = dirname( $path, 2 ) . "/languages/plugins/";
$extensions = array( "po", "mo", "php" );
if ( $handle = opendir( $path ) ) {
while ( false !== ( $file = readdir( $handle ) ) ) {
if ( $file != "." && $file != ".." ) {
$file = $path . '/' . $file;
$ext = strtolower( pathinfo( $file, PATHINFO_EXTENSION ) );
if ( is_file( $file ) && in_array( $ext, $extensions )
&& strpos( $file, 'complianz-gdpr' ) !== false
&& strpos( $file, 'backup' ) === false
) {
unlink($file);
}
}
}
closedir( $handle );
}
}
}
if ( ! function_exists( 'cmplz_has_free_translation_files' ) ) {
/**
* Get a list of files from a directory, with the extensions as passed.
*
* @return bool
*/
function cmplz_has_free_translation_files() {
//can't use CMPLZ_PATH here, it may not have been defined yet on activation
$path = plugin_dir_path(__FILE__);
$path = dirname( $path, 2 ) . "/languages/plugins/";
if ( ! file_exists( $path ) ) {
return false;
}
$has_free_files = false;
$extensions = array( "po", "mo" );
if ( $handle = opendir( $path ) ) {
while ( false !== ( $file = readdir( $handle ) ) ) {
if ( $file != "." && $file != ".." ) {
$file = $path . '/' . $file;
$ext = strtolower( pathinfo( $file, PATHINFO_EXTENSION ) );
if ( is_file( $file ) && in_array( $ext, $extensions )
&& strpos( $file, 'complianz-gdpr' ) !== false
) {
$has_free_files = true;
break;
}
}
}
closedir( $handle );
}
return $has_free_files;
}
}
if (!function_exists('array_key_first')) {
function array_key_first(array $array) {
reset($array);
return key($array);
}
}
if ( ! function_exists( 'cmplz_sprintf' ) ) {
/**
* Wrapper function for sprintf to prevent fatal errors when the %s variables in source and target do not match
* @param string $format
* @param mixed $values
* @return string
*/
function cmplz_sprintf(){
$args = func_get_args();
$count = substr_count($args[0], '%s');
$args_count = count($args) - 1;
if ( $args_count === $count ){
return call_user_func_array('sprintf', $args);
} else {
$output = $args[0];
if ( cmplz_admin_logged_in() ){
$output .= ' <a target="_blank" href="https://complianz.io/translation-error-sprintf-printf-too-few-arguments">(Translation error)</a>';
}
return $output;
}
}
}
if ( !function_exists('cmplz_dnt_enabled') ) {
/**
* Premium should respect Do Not Track settings in browsers, if the user has enabled this setting.
*
*
* */
function cmplz_dnt_enabled()
{
//only if the user has explicitly enabled this
if ( cmplz_get_option('respect_dnt') !== 'no' ) {
return ( ( isset($_SERVER['HTTP_DNT']) && $_SERVER['HTTP_DNT'] == 1 ) || isset($_SERVER['HTTP_SEC_GPC']) );
}
return false;
}
}
if ( ! function_exists( 'cmplz_printf' ) ) {
/**
* Wrapper function for printf to prevent fatal errors when the %s variables in source and target do not match
* @param string $format
* @param mixed $values
* @echo string
*/
function cmplz_printf(){
$args = func_get_args();
$count = substr_count($args[0], '%s');
$args_count = count($args) - 1;
if ( $args_count === $count ){
echo call_user_func_array('sprintf', $args);
} else {
$output = $args[0];
if ( cmplz_admin_logged_in() ){
$output .= ' <a target="_blank" href="https://complianz.io/translation-error-sprintf-printf-too-few-arguments">(Translation error)</a>';
}
echo $output;
}
}
}
if ( ! function_exists('cmplz_quebec_notice')) {
function cmplz_quebec_notice() {
$text = cmplz_sprintf( __( "In September 2023 the Quebec bill 64 will be enforced in Canada. In order to keep your site compliant, %sopt-in must be implemented for Canada%s. Please Navigate to the %sWizard%s and enable opt-in for Canada.", "complianz-gdpr" ), '<strong>', '</strong>' , '<a href="' . admin_url( 'admin.php?page=cmplz-wizard&step=1' ) . '">', '</a>' ) . "<br><br>";
$text .= __( "Please be aware that this will activate opt-in for Canada, altering the banner and blocking non-functional scripts and cookies prior to consent. Please check the front-end of your site after activating opt-in.", "complianz-gdpr" );
return $text;
}
}
if ( ! function_exists('cmplz_requires_quebec_notice') ) {
function cmplz_requires_quebec_notice() {
if ( array_key_exists('ca', cmplz_get_regions() )
&& cmplz_get_option('sensitive_information_processed') !== 'yes'
&& cmplz_upgraded_to_current_version() ) {
return true;
}
return false;
}
}
if (!function_exists('cmplz_wsc_is_enabled')) {
/**
* Helper function to check if the wsc is enabled,
* then show/hide input fields on wsc settings page.
*
* @return bool
*/
function cmplz_wsc_is_enabled(): bool
{
$signup_status = get_option('cmplz_wsc_signup_status') === 'enabled'; // true if === "enabled"
return $signup_status;
}
}
if ( ! function_exists('cmplz_targets_quebec') ) {
if ( cmplz_get_option('ca_targets_quebec') === 'yes') {
return true;
}
return false;
}
Run Command [Bypass]
Run Command
مذيع من كود…من الأستوديو إلى الخوارزمية: المذيع الافتراضي ثورة تقنية أم اغتيال للهوية الإعلامية؟ – tahkoom.com
كتبت: فرح سمير
في زمنٍ باتت فيه المذيعة تبتسم دون أن تملك روحًا، ويقدّم المذيع نشرة الأخبار دون أن يشعر بمحتواها، يطرح الواقع الإعلامي سؤالًا صادمًا: هل دخلنا عصر “المذيع الافتراضي” بالفعل؟
لم يعد ظهور مذيعين مدعومين بالذكاء الاصطناعي على شاشات عربية وعالمية مجرد تجربة تقنية، بل أصبح واقعًا يفرض حضوره ويثير القلق، لا سيما بين طلاب الإعلام وممارسيه، الذين يرون في هذه “الكائنات الرقمية” تهديدًا صامتًا لمهنتهم وهويتهم المهنية .
تعود جذور هذه الظاهرة إلى أوائل الألفينات، حين ظهرت أول مذيعة افتراضية على الإنترنت تُدعى “أنانوفا ” (Ana-nova) ، والتي تم تقديمها عام 2000 بواسطة شركة Ana-nova Ltd التابعة لوكالة الأنباء البريطانية Press Association. كانت أنانوفا تُقدم نشرات إخبارية عبر الإنترنت، وتميزت بقدرتها على تقديم تحديثات فورية في مجالات الأخبار، الطقس، الرياضة، وأسعار الأسهم، في مدة لا تتجاوز سبع دقائق، إلا أن المشروع لم يُستكمل .
وفي عام 2018، قدمت صحيفة “People’s Daily” الصينية مذيعة افتراضية تُدعى “رين شياورونغ ” (Ren Xiaorong) ، وهي روبوت مدعوم بالذكاء الاصطناعي قادر على التعلم من آلاف المذيعين البشريين، وتمتاز بقدرتها على التطور المستمر بناءً على تفاعل الجمهور، وتعمل على مدار الساعة طوال أيام الأسبوع .
بحلول عام 2019، شهدت الصين توسعًا كبيرًا في استخدام المذيعين الافتراضيين، حيث أصبحت منصة “بيلي بيلي ” (Bilibili) موطنًا لأكثر من 230,000 مذيع افتراضي يقدمون محتوى متنوعًا يستهدف فئة الشباب .
ومع هذه التطورات، بدأت دول أخرى في تبني تقنيات المذيعين الافتراضيين. ففي عام 2023، قدمت الكويت أول مذيعة افتراضية في العالم العربي تُدعى “فضة ” (Fedha) ، حيث ظهرت على موقع “Kuwait News” وتحدثت باللغة العربية الفصحى، مقدّمة الأخبار بناءً على تفضيلات الجمهور .
كما أطلقت قطر مذيعتين افتراضيتين تُدعيان “ابتكار” و“نورا” لتعزيز استخدام الذكاء الاصطناعي في تقديم المحتوى الإعلامي، بينما ظهرت في مصر أول مذيعة افتراضية في فبراير 2023، مما يعكس التوجه المتزايد نحو دمج التقنيات الحديثة في المجال الإعلامي .
“ ما بين الحي والرقمي: هل يُقصي الذكاء الاصطناعي الإعلامي البشري؟” المهنة في مواجهة الخوارزميات: المذيعون الحقيقيون يتحدثون ”
الإعلامية – دعاء فاروق
في رأيها حول الذكاء الاصطناعي وظاهرة “المذيع الافتراضي”، تؤكد الإعلامية دعاء فاروق أن الإخلاص هو جوهر النجاح في العمل الإعلامي وغيره، مشيرة إلى أن النجاح الحقيقي لا يتحقق إلا بالإخلاص في القول والعمل، حتى وإن تأخر، فإنه سيأتي في النهاية بشكل مرضٍ .
وترى فاروق أن المذيع الافتراضي، رغم برمجته بأي لهجة أو خفة ظل، لا يمكنه أن يحاكي الروح الإنسانية، مؤكدة أن “الروح لا تُبرمج، والقبول الروحي لا يُصنع”، فالإنسان يتمتع بخفة ظل طبيعية وشخصية لا يمكن تقليدها برمجياً .
وتوضح أن الذكاء الاصطناعي قادر على تجميع المعلومات الدينية من الإنترنت، لكنه لا يمكن أن يعوّض التفاعل الإنساني في الفتوى أو المشورة، مشددة على أن “العلماء والشيوخ هم أصحاب علم وتجربة ووعي بالسياق”، في حين أن الذكاء الاصطناعي مجرد محرك بحث يخضع لبرمجة بشرية قد تخطئ .
وتؤمن دعاء بأن المذيع البشري لا يمكن استبداله، خاصة في البرامج ذات الطابع الديني أو الإنساني، لأن “الفنان أو المذيع كتلة من المشاعر”، بينما الذكاء الاصطناعي “لا يستطيع البكاء الحقيقي، ولا التعبير عن الحزن أو التفاعل مع موقف موجع”، مضيفة أن العقل البشري قادر على تمييز المشاعر الحقيقية من الزائفة، حتى وإن كانت البرمجة متقنة .
وفيما يخص التكيف مع التطور، تدعو فاروق الإعلاميين إلى مواكبة أدوات العصر وفهم الذكاء الاصطناعي، لكن دون التخلي عن الهوية الإنسانية والبصمة الشخصية، قائلة: “كل مذيع له بصمة لا يمكن للذكاء الاصطناعي تقليدها”، فالاعتماد على الورقة والقلم وحده لم يعد كافيًا، ويجب على الإعلامي أن يتواصل مع جمهور اليوم بأدوات حديثة دون التفريط بروحه الإنسانية .
وتقر بوجود تهديدات من الذكاء الاصطناعي لبعض الوظائف الروتينية، لكنها تؤكد أنه لن يحل محل من يخاطب الناس ويشعر بهم، مضيفة: “لم أشاهد روبوتًا يمكن أن أصدقه أو أرتبط به عاطفيًا، الذكاء الاصطناعي سيبقى بلا روح .”
وفي ختام حديثها، توجّه رسالة إلى الإعلاميين الشباب، تحثهم فيها على الصبر وتجنّب استعجال الشهرة أو الثراء، مشددة على أن “النجاح الحقيقي لا يأتي في يوم وليلة”، بل هو نجاح تراكمي يُبنى بالتعب والمتابعة والزرع الدائم، مؤكدة أن النجاح السريع يزول سريعًا، بينما النجاح المتين هو من يصنع الاسم والقيمة الجماهيرية .
الإعلامية “ايتن الموجى “
حيث ترى الإعلامية آيتن الموجي أن التكنولوجيا أحدثت تطورًا كبيرًا في جميع المجالات، خاصة الإعلام، لما له من دور في تشكيل الوعي. وتصف فكرة “المذيع الافتراضي” بأنها رائعة، نظرًا لما يتمتع به من ثقافة موسوعية وخلوه من العيوب البشرية مثل التقدم في العمر أو تغير الشكل، كما ترى أن وجوده قد يخلق غيرة مهنية إيجابية تدفع المذيعين البشريين لبذل جهد أكبر من أجل التميز .
مع ذلك، تؤكد أن المذيع الافتراضي يفتقر إلى الجانب الإنساني، مثل المشاعر ولمعة العين والتفاعل الحي في المواقف الإنسانية، مشيرة إلى أن هذه التفاصيل لا يمكن أن يتقنها الذكاء الاصطناعي. وتوضح أن بعض الأنماط الإعلامية مثل الحوارات، تغطية الجرائم، الحروب، وبرامج المسابقات، تحتاج إلى حضور بشري حقيقي وتفاعل مباشر لا يستطيع “الأفاتار” تقديمه .
وتشدد الموجي على أن الخبرة والتجارب الشخصية تصقل الإنسان وتمنحه نضجًا لا يمكن للتكنولوجيا أن تحاكيه، مشبهة الذكاء الاصطناعي بأنه قد يبهر في البداية لكن سرعان ما يصيب المستخدم بالملل بسبب إجاباته المبرمجة. وتؤمن بأهمية مواكبة الإعلاميين للتطور التكنولوجي، مع ضرورة التواضع والتعلم المستمر .
أما تأثير المذيع الافتراضي على فرص العمل، فتعتقد أنه سيكون ملموسًا في البداية، إذ قد تفضل بعض المؤسسات الاعتماد عليه كحل أقل تكلفة، لكنها ترى أن المذيع البشري سيظل مميزًا، مرجحة أن يظهر مستقبلًا تعاون أو تناغم بين الطرفين يُنتج أفكارًا مبتكرة وجديدة .
الاعلامى – احمد سالم
كما يرى الإعلامي أحمد سالم أن المذيعين الافتراضيين لا يشكّلون تهديدًا حقيقيًا للمذيع البشري، لأن التواصل الإنساني لا يمكن تعويضه. ويشير إلى أن التجربة الممتدة لأكثر من عام لم تنتج مذيعًا افتراضيًا لافتًا، مؤكدًا أن الإعلام والفنون تقوم على التفاعل المباشر، وهو ما يفتقر إليه الذكاء الاصطناعي .
ويُبرز سالم أن الميزة الكبرى للمذيع البشري تكمن في رأيه الحي وغير المبرمج، على عكس الذكاء الاصطناعي الذي يعتمد على تغذية مسبقة، موضحًا أن طرح نفس السؤال على عشرة مذيعين سينتج عشر إجابات مختلفة، وهو ما لا يمكن تحقيقه افتراضيًا .
ويؤكد أن البرامج التي تعتمد على بصمة المذيع وطابعه الشخصي يصعب أن ينجح فيها الذكاء الاصطناعي، لأن الثقافة العامة والخبرة الشخصية لا تُبرمجان، مشبّهًا الفرق بين المحتوى الآلي والإنساني بالفرق بين مقال كتبه روبوت وقصيدة كتبها شاعر، فـالموهبة لا تُستنسخ .
ويرى أن الذكاء الاصطناعي يمكن أن يكون أداة مفيدة للمذيع في جمع وتحليل المعلومات، لكن تبقى الصنعة الإعلامية في جوهرها إنسانية. ورغم أنه لا يتوقع تقليصًا مباشرًا للوظائف، إلا أنه يحذر من تأثيرات الواقع الافتراضي على سوق العمل، كما حدث في مهن أخرى، لكنه يؤمن بأن التطور يخلق أيضًا فرصًا جديدة للابتكار .
ويعتبر أن دور المذيع الافتراضي سيبقى محدودًا في النشرات الجافة والمواد غير التفاعلية، ساخرًا من أدائه بقوله: “دمه تقيل”، في إشارة لغياب القبول الجماهيري .
وفي ختام حديثه، ينصح الإعلاميين الشباب بـتنمية ثقافتهم وتطوير أنفسهم للحفاظ على تفوقهم الإنساني، مؤكدًا أن المعرفة والوعي هما الضمان الحقيقي لبقاء الإنسان في الصدارة .
الإعلامى – طه الحديري
ويرى الإعلامي طه الحديري أن المذيع الافتراضي، رغم دقته وكفاءته التقنية، يفتقر للروح، وهي أهم ما يميز الإنسان، مؤكدًا أن التكنولوجيا لا تستطيع محاكاة مشاعر المذيع البشري أو التعبير الحقيقي عن المواقف الإنسانية، مثل قصة أم شهيد أو حوار مع طفل يتيم، لأن أداؤه قائم على برمجة مسبقة تفتقر للنضج والتراكم الشعوري .
ويؤكد أن المذيع الافتراضي محكوم بالمعلومات التي زُوِّد بها ولا يمكنه الإبداع أو الخروج عنها، على عكس المذيع البشري الذي يحلل ويتأقلم مع الواقع. ويضرب مثالًا بنموذج ذكي وصف ترامب بأنه “رجل اقتصاد قوي”، في حين أن الإعلاميين البشريين قدموا تحليلات أدق وتوقعوا الرفض العالمي لسياساته .
ويشير إلى أن البرامج الفنية والإنسانية والشعرية يصعب على الذكاء الاصطناعي أن ينافس فيها، لأنها تتطلب تذوقًا إنسانيًا حقيقيًا لا يمكن برمجته. ويستشهد ببرنامج افتراضي عن الأغاني، موضحًا أن المذيع البشري يمكنه استحضار روح الشاعر والمعنى العاطفي للأغنية، بينما الافتراضي يكتفي بسرد معلومات .
ويعتبر أن الذكاء الاصطناعي ليس بديلاً، بل حافزًا لتطوير المذيع البشري، مشددًا على أن زمن الظهور التلفزيوني القائم على الشكل والترند قد انتهى، وأن الاستمرار في المجال يعتمد على المحتوى، والثقافة، والقدرة على فهم الجمهور .
ويحذّر الإعلاميين الجدد من الاعتماد على النقل النظري والتكرار، داعيًا إلى تقديم تحليلات وتجارب واقعية بدلًا من نصوص محفوظة، لأن الجمهور بات أكثر وعيًا ويصعب التأثير فيه بمظهر أو صوت جميل فقط .
وفي ختام رأيه، يؤكد الحديري أن الذكاء الاصطناعي لن يحل محل الإنسان، بل يرى مستقبلًا قائمًا على التكامل بين الطرفين، بحيث يكون الذكاء الاصطناعي مساعدًا ومرجعًا، ويظل الإعلامي البشري هو من يمنح الشاشة الروح التي لا تُستنسخ .
هل نُعدّ طلاب الإعلام لمهنة قد تختفي؟ ”
رغم التطور المتسارع لتقنيات الذكاء الاصطناعي واقتحامها مجالات الإعلام، ما زال المذيع الافتراضي يواجه تحديات تتعلق بثقة الجمهور، وقبول المتلقي، وغياب الحس الإنساني، كما تكشف آراء طلاب الإعلام الذين شاركوا في هذا الاستبيان .
في إجاباتهم حول الفروقات الجوهرية بين المذيع البشري ونظيره الافتراضي، اتفقت الغالبية على أن العنصر الإنساني يمثل جوهر العمل الإعلامي. فأداء المذيع البشري لا يقتصر على نقل المعلومة، بل يمتد إلى إيصال المشاعر، والتفاعل اللحظي مع الجمهور، والقدرة على الارتجال، وهي عناصر وصفها أحد المشاركين بأنها “لا يمكن صناعتها آليًا مهما تطورت التكنولوجيا ”.
وعند سؤالهم عن الهوية الإعلامية، أجمعت الآراء تقريبًا على أهمية الحفاظ على الإنسان كجزء من عملية التواصل الإعلامي. “روح الإنسان”، “المصداقية”، و” القدرة على التغيير المجتمعي” كانت كلمات تكررت مرارًا، في تعبير واضح عن القلق من أن يؤدي الاعتماد الكلي على الذكاء الاصطناعي إلى تجريد الإعلام من وظيفته التشاركية والوجدانية .
أما عند عرض مشاهد لمذيعين افتراضيين، تنوعت مشاعر المشاركين بين القلق، الغرابة، وعدم الارتياح. وعبّر البعض عن شعور “بالخوف” أو “عدم المصداقية”، وهو ما يعكس فجوة كبيرة لا تزال قائمة بين تطور التكنولوجيا ومستوى تقبل الجمهور لها .
ومن زاوية سوق العمل، أبدى 75% من المشاركين خشيتهم من أن تؤدي هذه التقنية إلى تقليص الفرص المستقبلية للكوادر الإعلامية. ورغم أن قلةً رأت أنها قد تخلق فرصًا جديدة، إلا أن هذه الرؤية ما تزال محدودة أمام مخاوف الإقصاء المهني .
وعن سؤال قدرة المذيع الافتراضي على إعداد المحتوى والتفاعل كمراسل، رفضت الأغلبية الفكرة، مشيرة إلى أن الإعلامي البشري لا يُستبدل، لما يملكه من وعي وسياق وقراءة للمواقف لا يمكن برمجتها بسهولة .
اللافت أن الآراء انقسمت بالتساوي عندما طُرح سؤال مباشر حول الثقة في محتوى يقدمه مذيع افتراضي، ما يشير إلى أن الذكاء الاصطناعي قد يكسب مساحة من الثقة، لكنها لا تزال محدودة ومشروطة
وجه جميل وصوت دقيق… لكن أين التعاطف؟ ”
ومن الزاوية النفسية، يشير د. وليد هندي، استشاري الصحة النفسية، إلى أن المذيع الافتراضي – رغم كونه إنجازًا تقنيًا لافتًا – يظل كيانًا ناقصًا نفسيًا، يفتقد إلى مقومات التأثير الوجداني العميق في الجمهور. فهو لا يمتلك هوية نفسية متكاملة، ولا يُتيح مساحة للتفاعل العاطفي الحقيقي، الذي يُعدّ أحد أهم عناصر التأثير الإعلامي. ويضيف: “رغم أن هذه الشخصيات الرقمية قد تُسهّل إيصال المحتوى لبعض الفئات كالمكفوفين أو غير المتعلمين، إلا أنها لا تُعوض الأثر النفسي الذي يتركه المذيع البشري في وعي ووجدان المتلقي ”.
يرى هندي أن شخصية الأفاتار تفتقر لما يُعرف في علم النفس بـ” الاستبصار” أو “الإدراك التصحيحي”، إذ إنها تُردد ما تتلقاه من بيانات دون مراجعة أو وعي، مما يجعلها عرضة لتكرار الأخطاء دون تمييز. ويشير إلى أن المذيع الحقيقي وحده من يملك هذه القدرة النفسية على مراجعة الذات، والتفاعل مع الموقف بناءً على خلفية وجدانية وشخصية متكاملة .
في لحظات الألم، كعرض مشاهد الحرب أو الكوارث، أو في لحظات الفرح، كفوز فريق وطني، يبرز الفرق الجوهري بين الإنسان والآلة. المذيع البشري قد تتغير نبرته، ينكسر صوته، يبكي، يضحك، ويتلعثم. كلها إشارات نفسية تُحدث أثرًا عاطفيًا لدى المتلقي، وتُفعّل ما يُعرف في علم النفس بـ” التناغم الشعوري”. بينما يظل الأفاتار محايدًا، بارداً، وكأنه يقرأ من ورقة .
ويضيف: “المذيع الحقيقي يملك مهارات ارتجال فريدة تُعرف بالاحتواء اللحظي، فينقذ الموقف حين يحدث خلل على الهواء أو فراغ في البث، أما المذيع الافتراضي فمحكوم ببرمجة جامدة لا تعترف بالحساسية النفسية للحظة ”.
كما يشير إلى جانب نفسي بالغ الأهمية، وهو “الانتماء المهني”، والذي يتشكل من مشاعر فخر، وكفاح، وتاريخ طويل من النجاحات والانكسارات. المذيع البشري ابن المؤسسة التي يعمل بها، يشعر تجاهها، يدافع عنها، يتألم لألمها ويفرح بنجاحها. وهو ما يستحيل زرعه في شخصية افتراضية خالية من العاطفة .
ويتابع حديثه بالإشارة إلى أثر المذيع البشري في تكوين الطموح لدى الأطفال والمراهقين، مؤكدًا أن هذه الشخصيات تشكّل قدوة نفسية حقيقية، تُغذّي الخيال والهوية. “كنت أتتبع المذيع أحمد سمير، وأقلده في صوته وربطة عنقه، وتكوّنت لدي رغبة حقيقية في أن أكون مثله… فهل يمكن للطفل أن يحلم أن يكون أفاتار؟ !”.
ويختم الدكتور وليد هندي بقوله: “رغم إعلان دول كبرى – مثل الصين – عن آلاف من المذيعين الافتراضيين، لم نرَ لهم تأثيرًا نفسيًا أو وجدانيًا يُذكر. ببساطة، لأنهم يفتقرون للروح، والروح هي أساس كل تواصل إنساني حقيقي. المذيع الافتراضي… وهم عظيم تقنيًا، لكنه فقير وجدانيًا ”
مهندس ذكاء اصطناعي: اللهجة المصرية.. تحدٍ مستمر للآلة
صرح المهندس أحمد رأفت، مهندس ميكانيكا ومتخصص في أدوات الذكاء الاصطناعي، حول استخدام تقنيات الذكاء الاصطناعي في مجال الصوت والفيديو، مسلطًا الضوء على التحديات والفرص المتاحة .
وأوضح المهندس رأفت أن استخدام تقنيات الصوت يمر بمراحل متدرجة، تبدأ بتقنية “النص إلى كلام” التقليدية، والتي وصفها بأنها ذات جودة محدودة وتبدو ميكانيكية. وأشار إلى المستوى الثاني الذي يستخدم منصات الذكاء الاصطناعي باللغة الإنجليزية لإنتاج صوت يقترب من اللهجة المصرية، ولكنه لا يرتقي إلى جودة اللهجة الأصلية .
أما المستوى الثالث، وفقًا لتصريحات المهندس رأفت، فيعتمد على تسجيل الصوت بلهجة مصرية طبيعية واستخدام برامج تغيير الصوت لمحاكة أصوات شخصيات معينة، معتبرًا هذه الطريقة الأعلى جودة للوصول إلى لهجة مصرية واقعية .
وفيما يتعلق بالمستوى الرابع والأعلى، لفت المهندس إلى أنه يعتمد على كتابة النص بالعربية الفصحى أو العامية وتشكيله لغويًا، ثم استخدام نماذج مدربة على نطق اللهجة المصرية، مع الإشارة إلى التحديات القائمة نظرًا لعدم تدريب معظم النماذج بشكل كافٍ على هذه اللهجة .
أكد المهندس رأفت على أن “اللكنة المصرية تحديدًا تُعد من أصعب اللهجات التي يمكن للذكاء الاصطناعي محاكاتها بدقة، وذلك لأنها خليط لغوي يجمع بين عدة لغات، مما يجعل إتقانها تحديًا لنماذج الذكاء الاصطناعي، خاصة مع محدودية تدريبها على اللغة العربية أصلًا .”
بالانتقال إلى تجهيز الفيديو، شرح المهندس إمكانية تركيب الصوت على فيديو حقيقي أو صورة، مع الإشارة إلى منصات مثل Magic AI التي تتيح إنشاء فيديوهات أو صور متحركة بمدة محدودة في النسخة المجانية. كما تطرق إلى استخدام المواقع لمعلقين صوتيين جاهزين لإنشاء ما يُعرف بالمذيعين الافتراضيين، مع ملاحظة أن هذه الطرق قد لا تقدم أفضل جودة في التفاعل الصوتي والتعبير عن المشاعر .
وفي ختام تصريحه، أكد المهندس أحمد رأفت على أن “التفاعل الحقيقي مع الصوت والمشاعر ما يزال يتطلب تدخلاً بشريًا”، مشيرًا إلى أن المشاعر المرتبطة بنبرة الصوت لا تزال غير مدعومة بالكامل في الذكاء الاصطناعي. ولكنه نوّه إلى الميزة الاقتصادية لهذه التقنيات، حيث إن تكلفتها “منخفضة جدًا مقارنة بأجور المذيعين البشريين .”
نقابة الإعلاميين تؤكد: الذكاء الاصطناعي فرصة لتطوير الأداء الإعلامي مع الحفاظ على الدور الإنساني
يرى أيمن عدلي مهدي، رئيس لجنة التدريب والتثقيف بنقابة الإعلاميين، أن ظاهرة المذيعين الافتراضيين تمثل انعكاسًا طبيعيًا للتطور التكنولوجي السريع الذي يشهده الإعلام، نتيجة اندماج الذكاء الاصطناعي المتزايد في إنتاج وتقديم المحتوى .
ويشير إلى أن نقابة الإعلاميين تتعامل مع هذه الظاهرة من زاويتين: الأولى: أنها قد ترفع من كفاءة الإنتاج وجودة المحتوى. الثانية: أنها تثير تساؤلات حول المصداقية والجانب الإنساني الذي لا يمكن تعويضه .
ويؤكد أن الإعلام التنموي، الذي يهدف إلى بناء الوعي المجتمعي والإنساني، لا يمكن أن يؤديه الذكاء الاصطناعي منفردًا، لأنه يتطلب تفاعلًا إنسانيًا مباشرًا لا توفره التقنيات مهما تطورت. لذلك، ترى النقابة أن المذيع الافتراضي ليس مجرد تقنية، بل عنصر جديد في المشهد الإعلامي يجب ضبطه بضوابط مهنية دقيقة، تحمي دور الإعلامي البشري في صناعة الوعي وتشكيل الرأي العام .
ورغم عدم وجود إطار تنظيمي شامل حتى الآن لضبط عمل المذيعين الافتراضيين، إلا أن النقابة تعمل بالتعاون مع المجلس الأعلى لتنظيم الإعلام على وضع آليات قانونية ومهنية تضمن التزام المحتوى المقدم عبر الذكاء الاصطناعي بالمعايير الأخلاقية والمهنية .
ويترافق هذا التوجه مع ضرورة تطوير برامج تدريبية للإعلاميين، لضمان جاهزيتهم في استخدام هذه الأدوات بكفاءة وتوازن بين التقنية والرسالة الإعلامية .
وفيما يخص مستقبل الإعلاميين مع الذكاء الاصطناعي، يؤكد عدلي أن النقابة لا تراه تهديدًا، بل فرصة كبيرة لتطوير الأداء الإعلامي، بشرط أن يُحسن الإعلاميون استخدام هذه الأدوات .
فالمهارات الجديدة، مثل التعامل مع البيانات وتحسين جودة الإنتاج، أصبحت أساسية، لكنها لا تلغي أهمية التحليل والتفاعل الإنساني وقراءة السياقات الاجتماعية والثقافية .
ويختتم بالتأكيد على وجود نية داخل النقابة لوضع مدونة سلوك وإرشادات مهنية واضحة، تتضمن: ضوابط لاستخدام المذيعين الافتراضيين، آليات لضمان الالتزام المهني، برامج تدريبية للجيل الجديد من الإعلاميين، ليكونوا مؤهلين للتعامل مع سوق إعلامي متغير لا يُقصي الإنسان، بل يتطلب منه التطور المستمر .
المذيع الافتراضي واقع لا مفر منه، وتقنية تتطور بسرعة مذهلة، وقد تفرض نفسها في مساحات واسعة من الإعلام. لكن رغم ذلك، تبقى للمذيع البشري كاريزما خاصة، ودفء إنساني، وتفاعل حي لا يمكن تقليده أو برمجته، فالذكاء الاصطناعي قد يحفظ المعلومة، ينسّقها، يعرضها، بل وربما يتقن الإلقاء والتفاعل السطحي، لكنه يظل “بلا روح”، في حين أن المذيع الحقيقي يُشبه القصيدة الحيّة، تنبض بكل كلمة، وتنقل المعنى والمشاعر
زر الذهاب إلى الأعلى