You are here

function theme_getlocations_leaflet_plugin_style_options_form in Get Locations 7

Same name and namespace in other branches
  1. 7.2 modules/getlocations_leaflet/getlocations_leaflet.module \theme_getlocations_leaflet_plugin_style_options_form()

Function

Return value

Returns

File

modules/getlocations_leaflet/getlocations_leaflet.module, line 5419
getlocations_leaflet.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function theme_getlocations_leaflet_plugin_style_options_form($variables) {
  $form = $variables['form'];
  $form = getlocations_leaflet_display_options_fieldsets($form);
  $output = '';
  $output .= drupal_render_children($form);
  return $output;
}