You are here

function getlocations_feeds_get_field_info in Get Locations 7.2

Same name and namespace in other branches
  1. 7 modules/getlocations_feeds/getlocations_feeds.module \getlocations_feeds_get_field_info()

Returns location field level settings.

Parameters

$field_name: The field name to return info for.

Return value

The field info array.

2 calls to getlocations_feeds_get_field_info()
getlocations_feeds_set_country in modules/getlocations_feeds/getlocations_feeds.module
Set the country and attempt to support non-iso country imports
getlocations_feeds_set_target in modules/getlocations_feeds/getlocations_feeds.module

File

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

Code

function getlocations_feeds_get_field_info($field_name) {
  $field_settings = field_info_field($field_name);
  return $field_settings['settings'];
}