File manager - Edit - /home/theblueo/tv/wp-content/plugins/cartflows/admin/assets/js/setup-wizard.js
Back
( function( $ ) { CartFlowsWizard = { init: function() { this._bind(); }, /** * Bind */ _bind: function() { $( document ).on('click', '.wcf-install-plugins', CartFlowsWizard._installNow ); $( document ).on('click', '.wcf-install-wc', CartFlowsWizard._installWc ); $( document ).on('wp-plugin-installing' , CartFlowsWizard._pluginInstalling); $( document ).on('wp-plugin-install-error' , CartFlowsWizard._installError); $( document ).on('wp-plugin-install-success' , CartFlowsWizard._installSuccess); $( document ).on('click', '.mautic-form-submit', CartFlowsWizard._onMauticSubmit ); }, _onMauticSubmit: function( event ) { event.preventDefault(); event.stopPropagation(); var form = $(this).closest('form'); var email_field = form.find('#mauticform_input_cartflowsonboarding_enter_your_email'); var submit_button = $(this); var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,14})$/; if ( reg.test( email_field.val() ) == false ) { email_field.addClass('wcf-error'); return false; } else { email_field.removeClass('wcf-error'); } submit_button.attr( 'disabled', 'disabled' ); $.ajax({ type: "POST", url: form.attr('action'), data: form.serialize(), // async: false, headers: {'X-Requested-With': 'XMLHttpRequest'}, success: function() { // callback code here console.log('in success'); var redirect_link = $( '.wcf-redirect-link' ).data('redirect-link') || ''; window.location = redirect_link; }, error: function( ) { console.log('in error'); } }); /* Do not execute anything here */ }, /** * Installing Plugin */ _pluginInstalling: function(event, args) { event.preventDefault(); console.log( 'Installing..' ); }, /** * Install Error */ _installError: function(event, args) { event.preventDefault(); console.log( 'Install Error!' ); var redirect_link = $( '.wcf-redirect-link' ).data('redirect-link') || ''; console.log( redirect_link ); if( '' !== redirect_link ) { window.location = redirect_link; console.log( 'redirecting..' ); } }, /** * Install Success */ _installSuccess: function( event, args ) { event.preventDefault(); var plugin_init = args.slug + "/" + args.slug + ".php"; var plugin_slug = args.slug; console.log( plugin_slug ); if ( 'woocommerce' === plugin_slug ) { return; } if( 'woo-cart-abandonment-recovery' === plugin_slug ) { CartFlowsWizard._activateWc(); return; } CartFlowsWizard._activatePlugin( plugin_init, plugin_slug ); }, _activatePlugin: function( plugin_init, plugin_slug ) { var redirect_link = $( '.wcf-redirect-link' ).data('redirect-link') || ''; var save_builder_option = ( '1' == $( "#save-pb-option" ).val() ) || false; $.ajax({ url : ajaxurl, method : 'POST', data : { action : 'page_builder_step_save', page_builder : plugin_slug, plugin_init : plugin_init, save_builder_option : save_builder_option, security : cartflows_setup_vars.wcf_page_builder_step_save_nonce }, }) .done(function( response ) { if( response.success ) { if ( '' !== redirect_link ) { window.location = redirect_link; } } }) .fail(function() { console.log("error"); }) .always(function() { console.log("complete"); }); }, /** * Install Now */ _installNow: function(event) { event.preventDefault(); var $button = $( this ), $document = $(document), plugin_slug = $( '.page-builder-list option:selected' ).data( 'slug' ) || '', install = $( '.page-builder-list option:selected' ).data( 'install' ) || 'no', plugin_init = $( '.page-builder-list option:selected' ).data( 'init' ) || '', redirect_link = $( '.wcf-redirect-link' ).data('redirect-link') || ''; if ( $button.hasClass( 'updating-message' ) || $button.hasClass( 'button-disabled' ) ) { return; } $button.addClass( 'updating-message' ); if( 'yes' === install ) { CartFlowsWizard._activatePlugin( plugin_init, plugin_slug ); } else if( 'no' === install ) { console.log( 'plugin_slug ' + plugin_slug ); CartFlowsWizard._installPlugin( plugin_slug ); } else { $.ajax({ url : ajaxurl, method : 'POST', data : { action : 'page_builder_save_option', page_builder : plugin_slug }, }) .done(function( data ) { if( data.success ) { if( '' !== redirect_link ) { window.location = redirect_link; } } }) .fail(function() { console.log("error"); }) .always(function() { console.log("complete"); }); } }, _installWc: function( event ) { event.preventDefault(); var $button = $(this); if ( $button.hasClass( 'updating-message' ) || $button.hasClass( 'button-disabled' ) ) { return; } $button.addClass( 'updating-message' ); var redirect_link = $( '.wcf-redirect-link' ).data('redirect-link') || ''; if( $( '.wcf-install-wc-input' ).prop( "checked" ) == true ) { var woo_installed = $( '.wcf-install-wc-input' ).data('woo-install'); var wcf_ca_installed = $( '.wcf-install-wc-input' ).data('wcf-ca-install'); if( 'yes' === woo_installed && 'yes' === wcf_ca_installed ) { CartFlowsWizard._activateWc(); } if( 'no' == woo_installed ) { CartFlowsWizard._installPlugin( 'woocommerce' ); } if( 'no' == wcf_ca_installed ) { CartFlowsWizard._installPlugin( 'woo-cart-abandonment-recovery' ); } } else { window.location = redirect_link; } }, _activateWc: function() { var redirect_link = $( '.wcf-redirect-link' ).data('redirect-link') || ''; $.ajax({ url : ajaxurl, method : 'POST', data : { action : 'wcf_activate_wc_plugins', security : cartflows_setup_vars.wcf_wc_plugins_activate_nonce }, }) .done(function( response ) { if( response.success && '' !== redirect_link ) { window.location = redirect_link; } }) .fail(function() { console.log("error"); }) .always(function() { console.log("complete"); }); }, _installPlugin: function( plugin_slug ) { if ( wp.updates.shouldRequestFilesystemCredentials && ! wp.updates.ajaxLocked ) { wp.updates.requestFilesystemCredentials( event ); $document.on( 'credential-modal-cancel', function() { var $message = $( '.install-now.updating-message' ); $message .removeClass( 'updating-message' ) .text( wp.updates.l10n.installNow ); wp.a11y.speak( wp.updates.l10n.updateCancel, 'polite' ); } ); } wp.updates.installPlugin( { slug: plugin_slug } ); }, } $( document ).ready(function() { CartFlowsWizard.init(); }); } )( jQuery );
| ver. 1.4 |
Github
|
.
| PHP 7.0.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings