HEX
Server: Apache
System: Linux web15f74.uni5.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
User: lucendi (859622)
PHP: 7.4.33
Disabled: apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,exec,leak,link,myshellexec,openlog,passthru,pclose,pcntl_exec,php_check_syntax,php_strip_whitespace,popen,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,show_source,symlink,system,socket_listen,socket_create_listen,putenv
Upload Files
File: /home/lucendi/www/wp-content/plugins/cookie-law-info/legacy/admin/js/cookie-law-info-admin.js
(function( $ ) {
	'use strict';

	/**
	 * All of the code for your admin-facing JavaScript source
	 * should reside in this file.
	 *
	 * Note: It has been assumed you will write jQuery code here, so the
	 * $ function reference has been prepared for usage within the scope
	 * of this function.
	 *
	 * This enables you to define handlers, for when the DOM is ready:
	 *
	 * $(function() {
	 *
	 * });
	 *
	 * When the window is loaded:
	 *
	 * $( window ).load(function() {
	 *
	 * });
	 *
	 * ...and/or other possibilities.
	 *
	 * Ideally, it is not considered best practise to attach more than a
	 * single DOM-ready or window-load handler for a particular page.
	 * Although scripts in the WordPress core, Plugins and Themes may be
	 * practising this, we should strive to set a better example in our own work.
	 */
	$(
		function() {
			$( '.my-color-field' ).wpColorPicker();

			var cli_nav_tab = $( '.cookie-law-info-tab-head .nav-tab' );
			if (cli_nav_tab.length > 0) {
				cli_nav_tab.click(
					function(){
						var cli_tab_hash = $( this ).attr( 'href' );
						cli_nav_tab.removeClass( 'nav-tab-active' );
						$( this ).addClass( 'nav-tab-active' );
						cli_tab_hash    = cli_tab_hash.charAt( 0 ) == '#' ? cli_tab_hash.substring( 1 ) : cli_tab_hash;
						var cli_tab_elm = $( 'div[data-id="' + cli_tab_hash + '"]' );
						$( '.cookie-law-info-tab-content' ).hide();
						if (cli_tab_elm.length > 0) {
							 cli_tab_elm.fadeIn();
						}
					}
				);
				  var location_hash = window.location.hash;
				if (location_hash != "") {
					 var cli_tab_hash = location_hash.charAt( 0 ) == '#' ? location_hash.substring( 1 ) : location_hash;
					if (cli_tab_hash != "") {
						$( 'div[data-id="' + cli_tab_hash + '"]' ).show();
						$( 'a[href="#' + cli_tab_hash + '"]' ).addClass( 'nav-tab-active' );
					}
				} else {
					cli_nav_tab.eq( 0 ).click();
				}
			}
			$( '.cli_sub_tab li' ).click(
				function(){
					var trgt = $( this ).attr( 'data-target' );
					var prnt = $( this ).parent( '.cli_sub_tab' );
					var ctnr = prnt.siblings( '.cli_sub_tab_container' );
					prnt.find( 'li a' ).css( {'color':'#0073aa','cursor':'pointer'} );
					$( this ).find( 'a' ).css( {'color':'#000','cursor':'default','font-weight':'600'} );
					ctnr.find( '.cli_sub_tab_content' ).hide();
					ctnr.find( '.cli_sub_tab_content[data-id="' + trgt + '"]' ).fadeIn();
				}
			);
			$( '.cli_sub_tab' ).each(
				function(){
					var elm = $( this ).children( 'li' ).eq( 0 );
					elm.click();
				}
			);
			$( '#cli_settings_form' ).submit(
				function(e){
					var submit_action = $( '#cli_update_action' ).val();
					if (submit_action == 'delete_all_settings') {
						  // return;
					}
					e.preventDefault();
					var data       = $( this ).serialize();
					var url        = $( this ).attr( 'action' );
					var spinner    = $( this ).find( '.spinner' );
					var submit_btn = $( this ).find( 'input[type="submit"]' );
					spinner.css( {'visibility':'visible'} );
					submit_btn.css( {'opacity':'.5','cursor':'default'} ).prop( 'disabled',true );
					$.ajax(
						{
							url:url,
							type:'POST',
							data:data + '&cli_settings_ajax_update=' + submit_action,
							success:function(data)
						{
										spinner.css( {'visibility':'hidden'} );
										submit_btn.css( {'opacity':'1','cursor':'pointer'} ).prop( 'disabled',false );
								if (submit_action == 'delete_all_settings') {
									cli_notify_msg.success( cli_reset_settings_success_message );
									setTimeout(
										function(){
											if( !!ckyConfigs.redirectUrl ) {
												window.location.href = ckyConfigs.redirectUrl;
											}
										},
										1000
									);
								} else {
									cli_notify_msg.success( cli_settings_success_message );
								}
										cli_bar_active_msg();
							},
							error:function ()
						{
										spinner.css( {'visibility':'hidden'} );
										submit_btn.css( {'opacity':'1','cursor':'pointer'} ).prop( 'disabled',false );
								if (submit_action == 'delete_all_settings') {
									 cli_notify_msg.error( cli_reset_settings_error_message );
								} else {
									cli_notify_msg.error( cli_settings_error_message );
								}
							}
						}
					);
				}
			);

			// =====================
			function cli_scroll_accept_er()
			{
				if ($( '[name="cookie_bar_as_field"] option:selected' ).val() == 'popup' && $( '[name="popup_overlay_field"]:checked' ).val() == 'true' && $( '[name="scroll_close_field"]:checked' ).val() == 'true') {
					$( '.cli_scroll_accept_er' ).show();
					// $('label[for="scroll_close_field"]').css({'color':'red'});
				} else {
					$( '.cli_scroll_accept_er' ).hide();
					// $('label[for="scroll_close_field"]').css({'color':'#23282d'});
				}
			}
			cli_scroll_accept_er();
			$( '[name="cookie_bar_as_field"]' ).change(
				function(){
					cli_scroll_accept_er();
				}
			);
			$( '[name="popup_overlay_field"], [name="scroll_close_field"]' ).click(
				function(){
					cli_scroll_accept_er();
				}
			);
			// =====================

			function cli_bar_active_msg()
			{
				$( '.cli_bar_state tr' ).hide();
				if ($( 'input[type="radio"].cli_bar_on' ).is( ':checked' )) {
					$( '.cli_bar_state tr.cli_bar_on' ).show();
				} else {
					$( '.cli_bar_state tr.cli_bar_off' ).show();
				}
			}
			var cli_form_toggler =
			{
				set:function()
		{
					$( 'select.cli_form_toggle' ).each(
						function(){
							  cli_form_toggler.toggle( $( this ) );
						}
					);
					$( 'input[type="radio"].cli_form_toggle' ).each(
						function(){
							if ($( this ).is( ':checked' )) {
								cli_form_toggler.toggle( $( this ) );
							}
						}
					);
					$( 'select.cli_form_toggle' ).change(
						function(){
							  cli_form_toggler.toggle( $( this ) );
						}
					);
					$( 'input[type="radio"].cli_form_toggle' ).click(
						function(){
							if ($( this ).is( ':checked' )) {
								cli_form_toggler.toggle( $( this ) );
							}
						}
					);
				},
				toggle:function(elm)
		{
					var vl   = elm.val();
					var trgt = elm.attr( 'cli_frm_tgl-target' );
					$( '[cli_frm_tgl-id="' + trgt + '"]' ).hide();
					var selected_target = $( '[cli_frm_tgl-id="' + trgt + '"]' ).filter(
						function(){
							return $( this ).attr( 'cli_frm_tgl-val' ) == vl;
						}
					);
					selected_target.show();
					selected_target.find( 'th' ).each(
						function(){
							var prnt    = $( this ).parent( 'tr' );
							var sub_lvl = 1;
							if (typeof prnt.attr( 'cli_frm_tgl-lvl' ) !== typeof undefined && prnt.attr( 'cli_frm_tgl-lvl' ) !== false) {
								sub_lvl = prnt.attr( 'cli_frm_tgl-lvl' );
							}
							var lft_margin = sub_lvl * 15;
							$( this ).find( 'label' ).css( {'margin-left':'0px'} ).stop( true,true ).animate( {'margin-left':lft_margin + 'px'} );
						}
					);

				}
			}
			$( '#button_2_page_field' ).on(
				'change',
				function(){
					if ($( '.cli_privacy_page_not_exists_er' ).length > 0) {
						  $( '.cli_privacy_page_not_exists_er' ).remove();
					}
				}
			);

			cli_form_toggler.set();

			// =====================
			// Banner Upgrade Flow – Modal 1 & 2
			// =====================
			const $cliOverlay  = $( '#cli-modal-overlay' );
			const $cliModal1   = $( '#cli-modal-1' );
			const $cliModal2   = $( '#cli-modal-2' );

			function cliPositionModals() {
				const $content = $( '#wpcontent' );
				if ( ! $content.length ) { return; }
				const left = $content.offset().left + $content.outerWidth() / 2;
				$( '.wt-cli-upgrade-modal' ).css( 'left', left + 'px' );
			}

			function cliOpenModal( $modal ) {
				$cliOverlay.addClass( 'is-open' );
				$modal.addClass( 'is-open' );
				$( 'body' ).css( 'overflow', 'hidden' );
				cliPositionModals();
			}

			$( window ).on( 'resize.cliModal', function () {
				if ( $cliModal1.hasClass( 'is-open' ) || $cliModal2.hasClass( 'is-open' ) ) {
					cliPositionModals();
				}
			} );
			function cliCloseAll() {
				$cliOverlay.removeClass( 'is-open' );
				$cliModal1.removeClass( 'is-open' );
				$cliModal2.removeClass( 'is-open' );
				$( 'body' ).css( 'overflow', '' );
			}

			$( document ).on( 'click', '[data-cli-open-modal="cli-modal-1"]', function ( e ) {
				e.preventDefault();
				cliOpenModal( $cliModal1 );
			} );
			$cliOverlay.on( 'click', cliCloseAll );
			$( document ).on( 'click', '.wt-cli-modal-close-btn', cliCloseAll );
			$( '#cli-btn-review-changes' ).on( 'click', function () {
				$cliModal1.removeClass( 'is-open' );
				cliOpenModal( $cliModal2 );
			} );
			$( '#cli-btn-view-features' ).on( 'click', function () {
				$cliModal2.removeClass( 'is-open' );
				cliOpenModal( $cliModal1 );
			} );

			// Accordion in Modal 2
			$( document ).on( 'click', '.wt-cli-accordion-header', function () {
				const $item = $( this ).closest( '.wt-cli-accordion-item' );
				const isOpen = $item.hasClass( 'is-open' );
				$item.toggleClass( 'is-open' );
				$( this ).attr( 'aria-expanded', ! isOpen );
			} );
			// =====================

		}
	);
	$( document ).ready(
		function () {
			wtCliAdminFunctions.set();
		}
	);
})( jQuery );

var wtCliAdminFunctions = {

	set : function() {
		this.CLIAccordion();
		this.checkboxTogglerHandler();
		this.revisitConsentPositionEvent();
		this.revisitConsentPosition();
		this.modalEvents();
	},
	CLIAccordion : function() {

		if (jQuery( '.wt-cli-accordion-tab' ).hasClass( 'active' )) {
			jQuery( '.wt-cli-accordion-tab.active' ).find( '.wt-cli-accordion-content' ).slideDown( 0 );
		}
		jQuery( document ).on(
			'click',
			'.wt-cli-accordion-tab a',
			function (e) {
				e.preventDefault();
				var $this = jQuery( this );
				if ($this.next().hasClass( 'active' )) {
					$this.removeClass( 'active' );
					$this.next().removeClass( 'active' );
					$this.closest( '.wt-cli-accordion-tab' ).removeClass( 'active' );
					$this.next().slideUp( 350 );
				} else {
					$this.parent().parent().find( '.wt-cli-accordion-content' ).removeClass( 'active' );
					$this.parent().parent().find( '.wt-cli-accordion-content' ).slideUp( 350 );
					$this.parent().parent().find( '.wt-cli-accordion-tab a' ).removeClass( 'active' );
					$this.parent().parent().find( '.wt-cli-accordion-tab' ).removeClass( 'active' );
					$this.toggleClass( 'active' );
					$this.closest( '.wt-cli-accordion-tab' ).toggleClass( 'active' );
					$this.next().toggleClass( 'active' );
					$this.next().slideToggle( 350 );

				}
			}
		);

	},
	checkboxTogglerHandler: function(){
		jQuery( 'input[name="showagain_tab_field"],.wt-cli-input-toggle-checkbox' ).each(
			function(){
				wtCliAdminFunctions.checkboxToggler( jQuery( this ) );
			}
		);
		jQuery( document ).on(
			'click',
			'.wt-cli-input-toggle-checkbox',
			function(){
				wtCliAdminFunctions.checkboxToggler( jQuery( this ) );
			}
		);
	},
	checkboxToggler: function( element ) {

		var currentElement = element;
		var toggleTarget   = currentElement.attr( 'data-cli-toggle-target' );
		var targetElement  = jQuery( '[data-cli-toggle-id=' + toggleTarget + ']' );
		if ( currentElement.is( ':checked' ) ) {
			targetElement.slideDown( 200 );
			targetElement.addClass( 'wt-cli-toggle-active' );
		} else {
			targetElement.slideUp( 100 );
			targetElement.removeClass( 'wt-cli-toggle-active' );

		}
	},
	revisitConsentPositionEvent: function(){
		jQuery( document ).on(
			'change',
			'input[type="radio"][name="notify_position_horizontal_field"],select[name="popup_showagain_position_field"],input[name="cookie_bar_as_field"],select[name="widget_position_field"]',
			function(){
				wtCliAdminFunctions.revisitConsentPosition();
			}
		);
	},

	revisitConsentPosition: function(){
		var barType                   = jQuery( 'input[type="radio"][name="cookie_bar_as_field"]:checked' ).val();
		var position                  = jQuery( 'input[type="radio"][name="notify_position_horizontal_field"]:checked' ).val();
		var revisitConsentMarginLabel = jQuery( '#wt-cli-revisit-consent-margin-label' );
		var currentText               = jQuery( '#wt-cli-revisit-consent-margin-label' ).val();
		if ( barType === "popup" ) {
			position = jQuery( 'select[name="popup_showagain_position_field"] option:selected' ).val();
		} else if ( barType === "widget") {
			position = jQuery( 'select[name="widget_position_field"] option:selected' ).val();
		}

		if ( position === 'bottom-right' || position === 'top-right' || position === 'right' ) {
			currentText = revisitConsentMarginLabel.attr( 'data-cli-right-text' );
		} else {
			currentText = revisitConsentMarginLabel.attr( 'data-cli-left-text' );
		}
		if (typeof(currentText) != "undefined" && currentText !== null) {
			revisitConsentMarginLabel.html( currentText );
		}
	},

	modalEvents: function(){
		jQuery( document ).on(
			'click',
			'.wt-cli-modal-js-close',
			function(){
				wtCliAdminFunctions.closeModal();
			}
		);
	},
	showModal: function(id) {
		this.closeModal();
		let el = jQuery( '#' + id );
		el.find( '.wt-cli-inline-notice' ).remove();
		el.addClass( 'on' );
		this.addOverlay();

	},
	createModal: function( heading,content ){
		this.closeModal();
		var headingHtml = '';
		if ( heading !== '') {
			headingHtml = '<div class="wt-cli-modal-header"><h4>' + heading + '</h4></div>';
		}
		let html  = '<div class="wt-cli-modal on" id="">';
		html += '<span class="wt-cli-modal-js-close">×</span>';
		html += headingHtml;
		html += '<div class="wt-cli-modal-body">';
		html += '<p>' + content + '</p>';
		html += '</div>';
		html += '</div>';
		jQuery( 'body' ).append( html );
		this.addOverlay();
	},
	addOverlay: function(){
		const html = '<div class="wt-cli-modal-js-overlay"></div>';
		jQuery( 'body' ).append( html );
	},
	closeOverlay: function(){
		jQuery( '.wt-cli-modal-js-overlay' ).remove();
	},
	closeModal: function(){
		jQuery( '.wt-cli-modal' ).removeClass( 'on' );
		this.closeOverlay();
	},
	addInlineMessage:function( message, type='notice', element ) {
		element.find( '.wt-cli-inline-notice' ).remove();
		var error_message = '<div role="alert" class="wt-cli-inline-notice wt-cli-inline-notice-' + type + '">' + message + '</div>';
		jQuery( element ).append( error_message );
	},
	loadSpinner( element ){
		var spinner = jQuery( '<span class="spinner"></span>' );
		spinner.insertBefore( element );
		spinner.css( {'visibility' : 'visible'} );
	},
	removeSpinner: function( element ){
		var spinner = element.prev( '.spinner' );
		spinner.remove();
	},
}

var cli_notify_msg =
{
	error:function(message)
	{
		var er_elm = jQuery( '<div class="notify_msg" style="background:#dd4c27; border:solid 1px #dd431c;">' + message + '</div>' );
		this.setNotify( er_elm );
	},
	success:function(message)
	{
		var suss_elm = jQuery( '<div class="notify_msg" style="background:#00B200; border:solid 1px #00B200;">' + message + '</div>' );
		this.setNotify( suss_elm );
	},
	setNotify:function(elm)
	{
		jQuery( 'body' ).append( elm );
		elm.stop( true,true ).animate( {'opacity':1,'top':'50px'},1000 );
		setTimeout(
			function(){
				elm.animate(
					{'opacity':0,'top':'100px'},
					1000,
					function(){
						elm.remove();
					}
				);
			},
			3000
		);
	}
}
function cli_store_settings_btn_click(vl)
{
	document.getElementById( 'cli_update_action' ).value = vl;
}