- πΊπΈUnited States smustgrave
Came up as the daily BSI target. Not a migration expert so most likely still valid.
There are some inconsistencies in fields()
method of source plugins. More details:
1) Plugin: d6\ViewMode
Current value:
'display_settings' => $this->t('Serialize data with display settings.'),
And display_settings is not made available at all. The fields made available by ViewMode is an associative array keyed by view mode with two properties, 'entity_type' and 'view_mode'. As in this example:
[
[entity_type] => node
[view_mode] => 4
]
2) Plugin: d7\File
'filepath' => $this->t('File path'),
is not clear enough what the path is really are3) Plugin: d6\Upload
fid
, description
, and list
keys are not available in the top-level array. They exists as keys of upload
sub-arrays.
Fix it.
Write a patch
review
commit
Active
11.0 π₯
migration system
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Came up as the daily BSI target. Not a migration expert so most likely still valid.