HEX
Server: LiteSpeed
System: Linux s166.bitcommand.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User: h340499 (1922)
PHP: 8.2.16
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/h340499/public_html/wp-content/plugins/thim-core/templates/modals/cookie-consent.php
<?php $mobile_popup = '';
if ( $args['options']['enable_mobile_popup'] !== 'on' ) {
	$mobile_popup = 'mobile-hide-modal';
}
$customise_consent_mess = $args['options']['customise_consent_mess'];
?>

<div class="md-overlay thim-hide"></div>

<div
	class="tc-modal <?php echo esc_attr( $args['options']['popup_position'] ); ?> <?php echo esc_attr( $mobile_popup ); ?>"
	id="<?php echo esc_attr( $args['id'] ); ?>"
	data-template="<?php echo esc_attr( $args['id'] ); ?>"
>
	<?php if ( $args['stage'] === 'initial' ) { ?>

		<!-- First visit website or haven't accepted/rejected cookie consent -->
		<div class="thimcookie-banner" id="thimcookie-banner">
			<div class="message">
				<?php echo $args['options']['consent_message']; ?>
			</div>

			<div class="cookie-action">
				<?php if ( $customise_consent_mess ) { ?>
					<button class="btn-outline" onclick="thimCustomise()">
						<?php echo esc_html__( 'Customise', 'thim-core' ); ?>
					</button>
				<?php } ?>

				<button class="btn-outline" onclick="thimCookieRejectAll()">
					<?php echo esc_html__( 'Reject All', 'thim-core' ); ?>
				</button>

				<button onclick="thimCookieAcceptAll()">
					<?php echo esc_html__( 'Accept All', 'thim-core' ); ?>
				</button>
			</div>
		</div>

	<?php } ?>

	<?php
	if ( ! $customise_consent_mess ) {
		return;
	}

	// Customise cookie consent
	$cookie_value = [];
	$analytics    = $ads = $functional = '';

	if ( isset( $_COOKIE['thimcookie-consent'] ) ) {
		$cookie_value = json_decode( wp_unslash( $_COOKIE['thimcookie-consent'] ), true );
	}

	// Generate HTML for cookie categories
	$cookie_categories_html = [];
	foreach ( $args['options']['cookie_categories'] as $category_key => $category_data ) {
		ob_start();
		?>
		<div class="thimcookie-cat cat-<?php echo esc_attr( $category_key ); ?>">
			<span style="font-size: 17px;" class="icon-toggle">+</span>

			<div class="header-cat">
				<?php echo esc_html( $category_data['title'] ); ?>
				<?php if ( $category_key === 'necessary' ) : ?>
					<span class="note"><?php esc_html_e( 'Always Active', 'thim-core' ); ?></span>
				<?php else : ?>
					<label><input type="checkbox"
									id="consent-<?php echo esc_attr( $category_key ); ?>" <?php echo ( isset( $cookie_value[ $category_key ] ) && $cookie_value[ $category_key ] === 'yes' ) ? 'checked' : ''; ?>></label>
				<?php endif; ?>
			</div>
			<p class="desc-for-cat">
				<?php echo esc_html( $category_data['desc'] ); ?>
			</p>
			<div class="cklist-cat">
				<?php
				$cat_cookie_list = isset( $args['options']['cookie_list'][ $category_key ] ) ? $args['options']['cookie_list'][ $category_key ] : [];

				if ( ! empty( $cat_cookie_list ) ) :
					foreach ( $cat_cookie_list as $cookie ) :
						?>
						<ul class="cookie-info">
							<li>
								<label><?php echo esc_html__( 'Cookie', 'thim-core' ); ?></label>
								<span><?php echo esc_html( $cookie['id'] ); ?></span>
							</li>
							<li>
								<label><?php echo esc_html__( 'Duration', 'thim-core' ); ?></label>
								<span><?php echo esc_html( $cookie['duration'] ); ?></span>
							</li>
							<li>
								<label><?php echo esc_html__( 'Description', 'thim-core' ); ?></label>
								<span><?php echo esc_html( $cookie['desc'] ); ?></span>
							</li>
						</ul>
						<?php
					endforeach;
				else :
					?>
					<div class="empty-data" style="font-size: 14px;">
						<?php echo esc_html__( 'No Cookie to display', 'thim-core' ); ?>
					</div>
				<?php endif; ?>
			</div>
		</div>
		<?php
		$cookie_categories_html[ $category_key ] = ob_get_clean();
	}

	// Replace placeholders in the customise consent message
	foreach ( $cookie_categories_html as $category_key => $category_html ) {
		$customise_consent_mess = str_replace( '{{' . $category_key . '}}', $category_html, $customise_consent_mess );
	}
	?>

	<div class="thimcookie-customise thim-hide" id="thimcookie-customise">
		<button class="thim-close-modal" title="<?php echo esc_attr( 'Close', 'thim-core' ); ?>"
				onclick="thimCloseModal()">
			<svg xmlns="http://www.w3.org/2000/svg" width="22"
				viewBox="0 0 24 24" fill="none"
				stroke="currentColor" stroke-width="2"
				stroke-linecap="round" stroke-linejoin="round">
				<line x1="18" y1="6" x2="6" y2="18"/>
				<line x1="6" y1="6" x2="18" y2="18"/>
			</svg>
		</button>

		<div class="customise-content">
			<div class="message">
				<?php echo $customise_consent_mess; ?>
			</div>
		</div>

		<div class="cookie-action">
			<button class="btn-outline" onclick="thimCookieRejectAll()">
				<?php echo esc_html__( 'Reject All', 'thim-core' ); ?>
			</button>

			<button class="btn-outline" onclick="saveThimConsent()">
				<?php echo esc_html__( 'Save My Preferences', 'thim-core' ); ?>
			</button>

			<button onclick="thimCookieAcceptAll()">
				<?php echo esc_html__( 'Accept All', 'thim-core' ); ?>
			</button>
		</div>
	</div>
</div>