You are here

function getlocations_defaults_check in Get Locations 7.2

Same name and namespace in other branches
  1. 7 getlocations.module \getlocations_defaults_check()

Function to check if the configuration has been done yet

Return value

Returns true or false

1 call to getlocations_defaults_check()
getlocations_setlocations in ./getlocations.module
Set up javascript settings and map

File

./getlocations.module, line 1312
getlocations.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function getlocations_defaults_check() {
  $check = variable_get('getlocations_default', 'xxx');
  if ($check == 'xxx') {
    return FALSE;
  }
  return TRUE;
}