| Server IP : 89.108.64.180 / Your IP : 216.73.216.60 Web Server : Apache/2.4.41 (Ubuntu) System : Linux 89-108-64-180.cloudvps.regruhosting.ru 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : www-root ( 1010) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/www-root/data/www/smileyalta.ru/wp-content/plugins/loco-translate/pub/js/ |
Upload File : |
/**
* Script for file move operation
*/
!function( window, document, $ ){
var fsConn,
destPath,
fsHook = document.getElementById('loco-fs'),
elForm = document.getElementById('loco-move'),
origPath = elForm.path.value
;
function setFormDisabled( disabled ){
$(elForm).find('button.button-primary').each( function(i,button){
button.disabled = disabled;
} );
}
function onFsConnect( valid ){
setFormDisabled( ! ( valid && destPath ) );
}
function validate(event){
var field = event.target||{}, value;
if( 'dest' === field.name && ( field.checked || 'text' === field.type ) ){
value = field.value;
if( value && value !== destPath ){
destPath = value;
setFormDisabled(true);
// check chosen target permissions
if( origPath !== value ){
fsHook.dest.value = value;
fsConn.connect();
}
}
}
}
function process( event ){
if( destPath ){
return true;
}
event.preventDefault();
return false;
}
if( fsHook && elForm ){
fsConn = window.locoScope.fs.init(fsHook).setForm(elForm).listen(onFsConnect);
$(elForm).change(validate).submit(process);
}
}( window, document, jQuery );