You are here

function geolocation_html5_field_widget_info in Geolocation Field 7

Implements hook_field_widget_info().

File

modules/geolocation_html5/geolocation_html5.module, line 52
HTML5 widget and formaters for Geolocation.

Code

function geolocation_html5_field_widget_info() {
  return array(
    'geolocation_html5_widget' => array(
      'label' => t('HTML5 widget'),
      'field types' => array(
        'geolocation_latlng',
      ),
    ),
  );
}