You are here

function variable_realm_variable_type_info in Variable 7.2

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

Implements hook_variable_type_info().

File

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

Code

function variable_realm_variable_type_info() {
  $type['variable_realm'] = array(
    'title' => t('Variable realm'),
    'type' => 'select',
    'options callback' => 'variable_realm_list',
  );
  return $type;
}