You are here

function getlocations_fields_map_settings_allow in Get Locations 7.2

Same name and namespace in other branches
  1. 7 modules/getlocations_fields/getlocations_fields.module \getlocations_fields_map_settings_allow()
9 calls to getlocations_fields_map_settings_allow()
getlocations_entity_type_map in ./getlocations.module
Page callback: displays a map.
getlocations_fields_load_location in modules/getlocations_fields/getlocations_fields.module
getlocations_fields_save_locations in modules/getlocations_fields/getlocations_fields.module
getlocations_lids in ./getlocations.module
Page callback: displays a map.
getlocations_map_field_formatter_view in modules/getlocations_map/getlocations_map.module
Implements hook_field_formatter_view(). Build a renderable array for a field value.

... See full list

File

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

Code

function getlocations_fields_map_settings_allow() {
  $getlocations_fields_defaults = getlocations_fields_defaults();
  if ($getlocations_fields_defaults['map_settings_allow']) {
    return TRUE;
  }
  return FALSE;
}