function geofield_feeds_parser_sources_alter in Geofield 7
Same name and namespace in other branches
- 7.2 geofield.feeds.inc \geofield_feeds_parser_sources_alter()
Implementation of hook_feeds_parser_sources_alter().
See also
geofield_feeds_combined_source()
File
- ./
geofield.feeds.inc, line 13 - Provides integration with Feeds module (http://drupal.org/project/feeds)
Code
function geofield_feeds_parser_sources_alter(&$sources, $content_type) {
$sources['geofield'] = array(
'name' => t('Geofield (combined)'),
'description' => t('All geographic information from the item.'),
'callback' => 'geofield_feeds_combined_source',
);
}