HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: 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,
Upload Files
File: /var/www/shoetique/wp-content/plugins/googleanalytics/view/templates/gdpr-config.php
<?php
/**
 * Appearence display for gdpr config.
 *
 * @package GoogleAnalytics
 */

// Template vars.
$colors = array(
	'#e31010',
	'#000000',
	'#ffffff',
	'#09cd18',
	'#ff6900',
	'#fcb900',
	'#7bdcb5',
	'#00d084',
	'#8ed1fc',
	'#0693e3',
	'#abb8c3',
	'#eb144c',
	'#f78da7',
	'#9900ef',
	'#b80000',
	'#db3e00',
	'#fccb00',
	'#008b02',
	'#006b76',
	'#1273de',
	'#004dcf',
	'#5300eb',
	'#eb9694',
	'#fad0c3',
	'#fef3bd',
	'#c1e1c5',
	'#bedadc',
	'#c4def6',
	'#bed3f3',
	'#d4c4fb',
);


// User type options.
$user_types = array(
	'eu'     => esc_html__( 'Only visitors in the EU', 'googleanalytics' ),
	'always' => esc_html__( 'All visitors globally', 'googleanalytics' ),
);

$languages = array(
	'English' => 'en',
	'German'  => 'de',
	'Spanish' => 'es',
	'French'  => 'fr',
);

$publisher_name = ! empty( $gdpr_config['publisher_name'] ) ? $gdpr_config['publisher_name'] : '';
$enabled        = ! empty( $gdpr_config['enabled'] ) ? $gdpr_config['enabled'] : false;
?>
<div id="adblocker-notice" class="notice notice-error is-dismissible">
	<p>
		<?php esc_html_e( 'It appears you have an ad blocker enabled. To avoid affecting this plugin\'s functionality, please disable while using its admin configurations and registrations. Thank you.', 'googleanalytics' ); ?>
	</p>
</div>
<div id="detectadblock">
	<div class="adBanner">
	</div>
</div>
<div class="gdpr-platform">
	<div class="switch">
		<div class="purpose-item">
			<label class="enable-tool">
				<?php esc_html_e( 'Enable GDPR', 'googleanalytics' ); ?>
				<input type="checkbox" name="gdpr-enable" <?php echo checked( 'true', $enabled ); ?>/>
				<span class="lever"></span>
			</label>
		</div>
	</div>
	<div class="well">
		<label class="control-label">
			<?php
			esc_html_e(
				'PUBLISHER NAME * (this will be displayed in the consent tool)',
				'googleanalytics'
			);
			?>
		</label>
		<div class="input-div">
			<input type="text" id="sharethis-publisher-name" placeholder="Enter your company name" value="<?php echo esc_attr( $publisher_name ); ?>">
		</div>
		<label class="control-label">
			<?php
			esc_html_e(
				'WHICH USERS SHOULD BE ASKED FOR CONSENT?',
				'googleanalytics'
			);
			?>
		</label>
		<div class="input-div">
			<select id="sharethis-user-type">
				<?php foreach ( $user_types as $user_value => $name ) : ?>
					<option value="<?php echo esc_attr( $user_value ); ?>"
						<?php
						echo true === isset( $gdpr_config['display'] ) ?
							selected( $user_value, $gdpr_config['display'] ) : '';
						?>
					>
						<?php echo esc_html( $name ); ?>
					</option>
				<?php endforeach; ?>
			</select>
		</div>

		<label class="control-label">
			<?php esc_html_e( 'SELECT LANGUAGE', 'googleanalytics' ); ?>
		</label>
		<div class="input-div">
			<select id="st-language">
				<?php foreach ( $languages as $language => $code ) : ?>
					<option value="<?php echo esc_attr( $code ); ?>"
						<?php
							echo true === isset( $gdpr_config['language'] ) ?
								selected( $code, $gdpr_config['language'] ) : '';
						?>
					>
						<?php echo esc_html( $language ); ?>
					</option>
				<?php endforeach; ?>
			</select>
		</div>
	</div>
	<div class="accor-wrap">
		<div class="accor-tab">
			<span class="accor-arrow">&#9658;</span>
			<?php esc_html_e( 'Appearance', 'simple-share-buttons-adder' ); ?>
		</div>
		<div class="accor-content">
			<div class="well">
				<?php require plugin_dir_path( __FILE__ ) . 'appearance.php'; ?>
			</div>
		</div>
	</div>
	<div class="accor-wrap">
		<div class="accor-tab">
			<span class="accor-arrow">&#9658;</span>
			<?php esc_html_e( 'Purposes', 'simple-share-buttons-adder' ); ?>
		</div>
		<div class="accor-content">
			<div class="well">
				<?php require plugin_dir_path( __FILE__ ) . 'purposes.php'; ?>
			</div>
		</div>
	</div>
	<div class="accor-wrap">
		<div class="accor-tab">
			<span class="accor-arrow">&#9658;</span>
			<?php esc_html_e( 'Exclusions', 'googleanalytics' ); ?>
		</div>
		<div class="accor-content">
			<div class="well">
				<?php require plugin_dir_path( __FILE__ ) . 'exclusions.php'; ?>
			</div>
		</div>
	</div>
</div>
<div class="gdpr-submit-button">
	<button class="gdpr-submit">Update</button>
</div>