i18n_sync_node_check

  1. drupal
    1. 7 i18n_sync.module function
Drupal 7 i18n_sync_node_check($node)

Check whether this node is to be synced

2 calls to i18n_sync_node_check()

File

sites/all/modules/i18n/i18n_sync/i18n_sync.module, line 187
Internationalization (i18n) package. Synchronization of translations

Code

function i18n_sync_node_check($node) {
  return translation_supported_type($node->type) && i18n_object_langcode($node) && i18n_sync();
}