| Server IP : 104.21.84.107 / Your IP : 104.23.243.196 Web Server : Apache/2.4.63 (Ubuntu) System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.4.5 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/ictiologia/media/com_akeebabackup/js/ |
Upload File : |
/**
* @package akeebabackup
* @copyright Copyright (c)2006-2024 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU General Public License version 3, or later
*/
"use strict";
if (typeof akeebabackup == "undefined")
{
var akeebabackup = {};
}
if (typeof akeebabackup.RemoteFiles == "undefined")
{
akeebabackup.RemoteFiles = {};
}
/**
* Shows the modal "please wait" card.
*
* This informs the user that something is happening in the background instead of letting them wonder if the software is
* broken. It also prevents impatient users from multiple-clicking an action button which could have unintended
* consequences; none of the remote files actions are very good candidates for parallel execution.
*/
akeebabackup.RemoteFiles.showWaitModalFirst = function (e)
{
document.getElementById("akeebaBackupRemoteFilesWorkInProgress").classList.remove('d-none');
document.getElementById("akeebaBackupRemoteFilesMainInterface").classList.add('d-none');
};
akeebabackup.System.documentReady(function ()
{
// Action button anchors: show the modal "please wait" card when clicked
akeebabackup.System.iterateNodes(".akeebaRemoteFilesShowWait", function (el)
{
akeebabackup.System.addEventListener(el, "click", akeebabackup.RemoteFiles.showWaitModalFirst);
});
// Disabled button anchors: cancel the click event
akeebabackup.System.iterateNodes(".akeebaBackupRemoteFilesMainInterface[disabled=\"disabled\"]", function (el)
{
akeebabackup.System.addEventListener(el, "click", function ()
{
return false;
});
});
// dlprogress view: autosubmit form
var adminForm = document.getElementById("adminForm");
if (!adminForm)
{
return;
}
adminForm.submit();
});