You are here

function ref_field_sync_field_info_alter in (Entity)Reference Field Synchronization 7.2

Same name and namespace in other branches
  1. 7 ref_field_sync/ref_field_sync.module \ref_field_sync_field_info_alter()

Implements hook_field_info_alter().

File

./ref_field_sync.module, line 20
Hooks and main functions for ref_field module.

Code

function ref_field_sync_field_info_alter(&$info) {

  // Inform Drupal we have a "sync" setting for ref_field.
  if (isset($info['entityreference'])) {
    $info['entityreference']['settings']['sync'] = '';
  }
}