function getlocations_fields_map_settings_allow in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_fields/getlocations_fields.module \getlocations_fields_map_settings_allow()
14 calls to getlocations_fields_map_settings_allow()
- getlocations_commentmap in ./
getlocations.module - Page callback: Displays a map.
- getlocations_fields_load_location in modules/
getlocations_fields/ getlocations_fields.module - getlocations_fields_load_locations 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.
File
- modules/
getlocations_fields/ getlocations_fields.module, line 4037 - 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;
}