| Server IP : 146.190.157.162 / Your IP : 216.73.217.1 Web Server : Apache System : Linux ubuntu-s-2vcpu-4gb-amd-sfo3-01-KIT-DIGITAL 6.5.0-44-generic #44-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 7 15:10:09 UTC 2024 x86_64 User : aragonviento ( 849) PHP Version : 8.2.10-2ubuntu2.2 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_signal,pcntl_signal_dispatch,pcntl_getpriority,pcntl_setpriority,dl,putenv,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/aragonviento/wp-content/themes/Divi/epanel/js/ |
Upload File : |
jQuery(function() {
var et_file_frame;
jQuery('.et-upload-image-button').on('click', function(event) {
var this_el = jQuery( this ),
use_for = this_el.parents( '.et-epanel-box' ).find( '.et-box-title > h3' ).text(),
button_text = this_el.data( 'button_text' ),
window_title = epanel_uploader.media_window_title,
fileInput = this_el.parent().prev('input.et-upload-field');
event.preventDefault();
et_file_frame = wp.media.frames.et_file_frame = wp.media({
title: window_title,
library: {
type: 'image'
},
button: {
text: button_text,
},
multiple: false
});
et_file_frame.on( 'select', function() {
var attachment = et_file_frame.state().get( 'selection' ).first().toJSON();
fileInput.val( attachment.url );
});
et_file_frame.open();
return false;
});
jQuery('.et-upload-image-reset').on('click', function() {
jQuery(this).parent().prev( 'input.et-upload-field' ).val( '' );
});
});