function theme_getlocations_gps_settings_form in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_gps/getlocations_gps.module \theme_getlocations_gps_settings_form()
File
- modules/
getlocations_gps/ getlocations_gps.module, line 410 - getlocations_gps.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function theme_getlocations_gps_settings_form($variables) {
$form = $variables['form'];
$output = '';
$link = getlocations_markerpicker_link($form['getlocations_gps_defaults']['gps_marker']['#id'], 'g');
$form['getlocations_gps_defaults']['gps_marker']['#field_suffix'] = ' ' . $link;
$output .= drupal_render_children($form);
return $output;
}