You are here

function theme_location_cck_formatter_map in Location 6.3

Same name and namespace in other branches
  1. 7.4 contrib/location_cck/location_cck.module \theme_location_cck_formatter_map()

Returns a map for an individual field value.

File

contrib/location_cck/location_cck.module, line 371
Defines location field type.

Code

function theme_location_cck_formatter_map($element) {
  $field = content_fields($element['#field_name'], $element['#type_name']);
  $location = $element['#item'];
  return theme_location_cck_field_map(array(
    $location,
  ), $field);
}