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()
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>';
}