function getlocations_defaults_check in Get Locations 7
Same name and namespace in other branches
- 7.2 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 1651 - 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;
}