You are here

function variable_realm_rebuild in Variable 7.2

Same name and namespace in other branches
  1. 7 variable_realm/variable_realm.module \variable_realm_rebuild()

Rebuild current variable realm.

7 calls to variable_realm_rebuild()
variable_realm_add in variable_realm/variable_realm.module
Set values for variable realm
variable_realm_boot in variable_realm/variable_realm.module
Implements hook_boot()
variable_realm_init in variable_realm/variable_realm.module
Implements hook_init()
variable_realm_initialize in variable_realm/variable_realm.module
Initialize realm and set key depending on request.
variable_realm_reset in variable_realm/variable_realm.module
Reset realms, deleting currently set ones

... See full list

1 string reference to 'variable_realm_rebuild'
variable_realm_initialize in variable_realm/variable_realm.module
Initialize realm and set key depending on request.

File

variable_realm/variable_realm.module, line 422
Variable API module - Realms

Code

function variable_realm_rebuild() {
  $rebuild_keys =& drupal_static(__FUNCTION__);
  _variable_realm_invoke_all('variable_realm_rebuild');
  $rebuild_keys = variable_realm_current_keys();
  $GLOBALS['conf'] = _variable_realm_build();
}