filefield_geocode_handler_info

geocode/includes/modules/filefield.inc, line 5

Versions
6
filefield_geocode_handler_info()

Implementation of hook_geocode_handler_info() on behalf of filefield.

Code

<?php
function filefield_geocode_handler_info() {
  return array(
    'geocode_filefield' => array(
      'title' => t('File field'),
      'module' => 'geocode',
      'file' => 'filefield.inc',
      'file path' => drupal_get_path('module', 'geocode') .'/includes/modules',
      'return types' => array(
        'geo' => array('linestring'),
      ),
      'field types' => array('filefield'),
    ),
  );
}
?>