HEX
Server: LiteSpeed
System: Linux premium221.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
User: madepabj (2566)
PHP: 8.3.26
Disabled: NONE
Upload Files
File: //home/madepabj/public_html/wp-content/themes/rehub-theme/shortcodes/tinyMCE/includes/map.php
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>

<script data-cfasync="false">

// executes this when the DOM is ready
jQuery(document).ready(function() {
	// handles the click event of the submit button
	jQuery('#submit').click(function(){
		// defines the options and their default values
		// again, this is not the most elegant way to do this
		// but well, this gets the job done nonetheless
		var options = { 
			'title'      	: '',
			'location'     : '',
			'zoom'      	: '10',
			'key'      	: '',
			'height'      	: '250px'
			};
		var shortcode = '[wpsm_googlemap';
		
		for( var index in options) {
			var value = jQuery('#form').find('#map-' + index).val();
			
			if ( value !== '' )
				shortcode += ' ' + index + '="' + value + '"';
			else
				shortcode += ' ' + index + '="' + options[index] + '"'; 	
		}
		shortcode += ']';
		
        window.send_to_editor(shortcode);
		
		// closes Thickbox
		tb_remove();
	});
}); 
</script>
<form action="/" method="get" id="form" name="form" accept-charset="utf-8">
	<p><label><?php esc_html_e('Title', 'rehub-theme') ;?></label>
        <input type="text" name="map-title" value="" id="map-title" />
    </p>
	
	<p><label><?php esc_html_e('Location', 'rehub-theme') ;?></label>
        <input type="text" name="map-location" value="2 Elizabeth St, Melbourne Victoria 3000 Australia" id="map-location" />
    </p>
	<p><label><?php esc_html_e('Zoom', 'rehub-theme') ;?></label>
        <input type="text" name="map-zoom" value="10" id="map-zoom" />
    </p>
	
	<p><label><?php esc_html_e('Height of map (with px)', 'rehub-theme') ;?></label>
        <input type="text" name="map-height" value="250px" id="map-height" />
    </p>  

	<p><label><?php esc_html_e('Google api key', 'rehub-theme') ;?></label>
        <input type="text" name="key" value="10" id="key" />
    </p>      
	 <p>
        <label>&nbsp;</label>
        <input type="button" id="submit" class="button" value="<?php esc_html_e('Insert', 'rehub-theme') ;?>" name="submit" />
    </p>
</form>