You are here

function geolocation_googlemaps_field_widget_error in Geolocation Field 7

Implements hook_field_widget_error().

File

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

Code

function geolocation_googlemaps_field_widget_error($element, $error, $form, &$form_state) {
  switch ($error['error']) {
    case 'geolocation_invalid_lat':
    case 'geolocation_invalid_lng':
      form_error($element, $error['message']);
      break;
  }
}