Добрый день, нужен человек кто поправит ошибку в плагине Limit Attachment Downloads
Кнопка
или в этом
Код js
Код:
Uncaught ReferenceError: xcuDownloadFunction is not defined
at HTMLButtonElement.onclick (download:1846:186)
Кнопка
Код:
<button type="button" class="button download-btn" onclick="xcuDownloadFunction(this, 'https://drive.google.com/file/d/view?usp=sharing')"><span class="button-text">
Код:
<xf:js>
var countdownInterval; // Declare a variable to store the interval ID
function xcuDownloadFunction(ele, url) {
var permissionValue = {{ $xf.visitor->hasPermission('xcuLimitRosourceDownloads', 'countdownTimerTime') }};
var countdownValue = (permissionValue === 0) ? {$xf.options.xcu_lrdl_countdown_timer_time} : permissionValue;
var counter = (countdownValue === 0) ? {$xf.options.xcu_lrdl_countdown_timer_time} : countdownValue;
var a = document.createElement('a');
var link = document.createTextNode("{{ phrase('download') }}");
var icon = document.createElement('i');
icon.className = "fas fa-download";
a.appendChild(icon);
a.appendChild(link);
a.href = url;
a.className = "button button--cta download-btn";
var newElement = document.createElement("p");
// Create a <span> element with the 'countdown' class
var countdownText = document.createElement("span");
countdownText.className = "countdown";
countdownText.textContent = "Download link will be ready in " + counter.toString() + " seconds.";
newElement.appendChild(countdownText); // Append the <span> to the newElement
ele.parentNode.replaceChild(newElement, ele);
// Function to update the countdown
function updateCountdown() {
countdownText.textContent = "Download link will be ready in " + counter.toString() + " seconds.";
}
countdownInterval = setInterval(function() {
counter--;
if (counter < 0) {
newElement.parentNode.replaceChild(a, newElement);
clearInterval(countdownInterval);
} else {
updateCountdown();
}
}, 1000);
// Pause the countdown when the page is not visible
document.addEventListener("visibilitychange", function() {
if (document.hidden) {
clearInterval(countdownInterval);
} else {
// Resume the countdown when the page becomes visible again
countdownInterval = setInterval(function() {
counter--;
if (counter < 0) {
newElement.parentNode.replaceChild(a, newElement);
clearInterval(countdownInterval);
} else {
updateCountdown();
}
}, 1000);
}
});
}
</xf:js>
или в этом
Код:
<xf:js>
window.xcuDownloadFunction = function(ele, url) {
var permissionValue = {{ $xf.visitor->hasPermission('xcuLimitRosourceDownloads', 'countdownTimerTime') }};
var countdownValue = (permissionValue === 0) ? {$xf.options.xcu_lrdl_countdown_timer_time} : permissionValue;
var counter = (countdownValue === 0) ? {$xf.options.xcu_lrdl_countdown_timer_time} : countdownValue;
var a = document.createElement('a');
var link = document.createTextNode("{{ phrase('download') }}");
var icon = document.createElement('i');
icon.className = "fas fa-download";
a.appendChild(icon);
a.appendChild(link);
a.href = url;
a.className = "button button--cta download-btn";
var newElement = document.createElement("p");
// Create a <span> element with the 'countdown' class
var countdownText = document.createElement("span");
countdownText.className = "countdown";
countdownText.textContent = "Download link will be ready in " + counter + " seconds.";
newElement.appendChild(countdownText); // Append the <span> to the newElement
ele.parentNode.replaceChild(newElement, ele);
// Function to update the countdown
function updateCountdown() {
countdownText.textContent = "Download link will be ready in " + counter + " seconds.";
}
countdownInterval = setInterval(function() {
counter--;
if (counter < 0) {
newElement.parentNode.replaceChild(a, newElement);
clearInterval(countdownInterval);
} else {
updateCountdown();
}
}, 1000);
// Pause the countdown when the page is not visible
document.addEventListener("visibilitychange", function() {
if (document.hidden) {
clearInterval(countdownInterval);
} else {
// Resume the countdown when the page becomes visible again
countdownInterval = setInterval(function() {
counter--;
if (counter < 0) {
newElement.parentNode.replaceChild(a, newElement);
clearInterval(countdownInterval);
} else {
updateCountdown();
}
}, 1000);
}
});
}
</xf:js>
Код js
Последнее редактирование: