You are here

function matrix_content_migrate_field_alter in Matrix field 8.2

Same name and namespace in other branches
  1. 7.2 migrate.inc \matrix_content_migrate_field_alter()

Implementation of hook_content_migrate_field_alter()

File

./migrate.inc, line 12
Hook implementations to assist with the migration from Drupal 6 to 7

Code

function matrix_content_migrate_field_alter(&$field_value, $instance_value) {
  switch ($instance_value['widget']['module']) {
    case 'matrix':
      $field_value['module'] = 'matrix';
      $field_value['type'] = 'matrix_text';
      break;
  }
}