You are here

function geolocation_googlemaps_field_widget_form_alter in Geolocation Field 7

Implements hook_field_widget_form_alter().

File

modules/geolocation_googlemaps/geolocation_googlemaps.module, line 575
Google Maps widget and formatters for Geolocation.

Code

function geolocation_googlemaps_field_widget_form_alter(&$element, &$form_state, $context) {

  // Attaches widget JS to each media reference widget.
  if (isset($element['#type']) && $element['#type'] == 'media') {
    geolocation_googlemaps_attach_google_js($element);
  }
}