You are here

function i18n_node_variable_extended_options in Internationalization 7

Options callback for i18n_node_extended_

1 string reference to 'i18n_node_variable_extended_options'
i18n_node_variable_info in i18n_node/i18n_node.variable.inc
Implements hook_variable_info().

File

i18n_node/i18n_node.variable.inc, line 90
Variable information

Code

function i18n_node_variable_extended_options($variable, $options) {
  return array(
    I18N_LANGUAGE_ENABLED => t('Normal - All enabled languages will be allowed.', array(), $options),
    I18N_LANGUAGE_EXTENDED => t('Extended - All defined languages will be allowed.', array(), $options),
    I18N_LANGUAGE_EXTENDED | I18N_LANGUAGE_HIDDEN => t('Extended, but not displayed - All defined languages will be allowed for input, but not displayed in links.', array(), $options),
  );
}