You are here

function getlocations_check in Get Locations 6.2

Same name and namespace in other branches
  1. 6 getlocations.module \getlocations_check()

Function to check if the configuration has been done yet

Return value

Returns true or false

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

File

./getlocations.module, line 769
Displays locations on a map. for Drupal 6 using version 3 googlemaps API

Code

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