You are here

function theme_getlocations_mapquest_plugin_style_options_form in Get Locations 7.2

Same name and namespace in other branches
  1. 7 modules/getlocations_mapquest/getlocations_mapquest.module \theme_getlocations_mapquest_plugin_style_options_form()

Function

Return value

Returns

File

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

Code

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