function addressfield_staticmap_get_size_description in Address Field Static Map 7
1 call to addressfield_staticmap_get_size_description()
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;
}