You are here

function variable_example_variable_realm_info in Variable 7.2

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

Implements hook_variable_realm_info()

File

variable_example/variable_example.module, line 9

Code

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