You are here

function locale_variable_type_info in Variable 7

Same name and namespace in other branches
  1. 7.2 includes/locale.variable.inc \locale_variable_type_info()

Implements hook_variable_type_info().

File

includes/locale.variable.inc, line 38
Variable API module. Definition for Drupal core variables

Code

function locale_variable_type_info() {

  // Language code
  $type['language'] = array(
    'title' => t('Language'),
    'options callback' => 'locale_variable_options_language',
    'type' => 'select',
  );
  return $type;
}