You are here

function getlocations_blocks_get_var in Get Locations 7.2

Same name and namespace in other branches
  1. 7 modules/getlocations_blocks/getlocations_blocks.module \getlocations_blocks_get_var()

Load the getlocations_blocks variables array

Return value

array

15 calls to getlocations_blocks_get_var()
getlocations_blocks_block_configure in modules/getlocations_blocks/getlocations_blocks.module
Implements hook_block_configure().
getlocations_blocks_city_autocomplete in modules/getlocations_blocks/getlocations_blocks.module
autocomplete for city
getlocations_blocks_city_form in modules/getlocations_blocks/getlocations_blocks.module
getlocations_blocks_city_get in modules/getlocations_blocks/getlocations_blocks.module
getlocations_blocks_country_autocomplete in modules/getlocations_blocks/getlocations_blocks.module
autocomplete for country

... See full list

File

modules/getlocations_blocks/getlocations_blocks.module, line 978
getlocations_blocks.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function getlocations_blocks_get_var() {
  $defaults = getlocations_blocks_defaults();
  $var = variable_get('getlocations_blocks', $defaults);
  $newvar = getlocations_adjust_vars($defaults, $var);
  return $newvar;
}