You are here

function theme_gmap_address in GMap Module 6.2

Same name and namespace in other branches
  1. 5 gmap.module \theme_gmap_address()
  2. 6 gmap.module \theme_gmap_address()

File

./gmap.module, line 887
GMap -- Routines to use the Google Maps API in Drupal.

Code

function theme_gmap_address($element) {
  drupal_add_js(drupal_get_path('module', 'gmap') . '/js/address.js');
  $element['#autocomplete_path'] = '';
  return theme('textfield', $element);
}