| Server IP : _ / Your IP : 169.254.129.1 Web Server : nginx/1.28.0 System : Linux 89e302d72aa1 6.6.143.1-1.azl3 #1 SMP PREEMPT_DYNAMIC Mon Jul 6 04:01:14 UTC 2026 x86_64 User : nginx ( 103) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/wordpress/wp-content/plugins/wp-google-maps/ |
Upload File : |
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();
}
});