i18n_sync.variable.inc 409 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * @file
  4. * Variable information
  5. */
  6. /**
  7. * Implements hook_variable_info().
  8. */
  9. function i18n_sync_variable_info($options = array()) {
  10. $variables['i18n_sync_node_type_[node_type]'] = array(
  11. 'title' => t('Synchronize fields for node type.', array(), $options),
  12. 'type' => 'multiple',
  13. 'repeat' => array(
  14. 'type' => 'array',
  15. ),
  16. 'group' => 'i18n',
  17. );
  18. return $variables;
  19. }