Function Reference: geodir_custom_gmaps_feature_type_options

Summary

This function has not been documented yet.

Source File

geodir_custom_gmaps_feature_type_options() is located in geodir_custom_google_maps/geodir_custom_gmaps_functions.php [Line: 286]

Source Code

function geodir_custom_gmaps_feature_type_options($value='', $select=false) {
	$return = $select ? '' : '';
	
	$feature_types = geodir_custom_gmaps_StyleFeatureType();
	
	if (!empty($feature_types)) {
		foreach ($feature_types as $feature_type) {
			$selected = $feature_type == $value ? 'selected="selected"' : '';
			$return .= '';
		}
	}
	
	return $return;
}