function theme_getlocations_leaflet_display_options_form in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_leaflet/getlocations_leaflet.module \theme_getlocations_leaflet_display_options_form()
File
- modules/
getlocations_leaflet/ getlocations_leaflet.module, line 5516 - getlocations_leaflet.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function theme_getlocations_leaflet_display_options_form($variables) {
$form = $variables['form'];
$form = getlocations_leaflet_display_options_fieldsets($form);
$output = '';
$output .= drupal_render_children($form);
return $output;
}