function getlocations_fields_column_check in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_fields/getlocations_fields.module \getlocations_fields_column_check()
5 calls to getlocations_fields_column_check()
- getlocations_fields_entity_key_map in modules/
getlocations_fields_entity/ getlocations_fields_entity.module - Helper function that returns getlocations_fields key map array
- getlocations_fields_init in modules/
getlocations_fields/ getlocations_fields.module - Implements hook_init().
- getlocations_fields_load_location in modules/
getlocations_fields/ getlocations_fields.module - getlocations_fields_load_locations in modules/
getlocations_fields/ getlocations_fields.module - getlocations_search_info_sql in modules/
getlocations_search/ getlocations_search.module
File
- modules/
getlocations_fields/ getlocations_fields.module, line 3961 - getlocations_fields.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_fields_column_check($field) {
if ($result = db_field_exists('getlocations_fields', $field)) {
return TRUE;
}
return FALSE;
}