You are here

function variable_realm_current_keys in Variable 7.2

Get current realm values ordered by weights, only realms that are set.

Return value

array Ordered array of name => key pairs.

1 call to variable_realm_current_keys()
variable_realm_rebuild in variable_realm/variable_realm.module
Rebuild current variable realm.

File

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

Code

function variable_realm_current_keys() {
  return array_map('_variable_realm_status', variable_realm_current());
}