Function Reference: geodir_event_plugin_url

Summary

This function has not been documented yet.

Source File

geodir_event_plugin_url() is located in geodir_event_manager/gdevents_functions.php [Line: 9]

Source Code

function geodir_event_plugin_url() { 
	
	if (is_ssl()) : 
		return str_replace('http://', 'https://', WP_PLUGIN_URL) . "/" . plugin_basename( dirname(__FILE__)); 
	else :
		return WP_PLUGIN_URL . "/" . plugin_basename( dirname(__FILE__)); 
	endif;
}