You are here

function theme_addressfield_autocomplete_map in Addressfield Autocomplete 7

Render a container for a set of address fields.

1 theme call to theme_addressfield_autocomplete_map()
addressfield_autocomplete_field_widget_form in ./addressfield_autocomplete.module
Implements hook_field_widget_form().

File

./addressfield_autocomplete.module, line 513
The Addressfield Autocomplete module code.

Code

function theme_addressfield_autocomplete_map($variables) {
  $attributes = $variables['attributes'];
  $attributes['class'][] = 'autocomplete-map';
  $attributes['class'][] = 'clearfix';
  return '<div' . drupal_attributes($attributes) . '></div>';
}