function theme_gmap_style in GMap Module 5
Same name and namespace in other branches
- 6.2 gmap.module \theme_gmap_style()
- 6 gmap.module \theme_gmap_style()
Theme a gmap_style fieldset.
File
- ./
gmap.module, line 635 - GMap -- Routines to use the Google Maps API in Drupal.
Code
function theme_gmap_style($element) {
// Fieldsets print #value at the end, so we need to empty it out.
// Otherwise, it puts "Array" at the end of the fieldset.
$element['#value'] = '';
return theme('fieldset', $element, $element['#children']);
}