| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/cwd/wp-content/plugins/complianz-gdpr/integrations/plugins/ |
Upload File : |
<?php defined( 'ABSPATH' ) or die();
/**
* Make options translatable in qtranslate
* @param array $options
*
* @return array
*/
function cmplz_qtranslatex_options($options){
$keys = array(
'header',
'accept_optin',
'accept_optout',
'manage_consent',
'manage_options',
'save_settings',
'dismiss',
'message_optout',
'message_optin',
'category_functional',
'category_preferences',
'category_statistics',
'functional_text',
'statistics_text',
'statistics_text_anonymous',
'preferences_text',
'marketing_text',
'category_marketing',
);
foreach($keys as $key){
if ( isset($options[$key]['text']) && is_string($options[$key]['text']) ){
$options[$key]['text'] = __($options[$key]['text']);
} else if ( isset($options[$key]) && is_string($options[$key]) ) {
$options[$key] = __($options[$key]);
}
}
return $options;
}
add_filter('cmplz_cookiebanner_settings_html','cmplz_qtranslatex_options',10,1);