You are here

function variable_realm_variable_realm_info in Variable 7.2

Same name and namespace in other branches
  1. 7 variable_realm/variable_realm.variable.inc \variable_realm_variable_realm_info()

Implements hook_variable_realm_info().

File

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

Code

function variable_realm_variable_realm_info() {
  $realm['global'] = array(
    'title' => t('Global'),
    'weight' => 0,
    'controller class' => 'VariableRealmDefaultController',
    'store class' => 'VariableRealmGlobalStore',
    'keys' => array(
      'default' => t('All variables'),
    ),
  );
  return $realm;
}