Projet

Général

Profil

Paste
Télécharger (409 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / i18n / i18n_sync / i18n_sync.variable.inc @ 76df55b7

1
<?php
2
/**
3
 * @file
4
 * Variable information
5
 */
6

    
7
/**
8
 * Implements hook_variable_info().
9
 */
10
function i18n_sync_variable_info($options = array()) {
11
  $variables['i18n_sync_node_type_[node_type]'] = array(
12
    'title' => t('Synchronize fields for node type.', array(), $options),
13
    'type' => 'multiple',
14
    'repeat' => array(
15
      'type' => 'array',
16
    ),
17
    'group' => 'i18n',
18
  );
19
  return $variables;
20
}