You are here

function text_noderef_content_migrate_instance_alter in Text or Nodereference 7

Implements hook_content_migrate_instance_alter().

File

./text_noderef.module, line 293
Text or nodereference field formatter for a text field and autocomplete widget.

Code

function text_noderef_content_migrate_instance_alter(&$instance_value, $field_value) {
  if ($instance_value['widget']['module'] == 'text_noderef') {

    // The formatter name changed.
    foreach ($instance_value['display'] as $context => $settings) {
      if ($settings['type'] == 'text_text_noderef') {
        $instance_value['display'][$context]['type'] = 'text_noderef_default';
      }
    }
  }
}