You are here

function getlocations_mapquest_field_widget_info in Get Locations 7

Same name and namespace in other branches
  1. 7.2 modules/getlocations_mapquest/getlocations_mapquest.module \getlocations_mapquest_field_widget_info()

Implements hook_field_widget_info(). Expose Field API widget types.

Return value

An array describing the widget types implemented by the module.

File

modules/getlocations_mapquest/getlocations_mapquest.module, line 642
getlocations_mapquest.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function getlocations_mapquest_field_widget_info() {
  $info = array(
    'getlocations_mapquest_map' => array(
      'label' => t('Getlocations Mapquest Map Field'),
      'field types' => array(
        'getlocations_mapquest',
      ),
      'settings' => array(),
    ),
  );
  return $info;
}