You are here

function getdirections_fields_field_widget_info in Get Directions 7.3

Implements hook_field_widget_info(). Expose Field API widget types.

Return value

An array describing the widget types implemented by the module.

File

modules/getdirections_fields/getdirections_fields.module, line 416
Provides Field module integration for Getdirections

Code

function getdirections_fields_field_widget_info() {
  $info = array(
    'getdirections_fields_default' => array(
      'label' => t('Directions Finder Field'),
      'field types' => array(
        'getdirections_fields',
      ),
      'settings' => array(),
    ),
  );
  return $info;
}