You are here

function addressfield_staticmap_get_size_description in Address Field Static Map 7

1 call to addressfield_staticmap_get_size_description()
addressfield_staticmap_field_formatter_settings_summary in ./addressfield_staticmap.module
Implements hook_field_formatter_settings_summary().

File

./addressfield_staticmap.module, line 572
Main file for the addressfield static map module.

Code

function addressfield_staticmap_get_size_description($settings) {
  $size = addressfield_staticmap_get_size_args($settings);
  if (empty($size)) {
    return 'Styled using CSS';
  }
  return $size;
}