HEX
Server: LiteSpeed
System: Linux cde2.duelhost.dk 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64
User: dtptviut (1121)
PHP: 8.0.30
Disabled: exec,system,passthru,shell_exec,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/dtptviut/public_html/wp-content/plugins/w3-total-cache/pub/js/exit-survey.js
/**
 * File: exit-survey.js
 *
 * JavaScript for the exit survey modal.
 *
 * @since 2.10.0
 *
 * @global w3tcData Localized array variable.
 */

function w3tcGetExitSurveyNonce(action) {
  if (
    "undefined" !== typeof w3tcData &&
    w3tcData.nonces &&
    w3tcData.nonces[action]
  ) {
    return w3tcData.nonces[action];
  }
  return "";
}

/**
 * Display the exit servey modal on plugin deactivation.
 *
 * @since 2.8.3
 */
function w3tc_exit_survey_render() {
  W3tc_Lightbox.open({
    id: "w3tc-overlay",
    height: "auto",
    maxWidth: 600,
    url: `${ajaxurl}?action=w3tc_ajax&_wpnonce=${w3tcGetExitSurveyNonce("exit_survey_render")}&w3tc_action=exit_survey_render`,
    callback: function (lightbox) {
      // Retrieve the original deactivation URL.
      var deactivateUrl = jQuery("#deactivate-w3-total-cache").attr("href");

      // Cancel button action
      jQuery("#w3tc-exit-survey-skip", lightbox.container).on(
        "click",
        function () {
          // Show spinner and disable interactions.
          lightbox.show_spinner();

          if (window.w3tc_ga) {
            w3tc_ga("event", "button", {
              eventCategory: "click",
              eventLabel: "exit_survey_skip",
            });
          }

          var remove = jQuery(
            'input[name="remove"]:checked',
            lightbox.container,
          ).val();

          if ("yes" === remove) {
            // Build the params object.
            var params = {
              action: "w3tc_ajax",
              _wpnonce: w3tcGetExitSurveyNonce("exit_survey_skip"),
              w3tc_action: "exit_survey_skip",
              remove: remove,
            };

            // Send the remove data flag via AJAX.
            jQuery.post(ajaxurl, params, function (response) {
              if (response.error && window.w3tc_ga) {
                w3tc_ga("event", "w3tc_error", {
                  eventCategory: "exit_survey",
                  eventLabel: "skip_error",
                });
              }
            });
          }

          lightbox.close();
          window.location.href = deactivateUrl;
        },
      );

      // Handle form submission.
      jQuery("#w3tc-exit-survey-form", lightbox.container).on(
        "submit",
        function (event) {
          event.preventDefault();

          // Show spinner and disable interactions.
          lightbox.show_spinner();

          if (window.w3tc_ga) {
            w3tc_ga("event", "button", {
              eventCategory: "click",
              eventLabel: "exit_survey_submit",
            });
          }

          // Collect form data.
          var reason = jQuery(
            'input[name="reason"]:checked',
            lightbox.container,
          ).val();
          var other = jQuery('input[name="other"]', lightbox.container).val();
          var email = jQuery('input[name="email"]', lightbox.container).val();
          var remove = jQuery(
            'input[name="remove"]:checked',
            lightbox.container,
          ).val();

          // Build the params object.
          var params = {
            action: "w3tc_ajax",
            _wpnonce: w3tcGetExitSurveyNonce("exit_survey_submit"),
            w3tc_action: "exit_survey_submit",
            reason: reason,
            other: other,
            email: email,
            remove: remove,
          };

          // Send the survey data to the API server.
          jQuery.post(ajaxurl, params, function (response) {
            if (response.error && window.w3tc_ga) {
              w3tc_ga("event", "w3tc_error", {
                eventCategory: "exit_survey",
                eventLabel: "api_error",
              });
            }

            lightbox.close();
            window.location.href = deactivateUrl;
          });
        },
      );

      lightbox.resize();
    },
  });
}

// On document ready.
jQuery(function () {
  /**
   * Trigger display of exit survey on plugin deactivation link click.
   *
   * @since 2.8.3
   */
  jQuery("#deactivate-w3-total-cache").on("click", function (e) {
    e.preventDefault();

    if (window.w3tc_ga) {
      w3tc_ga("event", "button", {
        eventCategory: "click",
        eventLabel: "exit_survey_open",
      });
    }

    w3tc_exit_survey_render();
    return false;
  });

  // Listen for changes on the radio buttons.
  jQuery(document).on("change", 'input[name="reason"]', function () {
    // Enable Submit & Deactivate button once an option is selected.
    if (jQuery('input[name="reason"]:checked').length > 0) {
      jQuery(".w3tc-exit-survey-email #email").prop("disabled", false);
      jQuery("#w3tc-exit-survey-submit").prop("disabled", false);
    }

    // Show more info input box.
    jQuery("#w3tc_exit_survey_uninstall_reason_more_info").show();
  });
});