芝麻web文件管理V1.00
编辑当前文件:/home/felaukpo/public_html/wp-content/themes/pixelpiernyc/vamtam/admin/assets/js/check-license.js
/* VamTam Check License */ /*global jQuery*/ (function( $ ) { 'use strict'; $('body').on('click', '#vamtam-check-license', function(e) { e.preventDefault(); var self = $(this); if ( self.hasClass('disabled' ) ) return false; var result = $('#vamtam-check-license-result').html('').css( 'display', 'block' ); var $validMsg = $('#vamtam-license-result-wrap > .valid'); var $invalidMsg = $('#vamtam-license-result-wrap > .invalid'); var isUnregister = self.hasClass('unregister'); var $licenseInput = $('#vamtam-envato-license-key'); var isElementsToken = $('#vamtam-envato-elements-radio').is(':checked'); let valAttempt = 0; if ( isUnregister ) { isElementsToken = window.VAMTAM_ADMIN.isElementsToken; if ( confirm( isElementsToken ? window.VAMTAM_ADMIN.unRegTokenTxt : window.VAMTAM_ADMIN.unRegPcTxt ) ) { $licenseInput.attr('value', ''); } else { return; } } $licenseInput.prop('disabled', true); $validMsg.hide(); $invalidMsg.hide(); self.css('display', 'inline-block').addClass('disabled'); var spinner = $('#vamtam-check-license ~ span.spinner'); if ( spinner.length > 0 ) { spinner.show(); } else { if ( isUnregister ) { $('#vamtam-check-license').after('
'); spinner = $('#vamtam-check-license ~ span.spinner'); } else { $licenseInput.after('
'); spinner = $('#vamtam-envato-license-key ~ span.spinner'); } } const postData = { action: 'vamtam-check-license', 'license-key': $licenseInput.val(), nonce: self.attr('data-nonce'), unregister: isUnregister ? true : false, is_token: isElementsToken, }; const do_post = ( postData ) => { $.ajax({ type: 'POST', url: ajaxurl, data: postData, success: function(data) { if ( data.includes( 'Valid Purchase Key' ) ) { window.location = window.location.href; } else if ( data.includes( 'Incorrect Purchase Key' ) ) { if ( isUnregister ) { window.location = window.location.href; } else { if ( valAttempt === 0 ) { valAttempt++; postData.is_token = ! postData.is_token; do_post( postData ); } else { $invalidMsg.css('display', 'flex'); self.removeClass('disabled'); $licenseInput.prop('disabled', false); spinner.hide(); } } } else if ( data.includes( 'Unregistered Key' ) ) { window.location = window.location.href; } else { result.append( $('
').addClass('vamtam-check-license-response').append(data) ); spinner.hide(); self.removeClass('disabled'); $licenseInput.prop('disabled', false); } } }); }; do_post( postData ); }); })( jQuery );