HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpwatermates/wp-content/plugins/wp-google-maps/upload.js
jQuery(function($) {

var clicked_on_imgbtn = false;
var clicked_on_markerbtn = false;
var clicked_on_custommarkerbtn = false;

jQuery('#upload_image_button').click(function() {
 formfield = jQuery('#wpgmza_add_pic').attr('name');
 clicked_on_imgbtn = true;
 clicked_on_markerbtn = false;
 clicked_on_custommarkerbtn = false;
 tb_show('', 'media-upload.php?type=image&TB_iframe=true');
 return false;
});


jQuery('#upload_default_marker_btn').click(function() {
 formfield = jQuery('#upload_default_marker').attr('name');
 clicked_on_imgbtn = false;
 clicked_on_markerbtn = true;
 clicked_on_custommarkerbtn = false;
 tb_show('', 'media-upload.php?type=image&TB_iframe=true');
 return false;
});

jQuery('#upload_custom_marker_button').click(function() {
 formfield = jQuery('#wpgmza_add_custom_marker').attr('name');
 clicked_on_imgbtn = false;
 clicked_on_markerbtn = false;
 clicked_on_custommarkerbtn = true;
 tb_show('', 'media-upload.php?type=image&TB_iframe=true');
 return false;
});


window.send_to_editor = function(html) {
 imgurl = jQuery('img',html).attr('src');
 if (clicked_on_imgbtn) { jQuery('#wpgmza_add_pic').val(imgurl); }
 if (clicked_on_markerbtn) { jQuery('#upload_default_marker').val(imgurl); jQuery("#wpgmza_mm").html("<img src=\""+imgurl+"\" />"); }
 if (clicked_on_custommarkerbtn) { jQuery('#wpgmza_add_custom_marker').val(imgurl); jQuery("#wpgmza_cmm").html("<img src=\""+imgurl+"\" />"); }
 tb_remove();
}



});