You are here

function barcode_content_migrate_field_alter in Barcode 7.2

Implementation of hook_content_migrate_field_alter().

File

./barcode.module, line 298

Code

function barcode_content_migrate_field_alter(&$field_value) {

  // When fields are migrated from D6 to D7, we leave the title column behind
  // This column is a relic from the link module, and doesn't really belong in
  // barcode
  unset($field_value['columns']['title']);
}