Question

I want to get programmatically the mapping which was set by the user on the feeds config page (/admin/structure/feeds/<name>/mapping_en). But how can I do it?

Was it helpful?

Solution

I've fount a working solution:

$f = feeds_importer('your-importer-machine-name');
$m = $f->processor->getMappings(); // This returns the mapping.

It's just needed one day to find it...

Licensed under: CC-BY-SA with attribution
Not affiliated with drupal.stackexchange
scroll top