You are here

function location_taxonomize_term_attach_enabled in Location Taxonomize 7.2

Returns whether the term attach option is enabled

2 calls to location_taxonomize_term_attach_enabled()
location_taxonomize_taxonomize in ./location_taxonomize.module
location_taxonomize_taxonomize_bulk in ./location_taxonomize.module

File

./location_taxonomize.inc, line 294
Some useful functions for Location taxonomize

Code

function location_taxonomize_term_attach_enabled() {
  $settings = variable_get('location_taxonomize_settings');
  $enabled = $settings['term_attach'];
  return $enabled;
}