You are here

function i18n_variable_option_list in Internationalization 7

Options for content languages

1 string reference to 'i18n_variable_option_list'
i18n_variable_info in ./i18n.variable.inc
Implements hook_variable_info().

File

./i18n.variable.inc, line 57
Variable information

Code

function i18n_variable_option_list($variable, $options = array()) {
  return array(
    I18N_LANGUAGE_ENABLED => t('Enabled languages only.', array(), $options),
    I18N_LANGUAGE_EXTENDED => t('All defined languages will be allowed.', array(), $options),
  );
}