function location_feeds_get_field_info in Location Feeds 7
Returns location field level settings.
@retrun The field info array.
Parameters
$field_name: The field name to return info for.
4 calls to location_feeds_get_field_info()
- location_feeds_set_country in ./
location_feeds.module - Set the country and attempt to support non-iso country imports
- location_feeds_set_georss_point in ./
location_feeds.module - Sets a georss:point value for the node
- location_feeds_set_point in ./
location_feeds.module - Sets a latitude or longitude point for the node and attempts to recognize either decimal or DMS notation.
- location_feeds_set_target in ./
location_feeds.module - Implements feed_set_target().
File
- ./
location_feeds.module, line 392 - This module provides location mappers to feed importers.
Code
function location_feeds_get_field_info($field_name) {
$field_settings = field_info_field($field_name);
return $field_settings['settings']['location_settings'];
}