abstract public function MigrateMap::lookupDestinationID in Migrate 7.2
Same name and namespace in other branches
- 6.2 includes/map.inc \MigrateMap::lookupDestinationID()
Given a (possibly multi-field) source key, return the (possibly multi-field) destination key it is mapped to.
Parameters
array $source_id: Array of source key values.
Return value
array Array of destination key values, or NULL on failure.
1 method overrides MigrateMap::lookupDestinationID()
- MigrateSQLMap::lookupDestinationID in plugins/
sources/ sqlmap.inc - Given a (possibly multi-field) source key, return the (possibly multi-field) destination key it is mapped to.
File
- includes/
map.inc, line 189 - Defines the framework for map and message handling.
Class
- MigrateMap
- We implement the Iterator interface to support iteration over the map table for the purpose of rollback.
Code
public abstract function lookupDestinationID(array $source_id);