You are here

function google_map_field_field_widget_info in Google Map Field 7.2

Same name and namespace in other branches
  1. 7 google_map_field.module \google_map_field_field_widget_info()

Implements hook_field_widget_info().

File

./google_map_field.module, line 69
This file defines all the necessary hooks and functions to create a Google Map Field field type for inserting maps directly into content items (node, entities etc).

Code

function google_map_field_field_widget_info() {
  return array(
    'google_map_field_widget' => array(
      'label' => t('Map'),
      'field types' => array(
        'google_map_field',
      ),
    ),
  );
}