| Server IP : 130.225.57.55 / Your IP : 216.73.216.60 Web Server : Apache System : Linux wp-vhost07 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /srv/www/reco2st.eu/https/wp-content/plugins/w3-total-cache/ |
Upload File : |
/**
* File: Cdnfsd_CloudFront_Page_View.js
*
* CloudFront full-site delivery settings page lightbox interactions.
*
* @package W3TC
* @since 2.0.0
*/
jQuery(function ($) {
function w3tc_popup_resize(o) {
o.resize();
}
$("body")
.on("click", ".w3tc_cdn_cloudfront_fsd_authorize", function () {
W3tc_Lightbox.open({
id: "w3tc-overlay",
close: "",
width: 800,
height: 300,
url:
ajaxurl +
"?action=w3tc_ajax&_wpnonce=" +
w3tcGetAjaxNonce("cdn_cloudfront_fsd_intro") +
"&w3tc_action=cdn_cloudfront_fsd_intro",
callback: w3tc_popup_resize,
});
})
.on("click", ".w3tc_cdn_cloudfront_fsd_list_distributions", function () {
var url =
ajaxurl +
"?action=w3tc_ajax&_wpnonce=" +
w3tcGetAjaxNonce("cdn_cloudfront_fsd_list_distributions") +
"&w3tc_action=cdn_cloudfront_fsd_list_distributions";
var v = $(".w3tc_popup_form")
.find("input")
.each(function (i) {
var name = $(this).attr("name");
if (name)
url +=
"&" +
encodeURIComponent(name) +
"=" +
encodeURIComponent($(this).val());
});
W3tc_Lightbox.load(url, w3tc_popup_resize);
})
.on("click", ".w3tc_cdn_cloudfront_fsd_view_distribution", function () {
var url =
ajaxurl +
"?action=w3tc_ajax&_wpnonce=" +
w3tcGetAjaxNonce("cdn_cloudfront_fsd_view_distribution") +
"&w3tc_action=cdn_cloudfront_fsd_view_distribution";
var v = $(".w3tc_popup_form")
.find("input")
.each(function (i) {
var name = $(this).attr("name");
var type = $(this).attr("type");
if (type == "radio") {
if (!$(this).prop("checked")) return;
}
if (name)
url +=
"&" +
encodeURIComponent(name) +
"=" +
encodeURIComponent($(this).val());
});
W3tc_Lightbox.load(url, w3tc_popup_resize);
})
.on(
"click",
".w3tc_cdn_cloudfront_fsd_configure_distribution",
function () {
var url =
ajaxurl +
"?action=w3tc_ajax&_wpnonce=" +
w3tcGetAjaxNonce("cdn_cloudfront_fsd_configure_distribution") +
"&w3tc_action=cdn_cloudfront_fsd_configure_distribution";
var v = $(".w3tc_popup_form")
.find("input")
.each(function (i) {
var name = $(this).attr("name");
if (name)
url +=
"&" +
encodeURIComponent(name) +
"=" +
encodeURIComponent($(this).val());
});
W3tc_Lightbox.load(url, w3tc_popup_resize);
},
)
.on(
"click",
".w3tc_cdn_cloudfront_fsd_configure_distribution_skip",
function () {
var url =
ajaxurl +
"?action=w3tc_ajax&_wpnonce=" +
w3tcGetAjaxNonce("cdn_cloudfront_fsd_configure_distribution_skip") +
"&w3tc_action=cdn_cloudfront_fsd_configure_distribution_skip";
var v = $(".w3tc_popup_form")
.find("input")
.each(function (i) {
var name = $(this).attr("name");
if (name)
url +=
"&" +
encodeURIComponent(name) +
"=" +
encodeURIComponent($(this).val());
});
W3tc_Lightbox.load(url, w3tc_popup_resize);
},
)
.on("click", ".w3tc_cdn_cloudfront_fsd_done", function () {
// refresh page
window.location = window.location + "&";
})
.on("size_change", "#cdn_cname_add", function () {
w3tc_popup_resize(W3tc_Lightbox);
});
});