| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/httpd/html/baberankings.com/wp-content/plugins/w3-total-cache/ |
Upload File : |
/**
* File: ObjectCache_DiskPopup.js
*
* @since 2.8.6
*
* @package W3TC
*/
/**
* Modal for object cache disk usage risk acceptance.
*
* @since 2.8.6
*
* @return void
*/
function w3tc_show_objectcache_diskpopup(previous, triggeredByEngineChange) {
W3tc_Lightbox.open({
id: "w3tc-overlay",
close: "",
width: 800,
height: 300,
url:
ajaxurl +
"?action=w3tc_ajax&_wpnonce=" +
w3tcGetAjaxNonce("objectcache_diskpopup") +
"&w3tc_action=objectcache_diskpopup",
callback: function (lightbox) {
jQuery(".btn-primary", lightbox.container).click(function () {
jQuery(document).off("keyup.w3tc_lightbox"); // Cleanup event listener.
lightbox.close();
});
jQuery(".btn-secondary, .lightbox-close").click(function () {
if (triggeredByEngineChange) {
// Case 2: Revert engine selection to previous.
if (previous) {
jQuery("#objectcache__engine").val(previous);
}
} else {
// Case 1: Uncheck enable checkbox.
jQuery("#objectcache__enabled").prop("checked", false);
}
jQuery(".objectcache_disk_notice").hide();
jQuery(document).off("keyup.w3tc_lightbox"); // Cleanup event listener.
lightbox.close();
});
jQuery(document).on("keyup.w3tc_lightbox", function (e) {
if ("Escape" === e.key) {
if (triggeredByEngineChange) {
// Case 2: Revert engine selection to previous.
if (previous) {
jQuery("#objectcache__engine").val(previous);
}
} else {
// Case 1: Uncheck enable checkbox.
jQuery("#objectcache__enabled").prop("checked", false);
}
jQuery(".objectcache_disk_notice").hide();
jQuery(document).off("keyup.w3tc_lightbox"); // Cleanup event listener.
lightbox.close();
}
});
lightbox.resize();
},
});
}
jQuery(function ($) {
$("#objectcache__enabled").click(function () {
const checked = $(this).is(":checked"),
engine = $("#objectcache__engine").val();
if (!checked) {
return;
}
if ("file" === engine) {
w3tc_show_objectcache_diskpopup(null, false);
}
});
let previous = null;
$("#objectcache__engine")
.on("focus", function () {
previous = this.value;
})
.change(function () {
const checked = $("#objectcache__enabled").is(":checked"),
engine = $(this).val();
if (!checked) {
return;
}
if ("file" === engine) {
w3tc_show_objectcache_diskpopup(previous, true);
} else {
// Only update `previous` if the new selection is NOT 'file'.
previous = engine;
}
});
});