| Server IP : 81.2.241.106 / Your IP : 216.73.216.165 Web Server : Apache/2.4.67 (Debian) System : Linux tranq-f.bakta.org 5.10.0-45-amd64 #1 SMP Debian 5.10.259-1 (2026-07-02) x86_64 User : lisky ( 1002) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/lisky/wp-content/plugins/events-manager/classes/consent/ |
Upload File : |
<?php
namespace EM\Consent;
class Privacy extends Consent {
public static $options = array(
'remember' => 'dbem_data_privacy_consent_remember',
'label' => 'dbem_data_privacy_consent_text',
'param' => 'data_privacy_consent',
'meta_key' => 'em_data_privacy_consent',
);
public static $prefix = 'privacy_consent';
public static $required = true;
public static function init() {
parent::init();
if( is_admin() ) {
include('privacy-consent-admin.php');
}
}
public static function get_error_booking() {
return esc_html__('You must allow us to collect and store your data in order for us to process your booking.', 'events-manager');
}
public static function get_error_cpt() {
return esc_html__('Please check the consent box so we can collect and store your submitted information.', 'events-manager');
}
public static function get_label() {
$label = em_get_option( static::$options['label'] );
// buddyboss fix since bb v1.6.0
if( has_filter( 'the_privacy_policy_link', 'bp_core_change_privacy_policy_link_on_private_network') ) $bb_fix = remove_filter('the_privacy_policy_link', 'bp_core_change_privacy_policy_link_on_private_network', 999999);
// replace privacy policy text %s with link to policy page
if( function_exists('get_the_privacy_policy_link') ) $label = sprintf($label, get_the_privacy_policy_link());
// buddyboss unfix since bb v1.6.0
if( !empty($bb_fix) ) add_filter( 'the_privacy_policy_link', 'bp_core_change_privacy_policy_link_on_private_network', 999999, 2 );
return $label;
}
}
Privacy::init();