You are here

function i18n_node_variable_info in Internationalization 7

Implements hook_variable_info().

File

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

Code

function i18n_node_variable_info($options = array()) {
  $variables['i18n_hide_translation_links'] = array(
    'type' => 'boolean',
    'title' => t('Hide content translation links', array(), $options),
    'description' => t('Hide the links to translations in content body and teasers. If you choose this option, switching language will only be available from the language switcher block.', array(), $options),
    'default' => 0,
    'group' => 'i18n_node',
  );
  $variables['i18n_node_default_language_none'] = array(
    'title' => t('Default language for content types with Multilingual support disabled.', array(), $options),
    'description' => t('Determines which language will be set for newly created content of types that don\'t have Multilingual support enabled.', array(), $options),
    'type' => 'select',
    'options' => array(
      0 => t('The site\'s default language (Default behaviour).', array(), $options),
      1 => t('Language neutral (Recommended).', array(), $options),
    ),
    'default' => 0,
    'group' => 'i18n_node',
  );
  $variables['i18n_node_options_[node_type]'] = array(
    'type' => 'multiple',
    'title' => t('Extended language options', array(), $options),
    'repeat' => array(
      'type' => 'options',
      'options' => array(
        // Note: this was previously used only to mark new, translatable nodes
        // with the current language of the user. Now, this setting is extended
        // to allow a specific language to be chosen (defaulting to the current
        // language). This was done for backwards compatibility reasons.
        'current' => t('Set custom language as default for new content.', array(), $options),
        'required' => t('Require language (Do not allow Language Neutral).', array(), $options),
        'lock' => t('Lock language (Cannot be changed).', array(), $options),
      ),
    ),
    'group' => 'i18n',
  );

  // This field will only be displayed if "current" is checked above.
  $variables['i18n_node_default_language_for_[node_type]'] = array(
    'type' => 'multiple',
    'title' => t('Custom default language', array(), $options),
    'repeat' => array(
      'type' => 'select',
      'options' => array_merge(array(
        '-- current --' => t('Current language'),
      ), locale_language_list('name')),
      'default' => '-- current --',
    ),
    'group' => 'i18n',
  );
  $variables['i18n_node_extended_[node_type]'] = array(
    'type' => 'multiple',
    'title' => t('Extended language support'),
    'repeat' => array(
      'type' => 'select',
      'options callback' => 'i18n_node_variable_extended_options',
      'default' => I18N_LANGUAGE_ENABLED,
    ),
    'description' => t('If enabled, all defined languages will be allowed for this content type in addition to only enabled ones. This is useful to have more languages for content than for the interface.', array(), $options),
    'group' => 'i18n',
  );
  return $variables;
}