You are here

function phone_content_migrate_field_alter in Phone 7

Same name and namespace in other branches
  1. 7.2 phone.content_migrate.inc \phone_content_migrate_field_alter()

Implements hook_content_migrate_field_alter().

Use this to tweak the conversion of field settings from the D6 style to the D7 style for specific situations not handled by basic conversion, as when field types or settings are changed.

File

./phone.module, line 263

Code

function phone_content_migrate_field_alter(&$field_value, $instance_value) {
  module_load_include('inc', 'phone', 'phone.migrate');
  phone_field_alter($field_value, $instance_value);
}