Function Reference: geodir_custom_gmaps_element_type_options

Summary

This function has not been documented yet.

Source File

geodir_custom_gmaps_element_type_options() is located in geodir_custom_google_maps/geodir_custom_gmaps_functions.php [Line: 301]

Source Code

function geodir_custom_gmaps_element_type_options($value='', $select=true) {
	$return = $select ? '' : '';
	
	$element_types = geodir_custom_gmaps_StyleElementType();
	
	if (!empty($element_types)) {
		foreach ($element_types as $element_type) {
			$selected = $element_type == $value ? 'selected="selected"' : '';
			$return .= '';
		}
	}
	
	return $return;
}