Migrate Skip Fields
No security coverage
This module allows skipping field by entity, bundle, name, or type.
Features
The module uses the following settings:
// Optional. Drupal core version of source site. Either '6' or '7'. Defaults to '7'.
$settings['migrate_skip_fields_source_version'] = '7';
// Optional. Skip by entity type, bundle, and field name. An asterisk serves as a wildcard to skip all values of one component.
$settings['migrate_skip_fields_by_name'] = [
'entity_type:bundle:field_name',
'entity_type:bundle:*',
'entity_type:*:field_name',
'*:*:field_name',
];
// Optional. Skip by field type. See hook_field_info. Alternatively, see the content_node_field table in Drupal 6 or the field_config table in Drupal 7.
$settings['migrate_skip_fields_by_type'] = [
'field_type_1',
'field_type_2',
];
Depends on
Dependencies of the latest stable release
No dependencies recorded for this project.
Required by
Tracked projects that depend on this one
No tracked projects depend on this one yet.
Activity
Releases
| Version | Type | Core | Notes | Release date | |
|---|---|---|---|---|---|
| 1.0.0-alpha6 | Pre-release | Fixes issue with migrate_skip_fields_source_version setting | Nov 10, 2024 |