Is there an update on this? It seems all the blockers referenced in the thread have been fixed already, and the remaining issue is a merge conflict on
tamper.schema.yml.
Accept input of a nested array by a Feed and return values based on a given key.
This issue is based on ingesting a JSON endpoint as a source for a Drupal Feed, though it may be useful for other source formats as well. It is intended to handle a field that contains an associative array, or potentially a nested array with key=>value pairs of string or numeric values. For example:
"categories":[{"title":"Category Title 0","id":1234}, {"title":"Category Title 1","id":2345}],
categories = [
0[
'title'=>'Category Title 0',
'id'=>'1234'
],
1[
'title'=>'Category Title 1',
'id'=>'2345'
]
];
This involves creating a new plugin called "ArrayKeyValue" for the Tamper module, which is used by the Feeds Tamper module.
It will accept an associative array (single or multi-level) and recursively find keys that match the given key string from the plugin configuration settings. The values for these keys will be returned by the plugin as a flat indexed array.
Note: It may still be necessary to use other plugins (such as 'explode') to further modify the returned array so that it can be used by Drupal, depending on how the feed mapping is configured.
https://www.drupal.org/project/tamper/issues/3018590 β
https://www.drupal.org/project/feeds/issues/2453123 β
https://www.drupal.org/project/feeds_tamper/issues/2978476
π
Importing Taxonomy Not Provided As String
Needs review
Active
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Is there an update on this? It seems all the blockers referenced in the thread have been fixed already, and the remaining issue is a merge conflict on tamper.schema.yml.