You are here

function google_map_field_field_widget_info in Google Map Field 7

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

Implements hook_field_widget_info().

File

./google_map_field.module, line 86
This file defines all the necessary hooks and functions to create a Google Map Field field type and also a WYSIWYG editor plugin for inserting maps directly into filtered content.

Code

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