You are here

function variable_realm_variable_realm_info in Variable 7

Same name and namespace in other branches
  1. 7.2 variable_realm/variable_realm.module \variable_realm_variable_realm_info()

Implements hook_variable_realm_info().

File

variable_realm/variable_realm.variable.inc, line 10
Variable hooks.

Code

function variable_realm_variable_realm_info() {
  $realm['global'] = array(
    'title' => t('Global'),
    'keys' => array(
      'default' => t('All variables'),
    ),
  );
  return $realm;
}