You are here

function i18n_variable_get in Internationalization 7

Same name and namespace in other branches
  1. 6 i18n.module \i18n_variable_get()

Get single multilingual variable

1 call to i18n_variable_get()
i18n_user_mail_alter in i18n_user/i18n_user.module
Implements hook_mail_alter().

File

i18n_variable/i18n_variable.module, line 123
Internationalization (i18n) package. Multilingual variables API.

Code

function i18n_variable_get($name, $langcode, $default = NULL) {
  return variable_realm_get('language', $langcode, $name, $default);
}