You are here

function variable_example_variable_realm_info in Variable 7

Same name and namespace in other branches
  1. 7.2 variable_example/variable_example.module \variable_example_variable_realm_info()

Implements hook_variable_realm_info()

File

variable_example/variable_example.variable.inc, line 62
Variable API module. Definition for some xample variables

Code

function variable_example_variable_realm_info() {
  $realm['example'] = array(
    'title' => t('Example'),
    'keys' => array(
      'first' => t('First example'),
      'second' => t('Second example'),
    ),
  );
  return $realm;
}