You are here

function theme_getlocations_gps_map_display_options_form in Get Locations 7.2

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

File

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

Code

function theme_getlocations_gps_map_display_options_form($variables) {
  $form = $variables['form'];
  $form['gps_button']['#prefix'] = '<fieldset class="collapsible getlocations_fieldset form-wrapper"><legend><span class="fieldset-legend">' . t('GPS Button') . '</span></legend><div class="fieldset-wrapper">';
  $tsuf = $form['gps_center']['#suffix'];
  $form['gps_center']['#suffix'] = $tsuf . '</div></fieldset>';
  $output = '';
  $output .= drupal_render_children($form);
  return $output;
}